:root {
  --navy: #111b2c;
  --navy-2: #17253a;
  --navy-3: #20324c;
  --ink: #172033;
  --muted: #697387;
  --paper: #f7f5f0;
  --paper-2: #efede7;
  --white: #ffffff;
  --sage: #587768;
  --sage-soft: #e5ece7;
  --gold: #b9824c;
  --gold-soft: #f2e7db;
  --blue: #367ea8;
  --blue-soft: #e6eff4;
  --line: rgba(17, 27, 44, .12);
  --line-light: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(17, 27, 44, .12);
  --radius: 24px;
  --radius-sm: 15px;
  --shell: 1180px;
  --heading: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section-pad { padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 240, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(17, 27, 44, .06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--heading);
  font-size: 17px;
  letter-spacing: -.5px;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-family: var(--heading); font-size: 18px; color: var(--navy); }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #3c4658;
  font-size: 13px;
  font-weight: 650;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right .22s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-3); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle > span:not(.sr-only) { width: 17px; height: 1px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 27, 44, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 27, 44, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}
.glow-one { width: 540px; height: 540px; top: -280px; right: -140px; background: radial-gradient(circle, rgba(88,119,104,.18), transparent 70%); }
.glow-two { width: 380px; height: 380px; left: -220px; bottom: -180px; background: radial-gradient(circle, rgba(185,130,76,.17), transparent 70%); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #a9c4b4; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); color: var(--navy); line-height: 1.06; }

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.5vw, 78px);
  font-weight: 600;
  letter-spacing: -.048em;
}
h1 em { color: var(--sage); font-style: italic; font-weight: 500; }

.hero-lead {
  max-width: 665px;
  margin-bottom: 32px;
  color: #566174;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 28px rgba(17,27,44,.16); }
.button.primary:hover { background: var(--navy-3); box-shadow: 0 18px 35px rgba(17,27,44,.2); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.55); color: var(--navy); }
.button.secondary:hover { border-color: rgba(17,27,44,.28); background: var(--white); }

.hero-principles { display: flex; flex-wrap: wrap; gap: 18px; color: #687285; font-size: 11px; font-weight: 650; }
.hero-principles span { display: inline-flex; align-items: center; gap: 6px; }
.hero-principles i { color: var(--sage); font-style: normal; font-weight: 900; }

.hero-visual { position: relative; min-height: 570px; }

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 27, 44, .1);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 520px; height: 520px; top: 14px; left: 12px; }
.orbit-two { width: 390px; height: 390px; top: 80px; left: 76px; border-color: rgba(185,130,76,.2); }

.conversation-card {
  position: absolute;
  top: 0;
  right: 34px;
  width: min(360px, 82%);
  overflow: hidden;
  border: 1px solid rgba(17,27,44,.08);
  border-radius: 28px;
  background: #edf0eb;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.conversation-head {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: var(--navy);
  color: var(--white);
}
.avatar, .phone-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8e7df;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 700;
}
.conversation-head strong { display: block; font-size: 12px; }
.conversation-head span { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.62); font-size: 9px; }
.conversation-head span b { width: 6px; height: 6px; border-radius: 50%; background: #6bc295; }
.dots { color: rgba(255,255,255,.65); letter-spacing: 2px; }

.conversation-body {
  min-height: 358px;
  padding: 18px 14px;
  background-color: #e8ebe5;
  background-image: radial-gradient(rgba(17,27,44,.04) .8px, transparent .8px);
  background-size: 12px 12px;
}
.bubble {
  max-width: 82%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 13px;
  box-shadow: 0 2px 5px rgba(17,27,44,.06);
  font-size: 11px;
  line-height: 1.5;
}
.bubble.incoming { border-top-left-radius: 3px; background: var(--white); }
.bubble.outgoing { margin-left: auto; border-top-right-radius: 3px; background: #d9eadf; }
.bubble.small { max-width: 75%; font-size: 10px; }
.quick-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; margin: 2px 0 12px; }
.quick-row span { padding: 6px 9px; border: 1px solid rgba(17,27,44,.13); border-radius: 999px; background: rgba(255,255,255,.72); font-size: 8px; }
.quick-row span.active { border-color: var(--sage); color: var(--sage); background: var(--white); }

.conversation-foot { display: flex; align-items: center; gap: 10px; padding: 11px; background: #f5f5f2; }
.conversation-foot > span { flex: 1; padding: 10px 13px; border-radius: 999px; background: var(--white); color: #959ba5; font-size: 9px; }
.conversation-foot button { width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--sage); color: var(--white); }

.lead-card {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 360px;
  padding: 20px;
  border: 1px solid rgba(17,27,44,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(17,27,44,.16);
  transform: rotate(-2deg);
}
.lead-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.lead-head span { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.lead-head b { padding: 4px 8px; border-radius: 999px; background: #f7dfda; color: #a34639; font-size: 8px; text-transform: uppercase; }
.lead-card > strong { display: block; padding-bottom: 13px; border-bottom: 1px solid var(--line); font-family: var(--heading); font-size: 20px; color: var(--navy); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 13px; }
.lead-grid span { font-size: 10px; font-weight: 700; }
.lead-grid small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 8px; font-weight: 600; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.34); }
.trust-grid { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-grid p { margin: 0; color: var(--navy); font-family: var(--heading); font-size: 17px; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.trust-items span { position: relative; padding-left: 12px; }
.trust-items span::before { content: ""; position: absolute; width: 4px; height: 4px; left: 0; top: 50%; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }

.section-intro { margin-bottom: 58px; }
.section-intro.centered { max-width: 780px; margin-inline: auto; text-align: center; }
.section-intro.centered .eyebrow { justify-content: center; }
.section-intro h2, .included-copy h2, .principles-copy h2, .faq-copy h2, .contact-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(39px, 4.3vw, 59px);
  font-weight: 600;
  letter-spacing: -.035em;
}
.section-intro p, .included-copy > p, .faq-copy > p { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.split-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .68fr); gap: 90px; align-items: end; }
.split-intro p { padding-bottom: 5px; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card {
  position: relative;
  min-height: 320px;
  padding: 28px 25px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.22);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.value-card:hover { z-index: 2; background: var(--white); box-shadow: 0 18px 45px rgba(17,27,44,.08); transform: translateY(-5px); }
.value-number { display: block; margin-bottom: 56px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.value-card h3 { margin: 23px 0 12px; font-size: 25px; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; }

.line-icon { position: relative; width: 38px; height: 38px; color: var(--sage); }
.message-icon::before { content: ""; position: absolute; inset: 3px 2px 8px; border: 1.5px solid currentColor; border-radius: 6px; }
.message-icon::after { content: ""; position: absolute; left: 8px; bottom: 4px; width: 9px; height: 9px; border-left: 1.5px solid currentColor; transform: skew(-28deg); }
.filter-icon::before { content: ""; position: absolute; left: 5px; top: 6px; width: 28px; height: 20px; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: skew(-23deg); }
.filter-icon::after { content: ""; position: absolute; left: 17px; top: 27px; height: 8px; border-left: 1.5px solid currentColor; }
.folder-icon::before { content: ""; position: absolute; inset: 9px 2px 3px; border: 1.5px solid currentColor; border-radius: 4px; }
.folder-icon::after { content: ""; position: absolute; left: 5px; top: 5px; width: 15px; height: 8px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 3px 3px 0 0; }
.handoff-icon::before, .handoff-icon::after { content: ""; position: absolute; border: 1.5px solid currentColor; border-radius: 50%; }
.handoff-icon::before { width: 13px; height: 13px; left: 2px; top: 5px; box-shadow: 19px 0 0 -1px var(--paper), 19px 0 0 0 currentColor; }
.handoff-icon::after { width: 31px; height: 14px; left: 3px; bottom: 2px; border-radius: 18px 18px 4px 4px; border-bottom-color: transparent; }

.dark-section { background: var(--navy); color: var(--white); }
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section .section-intro p { color: rgba(255,255,255,.59); }

.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.industry-card {
  min-height: 585px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.industry-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.055); }
.industry-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 72px; }
.industry-index { color: rgba(255,255,255,.38); font-size: 11px; font-weight: 800; }
.industry-symbol { position: relative; width: 80px; height: 80px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); color: #abc2b5; }
.wheel-symbol::before { content: ""; width: 44px; height: 44px; border: 2px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 9px var(--navy), inset 0 0 0 11px currentColor; }
.wheel-symbol::after { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: currentColor; box-shadow: 0 -14px currentColor, 0 14px currentColor, 14px 0 currentColor, -14px 0 currentColor; }
.leaf-symbol::before { content: ""; width: 42px; height: 51px; border: 2px solid currentColor; border-radius: 42px 4px 42px 4px; transform: rotate(-8deg); }
.leaf-symbol::after { content: ""; position: absolute; width: 2px; height: 48px; background: currentColor; transform: rotate(37deg); }
.industry-label { margin: 0 0 14px; color: #a9c4b4; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.industry-card h3 { max-width: 500px; margin-bottom: 26px; font-size: clamp(31px, 3vw, 43px); font-weight: 500; letter-spacing: -.025em; }
.industry-card .pain-note { margin: -8px 0 22px; color: rgba(255,255,255,.57); font-size: 12px; line-height: 1.65; }
.industry-card ul { margin: 0 0 32px; padding: 0; list-style: none; }
.industry-card li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.68); font-size: 13px; }
.industry-card li::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border: 1px solid #a9c4b4; border-radius: 50%; transform: translateY(-50%); }
.text-link { width: fit-content; margin-top: auto; padding: 0 0 5px; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); background: transparent; color: var(--white); cursor: pointer; font-size: 12px; font-weight: 750; }
.text-link span { margin-left: 8px; transition: margin-left .2s ease; }
.text-link:hover span { margin-left: 14px; }

.demo-section { overflow: hidden; }
.sector-tabs { width: fit-content; display: flex; gap: 5px; margin: 0 auto 36px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); }
.sector-tab { display: flex; align-items: center; gap: 9px; padding: 10px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 750; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.sector-tab.active { background: var(--navy); color: var(--white); box-shadow: 0 8px 20px rgba(17,27,44,.15); }
.mini-wheel { width: 14px; height: 14px; border: 1.5px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 3px transparent; }
.mini-leaf { width: 11px; height: 15px; border: 1.5px solid currentColor; border-radius: 10px 2px 10px 2px; transform: rotate(-8deg); }

.demo-stage {
  max-width: 990px;
  min-height: 650px;
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 50px 60px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-phone { width: 340px; overflow: hidden; border: 8px solid var(--navy); border-radius: 34px; background: #e9ece6; box-shadow: 0 24px 55px rgba(17,27,44,.18); }
.phone-status { height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; background: var(--navy); color: var(--white); font-size: 9px; }
.phone-head { min-height: 62px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 9px; padding: 8px 11px; background: var(--navy); color: var(--white); }
.phone-head button { padding: 0; border: 0; background: transparent; color: var(--white); font-size: 24px; }
.phone-avatar { width: 36px; height: 36px; font-size: 12px; }
.phone-head strong { display: block; font-size: 11px; }
.phone-head span { display: block; color: rgba(255,255,255,.55); font-size: 8px; }
.phone-head i { color: rgba(255,255,255,.68); font-style: normal; }
.demo-chat { min-height: 405px; padding: 15px 11px; background-color: #e9ece6; background-image: radial-gradient(rgba(17,27,44,.04) .8px, transparent .8px); background-size: 11px 11px; }
.demo-message { max-width: 84%; margin-bottom: 9px; padding: 9px 11px; border-radius: 12px; box-shadow: 0 2px 4px rgba(17,27,44,.05); font-size: 10px; line-height: 1.45; opacity: 0; transform: translateY(8px); animation: messageIn .3s ease forwards; }
.demo-message.business { margin-left: auto; border-top-right-radius: 3px; background: #d9eadf; }
.demo-message.customer { border-top-left-radius: 3px; background: var(--white); }
.demo-message .message-time { display: block; margin-top: 3px; color: #8b929d; font-size: 7px; text-align: right; }
.demo-controls { padding: 10px; background: #f5f5f2; }
.play-demo { width: 100%; min-height: 42px; border: 0; border-radius: 999px; background: var(--sage); color: var(--white); cursor: pointer; font-size: 11px; font-weight: 750; transition: background .2s ease, transform .2s ease; }
.play-demo:hover { background: #466455; transform: translateY(-1px); }
.play-demo:disabled { cursor: wait; opacity: .75; }
.play-demo span { margin-right: 6px; font-size: 9px; }

.demo-result { position: relative; padding: 29px; border: 1px solid var(--line); border-radius: 20px; background: #fbfbf9; }
.demo-result::before { content: ""; position: absolute; top: -1px; left: 29px; right: 29px; height: 3px; border-radius: 0 0 4px 4px; background: var(--sage); }
.result-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.mini-label { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.result-top h3 { margin: 5px 0 0; font-size: 27px; }
.priority-badge { flex: none; padding: 5px 9px; border-radius: 999px; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.priority-badge.high { background: #f7dfda; color: #a34639; }
.priority-badge.normal { background: var(--blue-soft); color: #356a87; }
.result-summary { margin: 20px 0; color: #556174; font-size: 13px; }
.result-data { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--line); }
.result-data span { min-height: 70px; padding: 13px; background: var(--white); font-size: 11px; font-weight: 720; }
.result-data small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; font-weight: 650; text-transform: uppercase; letter-spacing: .04em; }
.result-action { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 14px; padding: 13px 15px; border-radius: 12px; background: var(--gold-soft); }
.result-action span { color: #86623e; font-size: 9px; font-weight: 720; text-transform: uppercase; }
.result-action strong { color: #63472d; font-size: 11px; }
.result-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; color: var(--muted); font-size: 8px; }
.result-footer span { display: flex; align-items: center; gap: 6px; }
.result-footer i { width: 6px; height: 6px; border-radius: 50%; background: #5aaa7d; box-shadow: 0 0 0 3px #e5f3eb; }

.soft-section { background: var(--paper-2); }
.included-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(450px, 1fr); align-items: center; gap: 100px; }
.included-copy blockquote { margin: 36px 0 0; padding: 20px 0 20px 24px; border-left: 2px solid var(--gold); color: var(--navy); font-family: var(--heading); font-size: 21px; font-style: italic; line-height: 1.42; }
.included-list { border-top: 1px solid var(--line); }
.included-list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.included-list article > span { color: var(--gold); font-size: 10px; font-weight: 800; }
.included-list h3 { margin: 0 0 6px; font-size: 22px; }
.included-list p { margin: 0; color: var(--muted); font-size: 13px; }

.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-track::before { content: ""; position: absolute; top: 21px; left: 21px; right: 21px; height: 1px; background: var(--line); }
.process-step { position: relative; padding-top: 64px; }
.step-dot { position: absolute; z-index: 1; top: 0; left: 0; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--gold); font-size: 10px; font-weight: 800; }
.process-step > span { color: var(--sage); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.process-step h3 { margin: 8px 0 11px; font-size: 24px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; }

.principles-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr); align-items: center; gap: 100px; }
.principles-copy h2 { color: var(--white); }
.principles-copy p { margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: 17px; }
.light-button { border-color: rgba(255,255,255,.3); color: var(--navy); background: var(--white); }
.principles-panel { border-top: 1px solid var(--line-light); }
.principles-panel > div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 21px 0; border-bottom: 1px solid var(--line-light); }
.principles-panel > div > span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(169,196,180,.4); border-radius: 50%; color: #a9c4b4; font-size: 10px; }
.principles-panel p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; }
.principles-panel strong { display: block; margin-bottom: 3px; color: var(--white); font-family: var(--heading); font-size: 17px; }

.faq-grid { display: grid; grid-template-columns: minmax(0, .65fr) minmax(500px, 1fr); align-items: start; gap: 95px; }
.faq-copy { position: sticky; top: 120px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; background: transparent; cursor: pointer; text-align: left; font-family: var(--heading); font-size: 20px; font-weight: 600; }
.faq-item button i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--body); font-size: 14px; font-style: normal; transition: transform .25s ease, background .25s ease; }
.faq-item.open button i { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 48px 22px 0; }

.contact { position: relative; overflow: hidden; background: var(--sage); color: var(--white); }
.contact::before { content: ""; position: absolute; width: 600px; height: 600px; top: -310px; left: -250px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.contact-shell { position: relative; display: grid; grid-template-columns: minmax(0, .82fr) minmax(480px, 1fr); align-items: center; gap: 100px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { color: rgba(255,255,255,.72); font-size: 17px; }
.contact-points { display: grid; gap: 12px; margin-top: 34px; }
.contact-points span { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.77); font-size: 12px; }
.contact-points i { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 8px; font-style: normal; }

.contact-form { padding: 32px; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 28px 70px rgba(17,27,44,.2); }
.form-row { display: grid; gap: 14px; margin-bottom: 15px; }
.form-row.two-cols { grid-template-columns: 1fr 1fr; }
.contact-form label { color: #404b5d; font-size: 10px; font-weight: 750; }
.contact-form label > span, .consent b { color: #a64b40; }
.contact-form label > small { margin-left: 5px; color: #8b929d; font-weight: 600; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid rgba(17,27,44,.13);
  border-radius: 10px;
  outline: none;
  background: #fbfbfa;
  color: var(--ink);
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(88,119,104,.12); }
.contact-form .invalid { border-color: #b75348 !important; box-shadow: 0 0 0 3px rgba(183,83,72,.1) !important; }
.consent { display: flex; align-items: start; gap: 9px; margin: 4px 0 17px; font-weight: 600 !important; line-height: 1.4; }
.consent input { flex: none; margin: 2px 0 0; accent-color: var(--sage); }
.form-submit { width: 100%; border: 0; background: var(--navy); color: var(--white); }
.form-submit span { margin-left: auto; }
.form-note { margin: 11px 0 0; color: #858d9a; font-size: 9px; text-align: center; }
.form-message { display: none; margin-top: 13px; padding: 11px 12px; border-radius: 9px; font-size: 10px; }
.form-message.success { display: block; background: var(--sage-soft); color: #3c6653; }
.form-message.success a { color: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.form-message.error { display: block; background: #f7e5e2; color: #98483e; }

.site-footer { padding: 66px 0 24px; background: #0c1421; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .85fr .8fr; gap: 55px; padding-bottom: 52px; }
.footer-brand .brand-mark { background: var(--white); color: var(--navy); }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.45); }
.footer-grid > div:first-child > p { max-width: 350px; margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links > span { margin-bottom: 6px; color: rgba(255,255,255,.35); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.68); font-size: 11px; }
.footer-links a:hover { color: var(--white); }
.footer-status > span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; }
.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: #67b88a; box-shadow: 0 0 0 4px rgba(103,184,138,.12); }
.footer-status p { margin: 9px 0 0; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.35); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes messageIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 430px; gap: 36px; }
  .hero-visual { transform: scale(.9); transform-origin: center right; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card { min-height: 285px; }
  .included-grid, .principles-grid, .contact-shell { gap: 55px; }
  .faq-grid { gap: 55px; }
  .demo-stage { grid-template-columns: 350px 1fr; gap: 35px; padding: 42px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 86px 0; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  }
  .site-nav.open { max-height: calc(100svh - 82px); padding-top: 18px; padding-bottom: 24px; opacity: 1; }
  .site-nav > a:not(.nav-cta) { padding: 14px 3px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 18px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(560px, 100%); min-height: 590px; margin: auto; transform: none; }
  .conversation-card { right: 20px; }
  .lead-card { left: 10px; }
  .trust-grid { min-height: 120px; flex-direction: column; justify-content: center; text-align: center; }
  .trust-items { justify-content: center; }
  .split-intro { grid-template-columns: 1fr; gap: 18px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 540px; }
  .demo-stage { grid-template-columns: 1fr; justify-items: center; gap: 45px; }
  .demo-result { width: 100%; }
  .included-grid, .principles-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .included-grid, .principles-grid, .faq-grid, .contact-shell { gap: 55px; }
  .faq-copy { position: static; }
  .process-track { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-status { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section-pad { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .hero { padding-top: 62px; padding-bottom: 72px; }
  h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-principles { gap: 10px 16px; }
  .hero-visual { min-height: 540px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 310px; height: 310px; }
  .conversation-card { width: 290px; right: 0; }
  .conversation-body { min-height: 330px; }
  .lead-card { width: min(315px, 90%); left: 0; bottom: 0; }
  .lead-grid { gap: 9px; }
  .trust-grid { padding: 24px 0; }
  .trust-items { gap: 10px 15px; }
  .section-intro { margin-bottom: 40px; }
  .section-intro h2, .included-copy h2, .principles-copy h2, .faq-copy h2, .contact-copy h2 { font-size: 39px; }
  .section-intro p, .included-copy > p, .faq-copy > p { font-size: 15px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 245px; }
  .value-number { margin-bottom: 35px; }
  .industry-card { min-height: auto; padding: 26px; }
  .industry-top { margin-bottom: 45px; }
  .industry-card h3 { font-size: 34px; }
  .sector-tabs { width: 100%; display: grid; grid-template-columns: 1fr 1fr; border-radius: 18px; }
  .sector-tab { justify-content: center; border-radius: 14px; padding: 10px; font-size: 10px; }
  .demo-stage { min-height: 0; padding: 25px 14px; border-radius: 23px; }
  .demo-phone { width: min(330px, 100%); }
  .demo-result { padding: 22px 17px; }
  .result-top { flex-direction: column; gap: 10px; }
  .result-data { grid-template-columns: 1fr; }
  .result-action { align-items: flex-start; flex-direction: column; gap: 4px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-copy blockquote { font-size: 18px; }
  .process-track { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 0 62px; min-height: 95px; }
  .step-dot { top: 0; }
  .principles-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item button { font-size: 18px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-form { padding: 23px 18px; }
  .form-row.two-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-status { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
