:root {
  --cream: #f5f1e8;
  --cream-deep: #eae3d4;
  --paper: #fffdf8;
  --ink: #18211d;
  --muted: #5f6963;
  --green: #1f4d3f;
  --green-dark: #15382f;
  --green-pale: #dfeae3;
  --orange: #d96632;
  --orange-dark: #b94c22;
  --line: rgba(24, 33, 29, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(29, 44, 37, 0.14);
  --serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { display: block; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 80px 0; }
.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: 1000; padding: 10px 16px; background: var(--paper); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid transparent; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.site-header.scrolled { background: rgba(245, 241, 232, .94); border-color: var(--line); box-shadow: 0 5px 20px rgba(24, 33, 29, .05); backdrop-filter: blur(14px); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-family: var(--serif); font-size: 27px; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--green); color: var(--paper); font-family: var(--sans); font-size: 18px; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--green); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.site-nav > a.current::after { right: 0; }
.nav-signin { padding-left: 28px; border-left: 1px solid var(--line); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 50%; align-content: center; justify-items: center; gap: 4px; }
.menu-button > span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 0 25px; border: 1px solid var(--orange); background: var(--orange); color: white; font-size: 14px; font-weight: 750; letter-spacing: .01em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 20px; gap: 10px; }
.button-light { border-color: var(--paper); background: var(--paper); color: var(--green-dark); }
.button-light:hover { background: var(--cream); border-color: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); padding-block: 6px; font-size: 14px; font-weight: 750; }
.dark-link { border-color: rgba(255,255,255,.3); }

.hero { position: relative; overflow: hidden; padding-top: 145px; background: var(--cream); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; top: -300px; right: -230px; border: 1px solid rgba(31,77,63,.13); border-radius: 50%; box-shadow: 0 0 0 100px rgba(31,77,63,.03), 0 0 0 200px rgba(31,77,63,.02); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-bottom: 68px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--orange); }
.eyebrow.light { color: #ceded7; }
.eyebrow.dark { color: #bcd0c8; }
.hero h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; line-height: .99; }
.hero h1 { max-width: 680px; font-size: clamp(53px, 6vw, 80px); }
.hero h1 em { color: var(--green); font-style: italic; }
.hero-lede { max-width: 625px; margin: 32px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 37px; }
.hero-note { margin: 15px 0 0; color: #7a817d; font-size: 12px; }

.hero-proof { position: relative; background: var(--paper); border: 1px solid rgba(24,33,29,.12); box-shadow: var(--shadow); }
.hero-proof::before { content: ""; position: absolute; inset: 13px -13px -13px 13px; z-index: -1; border: 1px solid rgba(31,77,63,.2); }
.proof-topline { display: flex; align-items: center; justify-content: space-between; padding: 18px 21px; border-bottom: 1px solid var(--line); color: #7a817d; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.live-status { display: flex; align-items: center; gap: 8px; color: var(--green); }
.live-status span { width: 8px; height: 8px; border-radius: 50%; background: #2b936a; box-shadow: 0 0 0 4px rgba(43,147,106,.13); }
.caller-row { display: flex; align-items: center; gap: 14px; padding: 25px 22px; }
.caller-avatar, .dash-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 45px; height: 45px; border-radius: 50%; background: var(--green-pale); color: var(--green); font-size: 13px; font-weight: 800; }
.caller-row strong, .caller-row span { display: block; }
.caller-row strong { font-size: 15px; }
.caller-row span { color: var(--muted); font-size: 12px; }
.call-duration { margin-left: auto; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.call-summary { margin: 0 22px; padding: 19px 20px; background: #f3f5f1; border-left: 3px solid var(--green); }
.call-summary p { margin: 0; color: #46504b; font-size: 13px; line-height: 1.65; }
.call-summary .summary-label { margin-bottom: 7px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.outcome-row { display: flex; align-items: center; gap: 13px; padding: 22px; }
.outcome-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #ddf2e5; color: #1a774f; font-size: 14px; font-weight: 800; }
.outcome-row span, .outcome-row strong { display: block; }
.outcome-row span { color: var(--muted); font-size: 11px; }
.outcome-row strong { font-size: 13px; }
.proof-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; background: var(--green); color: white; font-size: 12px; }
.proof-footer span { color: #bdd0c8; }
.hero-foot { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.hero-foot span { position: relative; padding: 23px 20px 23px 27px; color: var(--muted); font-size: 12px; font-weight: 700; text-align: center; }
.hero-foot span + span { border-left: 1px solid var(--line); }
.hero-foot span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 2px 0; border-radius: 50%; background: var(--orange); }

.problem { background: var(--green-dark); color: white; }
.problem-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 100px; align-items: end; }
.problem h2 { max-width: 590px; font-size: clamp(42px, 5vw, 64px); }
.problem-copy { padding-bottom: 3px; }
.problem-copy p { margin: 0; color: #c5d2cc; font-size: 17px; }
.problem-copy p + p { margin-top: 20px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.compare-card { padding: 23px; border: 1px solid var(--white-line); }
.without-card { background: rgba(255,255,255,.04); }
.with-card { background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.card-kicker { margin: 0 0 17px; color: #9fb2aa; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.with-card .card-kicker { color: var(--green); }
.phone-event { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--white-line); }
.with-card .phone-event { border-color: var(--line); }
.phone-event .event-icon { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; font-weight: 800; line-height: 1; text-align: center; }
.missed .event-icon { background: rgba(217,102,50,.18); color: #ff986b; }
.answered .event-icon { background: #dcefe4; color: #1b7450; }
.phone-event strong, .phone-event span { display: block; }
.phone-event strong { font-size: 15px; }
.phone-event span { color: #9fb2aa; font-size: 11px; }
.with-card .phone-event span { color: var(--muted); }
.event-list { list-style: none; margin: 0; padding: 14px 0 10px; }
.event-list li { display: grid; grid-template-columns: 48px 1fr; padding: 7px 0; color: #c5d2cc; font-size: 13px; }
.with-card .event-list li { color: #4f5b55; }
.event-list span { color: #859d93; font-variant-numeric: tabular-nums; }
.lost-line, .won-line { display: flex; justify-content: space-between; margin: 7px 0 0; padding-top: 15px; border-top: 1px solid var(--white-line); font-size: 12px; }
.with-card .won-line { border-color: var(--line); }
.lost-line span { color: #9fb2aa; }
.lost-line strong { color: #ff986b; }
.won-line span { color: var(--muted); }
.won-line strong { color: var(--green); }

.section-heading.centered { max-width: 690px; margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .trades h2, .pilot h2, .faq h2 { font-size: clamp(42px, 5vw, 62px); }
.section-heading > p:last-child { margin: 21px 0 0; color: var(--muted); font-size: 17px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--paper); }
.step-card { position: relative; min-height: 350px; padding: 30px 25px; }
.step-card + .step-card { border-left: 1px solid var(--line); }
.step-number { position: absolute; top: 24px; right: 24px; color: #a7ada9; font-family: var(--serif); font-size: 16px; font-style: italic; }
.step-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 35px; background: var(--green-pale); color: var(--green); }
.step-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.15; letter-spacing: -.025em; }
.step-card p { margin: 17px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.result-tag { position: absolute; right: 27px; bottom: 29px; left: 27px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--green); font-size: 11px; font-weight: 800; }

.product-section { overflow: hidden; background: var(--green); color: white; }
.product-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: center; }
.product-copy h2 { font-size: clamp(42px, 4.6vw, 62px); }
.product-copy > p:not(.eyebrow) { margin: 27px 0 0; color: #c6d6cf; font-size: 16px; }
.check-list { list-style: none; margin: 31px 0 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; color: #edf4f0; font-size: 13px; }
.check-list li span { color: #f29a6f; font-weight: 800; }
.dashboard { display: grid; grid-template-columns: 145px 1fr; min-width: 660px; background: #faf8f3; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 26px 70px rgba(0,0,0,.22); color: var(--ink); transform: translateX(18px); }
.dash-sidebar { padding: 21px 14px; border-right: 1px solid #e1ddd4; background: #f2eee5; }
.dash-logo { display: flex; align-items: center; gap: 7px; padding: 0 4px 22px; border-bottom: 1px solid #ded9cf; font-family: var(--serif); font-size: 18px; font-weight: 700; }
.dash-logo span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: white; font-family: var(--sans); font-size: 11px; }
.dash-sidebar nav { display: grid; gap: 5px; margin-top: 17px; }
.dash-sidebar nav span { padding: 8px 10px; color: #6c746f; font-size: 9px; font-weight: 650; }
.dash-sidebar nav span.active { background: white; color: var(--green); box-shadow: 0 2px 6px rgba(0,0,0,.05); }
.dash-main { padding: 25px 26px 29px; }
.dash-heading { display: flex; justify-content: space-between; align-items: center; }
.dash-heading span, .dash-heading strong { display: block; }
.dash-heading span { color: #838985; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.dash-heading strong { margin-top: 3px; font-family: var(--serif); font-size: 21px; }
.dash-avatar { width: 30px; height: 30px; font-size: 8px; }
.revenue-card { margin-top: 20px; padding: 19px; border: 1px solid #e1ddd4; background: white; }
.revenue-card span { display: block; color: #838985; font-size: 7px; font-weight: 800; letter-spacing: .09em; }
.revenue-card strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1; }
.revenue-card p { margin: 7px 0 0; color: #707772; font-size: 8px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 9px; }
.dash-stats div { padding: 13px; border: 1px solid #e1ddd4; background: white; }
.dash-stats strong, .dash-stats span { display: block; }
.dash-stats strong { font-family: var(--serif); font-size: 22px; }
.dash-stats span { color: #737a76; font-size: 7px; }
.attention-card { margin-top: 9px; border: 1px solid #e1ddd4; background: white; }
.attention-head { display: flex; justify-content: space-between; padding: 11px 13px; border-bottom: 1px solid #e1ddd4; font-size: 8px; }
.attention-head span { color: #8a8e8c; }
.attention-row { display: grid; grid-template-columns: 8px 1fr auto; gap: 9px; align-items: center; padding: 10px 13px; }
.attention-row + .attention-row { border-top: 1px solid #eeeae3; }
.attention-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.attention-row strong, .attention-row small { display: block; }
.attention-row strong { font-size: 7.5px; }
.attention-row small { color: #8a8e8c; font-size: 6.5px; }
.attention-row b { color: var(--green); font-size: 7px; }

.trades { background: var(--paper); }
.trades-grid { display: grid; grid-template-columns: 1.12fr .88fr; border: 1px solid var(--line); }
.trade-panel { min-height: 560px; padding: 64px 65px; background: #d96531; color: white; }
.trade-label { margin: 0 0 65px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trade-panel h2 { max-width: 610px; }
.trade-panel > p:not(.trade-label) { max-width: 600px; margin: 23px 0 0; color: #fff0e9; }
.trade-panel .text-link { margin-top: 26px; }
.fit-panel { padding: 56px 52px; background: var(--cream); }
.fit-title { margin: 0 0 27px; font-family: var(--serif); font-size: 25px; }
.fit-panel ul { list-style: none; margin: 0; padding: 0; }
.fit-panel li { display: grid; grid-template-columns: 43px 1fr; align-items: center; min-height: 70px; border-top: 1px solid var(--line); }
.fit-panel li:last-child { border-bottom: 1px solid var(--line); }
.fit-panel li span { color: var(--orange); font-family: var(--serif); font-size: 15px; font-style: italic; }
.fit-panel li p { margin: 0; font-size: 13px; font-weight: 650; }

.pilot { background: var(--cream); }
.pilot-card { display: grid; grid-template-columns: 1fr .85fr; gap: 35px 75px; padding: 72px 75px; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 50px rgba(29,44,37,.07); }
.pilot-card > div > p:not(.eyebrow) { max-width: 540px; margin: 24px 0 0; color: var(--muted); }
.pilot-steps { list-style: none; margin: 0; padding: 0; }
.pilot-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.pilot-steps li:first-child { padding-top: 0; }
.pilot-steps li > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 800; }
.pilot-steps strong { font-size: 13px; }
.pilot-steps p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.pilot-card > .button { justify-self: start; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-intro { margin: 22px 0 0; color: var(--muted); }
.faq-intro a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange); font-family: var(--serif); font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 690px; margin: -7px 0 23px; color: var(--muted); font-size: 14px; }

.section-link-row { display: flex; justify-content: center; margin-top: 34px; }
.product-copy .dark-link { margin-top: 26px; color: white; }
.compact-heading { max-width: 760px; margin-bottom: 42px; }
.compact-heading h2 { font-size: clamp(42px, 5vw, 62px); }
.compact-heading > p:last-child { max-width: 680px; margin: 20px 0 0; color: var(--muted); }
.home-links { background: var(--paper); }
.link-card-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.link-card { position: relative; min-height: 210px; padding: 34px; background: var(--cream); transition: background .2s ease, color .2s ease; }
.link-card + .link-card { border-left: 1px solid var(--line); }
.link-card > span { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.link-card h3 { max-width: 420px; margin: 35px 0 0; font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.link-card b { position: absolute; right: 30px; bottom: 25px; color: var(--orange); }
.link-card:hover { background: var(--green); color: white; }
.link-card:hover > span, .link-card:hover b { color: #f4a27d; }

.page-section { padding: 72px 0; }
.page-hero { padding: 126px 0 62px; border-bottom: 1px solid var(--line); background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; }
.page-hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 76px); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
.breadcrumb { display: inline-flex; gap: 9px; margin-bottom: 27px; color: var(--muted); font-size: 11px; font-weight: 700; }
.breadcrumb span { color: var(--orange); }
.page-hero-copy { padding-bottom: 4px; }
.page-hero-copy p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.page-hero-copy p + p { margin-top: 17px; }
.page-hero-copy .text-link { margin-top: 23px; color: var(--green); }
.process-section { background: var(--paper); }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr 230px; gap: 35px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-number { color: var(--orange); font-family: var(--serif); font-size: 16px; font-style: italic; }
.process-kicker { margin: 0 0 3px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: -.025em; line-height: 1.1; }
.process-list div > p:last-child { max-width: 650px; margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.process-list li > strong { justify-self: end; color: var(--green); font-size: 12px; text-align: right; }
.dark-section { background: var(--green-dark); color: white; }
.paper-section { background: var(--paper); }
.orange-section { background: var(--orange); color: white; }
.split-content { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.split-content h2, .setup-grid h2, .fit-page-grid h2, .page-cta h2, .faq-page-grid h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 62px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.section-copy { max-width: 590px; margin: 22px 0 0; color: #c5d2cc; }
.light-split .section-copy, .setup-grid .section-copy { color: var(--muted); }
.handoff-card { border: 1px solid var(--white-line); background: rgba(255,255,255,.04); }
.handoff-card > .card-kicker { padding: 20px 22px 0; }
.handoff-row { display: grid; grid-template-columns: 9px 1fr auto; gap: 13px; align-items: center; padding: 18px 22px; border-top: 1px solid var(--white-line); }
.handoff-row > span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.handoff-row strong, .handoff-row small { display: block; }
.handoff-row strong { font-size: 13px; }
.handoff-row small { margin-top: 2px; color: #9fb2aa; font-size: 10px; }
.handoff-row b { color: #f4a27d; font-size: 11px; }
.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 70px; padding: 48px 54px; border: 1px solid var(--line); background: var(--paper); }
.page-cta > div { max-width: 720px; }
.page-cta h2 { font-size: clamp(38px, 4.2vw, 54px); }
.page-cta p:last-child { max-width: 650px; margin: 18px 0 0; color: var(--muted); }
.page-cta > .button { flex: 0 0 auto; }
.dark-cta { padding: 0; border: 0; background: transparent; }
.dark-cta p:last-child { color: #c5d2cc; }
.cta-section { padding: 56px 0; }
.cta-band { padding: 54px 0; }
.cta-band .eyebrow { margin-bottom: 16px; }
.cta-band .page-cta h2 { max-width: 790px; font-size: clamp(38px, 4vw, 52px); }
.cta-band .page-cta p:last-child { margin-top: 13px; }

.outcome-board-section { background: var(--green); }
.outcome-board { display: grid; grid-template-columns: 1fr 1.15fr; border: 1px solid var(--white-line); background: #fffdf8; color: var(--ink); box-shadow: var(--shadow); }
.board-main { padding: 45px; border-right: 1px solid var(--line); }
.board-label { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.board-main strong { display: block; margin-top: 14px; font-family: var(--serif); font-size: clamp(54px, 7vw, 82px); font-weight: 500; line-height: 1; }
.board-main p { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.board-stats { display: grid; grid-template-columns: 1fr 1fr; }
.board-stats div { display: grid; align-content: center; padding: 28px 34px; }
.board-stats div:nth-child(even) { border-left: 1px solid var(--line); }
.board-stats div:nth-child(n+3) { border-top: 1px solid var(--line); }
.board-stats strong, .board-stats span { display: block; }
.board-stats strong { font-family: var(--serif); font-size: 34px; font-weight: 500; }
.board-stats span { color: var(--muted); font-size: 11px; }
.evidence-section { background: var(--cream); }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--paper); }
.evidence-grid article { position: relative; min-height: 300px; padding: 32px; }
.evidence-grid article + article { border-left: 1px solid var(--line); }
.evidence-level { color: var(--orange); font-family: var(--serif); font-size: 15px; font-style: italic; }
.evidence-grid h3 { margin: 35px 0 0; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.evidence-grid p { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.evidence-grid strong { position: absolute; right: 32px; bottom: 27px; left: 32px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--green); font-size: 12px; }
.attention-list { border: 1px solid var(--line); }
.attention-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 18px 20px; }
.attention-list > div + div { border-top: 1px solid var(--line); }
.attention-list p { margin: 0; }
.attention-list strong, .attention-list small { display: block; }
.attention-list strong { font-size: 13px; }
.attention-list small { color: var(--muted); font-size: 10px; }
.ok-mark, .warn-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 12px; font-weight: 800; }
.ok-mark { background: #ddf2e5; color: #1a774f; }
.warn-mark { background: #fff0e9; color: var(--orange-dark); }

.fit-section { background: var(--paper); }
.fit-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.fit-page-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.fit-page-list li { display: grid; grid-template-columns: 54px 1fr; align-items: center; min-height: 70px; border-bottom: 1px solid var(--line); }
.fit-page-list span { color: var(--orange); font-family: var(--serif); font-size: 15px; font-style: italic; }
.fit-page-list p { margin: 0; font-size: 13px; font-weight: 700; }
.light-heading h2 { color: white; }
.light-heading > p:last-child { color: #fff0e9; }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.32); }
.scenario-grid article { min-height: 245px; padding: 30px; }
.scenario-grid article:nth-child(even) { border-left: 1px solid rgba(255,255,255,.32); }
.scenario-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.32); }
.scenario-grid span { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.scenario-grid h3 { margin: 39px 0 0; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.12; }
.scenario-grid p { max-width: 430px; margin: 14px 0 0; color: #fff0e9; font-size: 13px; }
.setup-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: start; }
.large-steps { margin: 0; }

.questions-hero { background: var(--paper); }
.faq-page { background: var(--cream); }
.faq-page-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-page-grid h2 { font-size: clamp(38px, 4.5vw, 54px); }
.faq-section { padding: 42px 0; }
.faq-section .accordion summary { padding: 17px 0; }
.faq-section .accordion details p { margin-bottom: 17px; }

.closing { padding: 70px 0; background: var(--green-dark); color: white; text-align: center; }
.closing-inner { display: grid; justify-items: center; }
.closing h2 { max-width: 860px; font-size: clamp(46px, 6vw, 72px); }
.closing p:not(.eyebrow) { margin: 22px 0 31px; color: #c7d5cf; font-size: 17px; }
.site-footer { background: #101d18; color: white; }
.footer-top { display: flex; justify-content: space-between; padding: 44px 0 38px; }
.footer-brand { color: white; }
.footer-brand .brand-mark { background: white; color: var(--green-dark); }
.footer-top > div:first-child p { margin: 14px 0 0; color: #8fa49a; font-size: 13px; }
.footer-links { display: flex; gap: 100px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; min-width: 90px; }
.footer-links strong { margin-bottom: 4px; color: #aebfb7; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #d9e3de; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #80958b; font-size: 10px; }

@media (max-width: 980px) {
  .site-nav { gap: 18px; }
  .site-nav > a:nth-child(-n+4) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 760px; }
  .hero-proof { max-width: 620px; }
  .problem-grid, .product-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .step-card:nth-child(4) { border-top: 1px solid var(--line); }
  .dashboard { min-width: 0; transform: none; }
  .product-copy { max-width: 720px; }
  .trades-grid { grid-template-columns: 1fr; }
  .trade-panel { min-height: auto; }
  .page-hero-grid, .split-content, .fit-page-grid, .setup-grid, .faq-page-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-hero-copy { max-width: 760px; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 25px; }
  .process-list li > strong { grid-column: 2; justify-self: start; text-align: left; }
  .page-cta { align-items: flex-start; flex-direction: column; gap: 30px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }
  .section { padding: 66px 0; }
  .header-inner { height: 70px; }
  .menu-button { display: grid; }
  .site-nav { display: none; position: absolute; top: 70px; left: 15px; right: 15px; align-items: stretch; gap: 0; padding: 15px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav > a:nth-child(-n+4) { display: block; }
  .site-nav > a { padding: 12px; }
  .site-nav > a::after { display: none; }
  .nav-signin { border: 0; }
  .site-nav .button { margin-top: 8px; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 52px; padding-bottom: 75px; }
  .hero h1 { font-size: clamp(47px, 14vw, 64px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .hero-note { text-align: center; }
  .hero-proof::before { display: none; }
  .hero-foot { grid-template-columns: repeat(2, 1fr); }
  .hero-foot span { padding: 17px 5px; }
  .hero-foot span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .hero-foot span:nth-child(4) { border-top: 1px solid var(--line); }
  .problem-grid { gap: 28px; }
  .compare-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 330px; }
  .step-card + .step-card { border-top: 1px solid var(--line); border-left: 0; }
  .dashboard { grid-template-columns: 1fr; overflow: hidden; }
  .dash-sidebar { display: none; }
  .dash-main { padding: 17px; }
  .product-grid { gap: 45px; }
  .trade-panel, .fit-panel { padding: 42px 28px; }
  .trade-label { margin-bottom: 40px; }
  .pilot-card { grid-template-columns: 1fr; gap: 38px; padding: 44px 28px; }
  .pilot-card > .button { width: 100%; }
  .faq-grid { gap: 40px; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-links { gap: 70px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .page-section { padding: 58px 0; }
  .page-hero { padding: 108px 0 48px; }
  .page-hero-grid { gap: 30px; }
  .page-hero h1 { font-size: clamp(46px, 13vw, 60px); }
  .page-hero-copy p { font-size: 16px; }
  .breadcrumb { margin-bottom: 25px; }
  .link-card-grid, .outcome-board, .evidence-grid, .scenario-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 185px; }
  .link-card + .link-card, .evidence-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .process-list li { grid-template-columns: 36px 1fr; gap: 15px; padding: 25px 0; }
  .process-list h3 { font-size: 25px; }
  .process-list div > p:last-child { font-size: 12px; }
  .board-main { padding: 30px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .board-stats div { padding: 22px 20px; }
  .evidence-grid article { min-height: 270px; padding: 27px; }
  .scenario-grid article { min-height: 220px; padding: 27px; }
  .scenario-grid article:nth-child(even) { border-left: 0; }
  .scenario-grid article + article { border-top: 1px solid rgba(255,255,255,.32); }
  .page-cta { padding: 36px 27px; }
  .dark-cta { padding: 0; }
  .cta-section, .cta-band { padding: 48px 0; }
  .page-cta > .button { width: 100%; }
}

@media (max-width: 430px) {
  .caller-row, .proof-topline, .outcome-row { padding-inline: 16px; }
  .call-summary { margin-inline: 16px; }
  .proof-footer { align-items: flex-start; flex-direction: column; gap: 3px; padding-inline: 16px; }
  .dash-stats { grid-template-columns: 1fr; }
  .attention-row b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
