:root {
  --ink: #19142a;
  --ink-soft: #39334c;
  --muted: #6d677d;
  --faint: #9993a6;
  --line: #e8e3ef;
  --line-strong: #d8d0e3;
  --surface: #ffffff;
  --surface-soft: #f5f6f8;
  --page: #f8f9fb;
  --purple: #6d4aff;
  --purple-dark: #4e2dcc;
  --purple-soft: #eeeafe;
  --orange: #e45609;
  --orange-dark: #bd4202;
  --orange-soft: #fff0e7;
  --green: #159b62;
  --green-soft: #e7f8f0;
  --gold: #d99216;
  --gold-soft: #fff5da;
  --blue: #2f6fe4;
  --blue-soft: #eaf1ff;
  --rose: #c23d72;
  --shadow-sm: 0 2px 10px rgba(31, 22, 48, .06);
  --shadow-md: 0 16px 44px rgba(31, 22, 48, .09);
  --shadow-lg: 0 28px 80px rgba(37, 23, 65, .14);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--page); font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(109, 74, 255, .25); outline-offset: 3px; }
img { max-width: 100%; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 200; padding: 12px 18px; border-radius: 10px; color: #fff; background: var(--purple-dark); transition: top .2s; }
.skip-link:focus { top: 14px; }

/* Preview: dark header bar matching the main DFS site's default dark theme,
   light body kept as-is below it (the light form/report pages tested
   better on their own merits -- see task-log 2026-09-10). Ray asked to see
   this before deciding whether to keep it. */
.site-header { position: relative; z-index: 20; background: #08080B; backdrop-filter: blur(18px); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(1180px, calc(100% - 40px)); min-height: 72px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 184px; height: auto; }
.header-assurance { display: flex; align-items: center; gap: 10px; color: #B4B4BD; font-size: 12px; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(21,155,98,.11); }
.assurance-divider { width: 1px; height: 15px; background: rgba(255,255,255,.16); }

.hero { position: relative; overflow: hidden; min-height: 680px; padding: 84px 0 90px; background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%); }
.hero-pattern, .final-pattern { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(109,74,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(109,74,255,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -180px; top: -220px; background: radial-gradient(circle, rgba(109,74,255,.05), rgba(109,74,255,0) 70%); }
.hero-glow-two { width: 420px; height: 420px; left: -210px; bottom: -240px; background: radial-gradient(circle, rgba(228,86,9,.035), rgba(228,86,9,0) 70%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(470px, .95fr); align-items: center; gap: clamp(50px, 7vw, 92px); width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero-copy { max-width: 650px; }
.eyebrow, .section-label, .stage-kicker, .question-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-dark); font-size: 11px; font-weight: 700; letter-spacing: .085em; text-transform: uppercase; }
.eyebrow { padding: 7px 11px; border-radius: 999px; background: rgba(238,234,254,.75); }
.eyebrow span { font-size: 13px; }
.hero h1 { max-width: 680px; margin: 22px 0 20px; font-size: 51px; line-height: .99; letter-spacing: -.052em; font-weight: 600; text-wrap: balance; }
.hero-title-accent { color: var(--purple); }
.title-accent-orange { color: var(--orange); }
.title-accent-green { color: var(--green); }
.title-accent-blue { color: var(--blue); }
.hero-lede { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.68; }
.hero-actions { display: grid; justify-items: start; gap: 13px; margin-top: 30px; }
.primary-button, .secondary-button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 14px 24px; border-radius: 14px; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s, background .22s; }
.primary-button { overflow: hidden; border: 1px solid var(--orange); color: #fff; background: linear-gradient(135deg, var(--orange), #f16a1f); box-shadow: 0 12px 28px rgba(228,86,9,.22); }
.primary-button::before { content: ''; position: absolute; inset: 0; transform: translateX(-120%); background: linear-gradient(100deg, transparent, rgba(255,255,255,.24), transparent); transition: transform .65s var(--ease); }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(228,86,9,.28); }
.primary-button:hover::before { transform: translateX(120%); }
.primary-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.secondary-button { border: 1px solid var(--line-strong); color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.secondary-button:hover { transform: translateY(-2px); border-color: rgba(109,74,255,.45); box-shadow: var(--shadow-md); }
.primary-button[disabled], .secondary-button[disabled] { opacity: .48; pointer-events: none; box-shadow: none; }
.microcopy { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0; color: var(--faint); font-size: 11px; font-weight: 600; }
.microcopy i { width: 3px; height: 3px; border-radius: 50%; background: #c6c0cf; }
.hero-proof { display: grid; gap: 10px; margin-top: 27px; color: var(--ink-soft); font-size: 12px; }
.hero-proof > div { display: flex; align-items: center; gap: 10px; }
.proof-icon { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 700; }

.hero-visual { position: relative; width: 100%; max-width: 520px; justify-self: end; }
.visual-shell { position: relative; padding: 24px; border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-lg); }
.visual-shell::before { content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(145deg, rgba(109,74,255,.2), transparent 40%, rgba(228,86,9,.12)); }
.visual-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 18px; }
.company-context { display: flex; align-items: center; gap: 11px; }
.context-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: var(--purple-dark); background: var(--purple-soft); font-size: 17px; }
.company-context > span:last-child { display: grid; gap: 2px; }
.company-context small, .visual-priority small, .float-card small { color: var(--faint); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.company-context strong { font-size: 14px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: var(--green); background: var(--green-soft); font-size: 9px; font-weight: 700; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s ease-in-out infinite; }
.visual-score-row { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(145px, .85fr); align-items: center; gap: 12px; padding: 22px 0 18px; }
.hero-chart-wrap { position: relative; }
.hero-radar { display: block; width: 100%; max-width: 260px; margin: auto; overflow: visible; }
.radar-grid polygon, .radar-grid line { fill: none; stroke: #e4deec; stroke-width: 1; }
.radar-shape { fill: url(#heroRadarFill); stroke: var(--purple); stroke-width: 2; stroke-linejoin: round; transform-origin: center; animation: radarBreathe 6s ease-in-out infinite; }
.radar-points circle { fill: #fff; stroke: var(--purple); stroke-width: 2; }
.chart-score { position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; transform: translate(-50%, -50%); }
.chart-score strong { font-size: 27px; line-height: 1; letter-spacing: -.04em; }
.chart-score span { max-width: 68px; margin-top: 4px; color: var(--faint); font-size: 7px; line-height: 1.15; text-align: center; text-transform: uppercase; }
.signal-list { display: grid; gap: 4px; }
.signal-list > div { display: grid; grid-template-columns: 7px 1fr auto; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 9px; }
.signal-list > div.is-priority { background: var(--orange-soft); }
.signal-list small { color: var(--muted); font-size: 9px; }
.signal-list strong { font-size: 10px; }
.signal-dot { width: 6px; height: 6px; border-radius: 50%; }
.demand { color: #6d4aff; background-color: #6d4aff; }
.visibility { color: #8b5cf6; background-color: #8b5cf6; }
.trust { color: #d99216; background-color: #d99216; }
.website { color: #2f6fe4; background-color: #2f6fe4; }
.response { color: #e45609; background-color: #e45609; }
.followup { color: #159b62; background-color: #159b62; }
.readiness { color: #c23d72; background-color: #c23d72; }
.visual-priority { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 15px; border-radius: 15px; background: #fff8f3; }
.priority-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--orange); background: var(--orange-soft); }
.priority-mark svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.visual-priority > div { display: grid; gap: 3px; }
.visual-priority strong { font-size: 12px; }
.visual-priority p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.visual-flow { display: flex; align-items: center; gap: 10px; margin-top: 15px; color: var(--faint); font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.flow-line { position: relative; flex: 1; height: 1px; background: var(--line-strong); }
.flow-line b { position: absolute; top: -2px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--purple); animation: flowDot 3s linear infinite; }
.flow-line b:nth-child(2) { animation-delay: 1s; }.flow-line b:nth-child(3) { animation-delay: 2s; }
.float-card { position: absolute; display: flex; align-items: center; gap: 9px; min-width: 150px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); animation: floatCard 5s ease-in-out infinite; }
.float-card > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--purple-dark); background: var(--purple-soft); font-size: 14px; }
.float-card > div { display: grid; gap: 2px; }.float-card strong { font-size: 11px; }
.float-location { left: -55px; top: 95px; }.float-plan { right: -38px; bottom: 42px; animation-delay: -2.2s; }.float-plan > span { color: var(--green); background: var(--green-soft); }

.driver-strip { position: relative; z-index: 3; background: #fff; box-shadow: var(--shadow-sm); }
.driver-strip-inner { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 17px 0; }
.driver-strip-inner > div { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 700; }
.driver-icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; color: #fff; font-size: 11px; }

.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; }
.testimonial-section { padding: 48px 0; background: var(--page); }
.testimonial-card { display: grid; grid-template-columns: 220px 1fr; gap: 0; max-width: 880px; margin: 0 auto; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.testimonial-photo { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.testimonial-body { padding: 28px 32px; }
.testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { margin: 0 0 16px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.testimonial-attribution { display: flex; align-items: baseline; gap: 8px; color: var(--ink); font-size: 13px; }
.testimonial-attribution span { color: var(--faint); font-size: 12px; }

/* Compact Google-review strip: real short reviews, no photo required, for
   pages where the full photo testimonial-card above is too heavy (a fast
   cold-traffic landing page, or a narrow interstitial card). */
.review-strip { display: grid; gap: 10px; }
.review-chip { padding: 14px 16px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); text-align: left; }
.review-chip-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.review-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 700; }
.review-chip-name { display: grid; gap: 1px; }
.review-chip-name strong { font-size: 12px; line-height: 1.3; }
.review-chip-name span { color: var(--faint); font-size: 10px; }
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin: 0 0 5px; }
.review-chip p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }

.section-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.value-section, .steps-section, .faq-section { padding: clamp(82px, 9vw, 118px) 0; background: var(--page); }
.section-heading { max-width: 730px; margin: 0 auto 46px; text-align: center; }
.section-heading.compact { margin-bottom: 36px; }
.section-heading h2, .personalization-copy h2, .final-cta h2 { margin: 14px 0; font-size: clamp(33px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -.042em; font-weight: 600; text-wrap: balance; }
.section-heading p, .personalization-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { position: relative; padding: 30px; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card.featured { box-shadow: 0 15px 38px rgba(109,74,255,.14); }
.card-number { position: absolute; right: 24px; top: 23px; color: #d8d2df; font-size: 11px; font-weight: 700; }
.line-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; }
.line-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.line-icon.purple { color: var(--purple); background: var(--purple-soft); }.line-icon.orange { color: var(--orange); background: var(--orange-soft); }.line-icon.green { color: var(--green); background: var(--green-soft); }
.value-card h3 { margin: 23px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.value-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.personalization-section { padding: clamp(82px, 9vw, 118px) 0; background: #fff; }
.personalization-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: clamp(50px, 8vw, 95px); }
.personalization-copy h2 { max-width: 570px; }
.check-list { display: grid; gap: 11px; margin: 26px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: 13px; }
.check-list span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 700; }
.trade-board { padding: 25px; border-radius: 24px; background: linear-gradient(145deg, #f8f9fb, #fff); box-shadow: var(--shadow-md); }
.trade-board-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.trade-board-head strong { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; color: var(--purple-dark); background: var(--purple-soft); }
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.trade-grid > div { display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 10px; border-radius: 12px; color: var(--ink-soft); background: var(--surface-soft); font-size: 11px; font-weight: 700; }
.trade-grid span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; color: var(--purple-dark); background: var(--purple-soft); }
.trade-board-note { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding: 12px 14px; border-radius: 12px; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 700; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(21,155,98,.1); animation: pulse 2s ease-in-out infinite; }

.steps-section { background: var(--page); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 25px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.step-badge { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: var(--purple); font-size: 12px; font-weight: 700; }
.steps-grid li:nth-child(2) .step-badge { background: var(--orange); }.steps-grid li:nth-child(3) .step-badge { background: var(--green); }
.steps-grid h3 { margin: 2px 0 8px; font-size: 16px; }.steps-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.faq-section { background: #fff; }
.faq-shell { max-width: 880px; }
.faq-list details { margin-bottom: 6px; padding: 0 22px; border-radius: 14px; background: var(--surface-soft); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; color: var(--ink); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: var(--purple); background: var(--purple-soft); transition: transform .22s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 42px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; padding: 92px 20px; color: #fff; background: linear-gradient(135deg, #2e1653 0%, #4b258b 55%, #6735b9 100%); text-align: center; }
.final-pattern { opacity: .26; mask-image: linear-gradient(to top, #000, transparent); }
.final-cta-inner { position: relative; z-index: 2; max-width: 780px; margin: auto; }
.final-cta h2 { margin: 14px auto; }
.final-cta p { max-width: 630px; margin: 0 auto 26px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }
.light-label { color: #e6dcff; }.light-button { color: var(--purple-dark); border-color: #fff; background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.2); }
.final-cta small { display: block; margin-top: 14px; color: rgba(255,255,255,.55); font-size: 10px; }

.site-footer { padding: 28px 0; background: #fff; }
.footer-inner { display: flex; align-items: center; gap: 22px; width: min(1180px, calc(100% - 40px)); margin: auto; color: var(--faint); font-size: 10px; }
.footer-inner img { width: 150px; height: auto; }.footer-inner p { margin: 0; }.footer-links { display: flex; gap: 15px; margin-left: auto; }.footer-links a { color: var(--muted); text-decoration: none; }.noscript-message { padding: 20px; color: #fff; background: #8c2d2d; text-align: center; }

/* Assessment */
body.assessment-open { overflow: hidden; }

body.assessment-open .site-header,
body.assessment-open #landingView,
body.assessment-open .site-footer { display: none; }
.assessment-view { position: fixed; inset: 0; z-index: 100; overflow-y: auto; overscroll-behavior: contain; background: var(--page); }
.assessment-backdrop { position: fixed; inset: 0; pointer-events: none; }
.assessment-shell { position: relative; z-index: 2; min-height: 100%; }
.assessment-topbar { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 44px minmax(220px, 520px) 160px; align-items: center; justify-content: center; gap: 24px; min-height: 72px; padding: 10px 24px; background: #08080B; backdrop-filter: blur(18px); box-shadow: var(--shadow-sm); }
.icon-button { display: grid; place-items: center; width: 40px; height: 40px; border: none; border-radius: 12px; color: #B4B4BD; background: rgba(255,255,255,.08); cursor: pointer; box-shadow: none; }
.icon-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.progress-wrap { width: 100%; }
.stage-stepper { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; margin: 0; padding: 0; list-style: none; }
.stage-stepper li { position: relative; display: flex; flex: 1; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 700; text-align: center; }
.stage-stepper li::after { content: ''; position: absolute; top: 5px; left: calc(50% + 12px); width: calc(100% - 12px); height: 2px; background: rgba(255,255,255,.14); z-index: 0; }
.stage-stepper li:last-child::after { display: none; }
.stage-stepper li.done::after { background: var(--purple); }
.stage-dot { position: relative; z-index: 1; width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); transition: background .25s var(--ease); }
.stage-stepper li.current .stage-dot { background: var(--purple); box-shadow: 0 0 0 4px rgba(109,74,255,.28); }
.stage-stepper li.done .stage-dot { background: var(--purple); }
.stage-stepper li.current .stage-name { color: #fff; }
.stage-stepper li.done .stage-name { color: rgba(255,255,255,.55); }
.stage-sublabel { margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; text-align: center; }
.save-state { display: flex; align-items: center; justify-self: end; gap: 8px; color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700; }.save-state > span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.assessment-stage { width: min(1080px, calc(100% - 32px)); margin: 0 auto; padding: clamp(34px, 6vw, 70px) 0 80px; }
.assessment-stage:focus, .assessment-stage:focus-visible { outline: none; }

.question-card, .report-page, .gate-card { border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); animation: stageIn .35s var(--ease) both; }
.trade-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.trade-button, .choice-tile { position: relative; display: flex; align-items: center; gap: 11px; min-height: 58px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink-soft); background: var(--surface); font-size: 12px; font-weight: 700; text-align: left; cursor: pointer; transition: background .18s, transform .18s, box-shadow .18s, border-color .18s; }
.trade-button:hover, .choice-tile:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: 0 10px 24px rgba(25,20,42,.08); }
.trade-button.selected, .choice-tile.selected { color: var(--purple-dark); background: var(--purple-soft); border-color: transparent; box-shadow: 0 0 0 2px var(--purple), 0 10px 24px rgba(109,74,255,.18); }
.trade-symbol { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; color: var(--purple-dark); background: linear-gradient(155deg, var(--purple-soft), #fff); box-shadow: inset 0 0 0 1px rgba(109,74,255,.14); transition: color .18s, background .18s, transform .18s; }
.trade-symbol svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trade-button:hover .trade-symbol { transform: scale(1.06); }
.trade-button.selected .trade-symbol { color: #fff; background: linear-gradient(155deg, var(--purple), var(--purple-dark)); box-shadow: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.field-group { display: grid; gap: 7px; }.field-group label { color: var(--ink-soft); font-size: 12px; font-weight: 700; }.field-group input, .field-group select, .field-group textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: none; border-radius: 12px; color: var(--ink); background: var(--surface-soft); font-size: 16px; transition: background .18s, box-shadow .18s; }.field-group textarea { min-height: 100px; resize: vertical; }.field-group input:focus, .field-group select:focus, .field-group textarea:focus { background: #fff; box-shadow: 0 0 0 3px rgba(109,74,255,.14); outline: none; }.field-hint { color: var(--faint); font-size: 11px; line-height: 1.5; }
.other-trade-field { margin-top: 14px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }.choice-tile { display: grid; grid-template-columns: 1fr auto; }.choice-tile strong { font-size: 12px; }.choice-tile small { display: block; margin-top: 2px; color: var(--faint); font-size: 10px; font-weight: 500; }.choice-check { width: 17px; height: 17px; border: 2px solid var(--line-strong); border-radius: 50%; }.choice-tile.selected .choice-check { border-color: var(--purple); box-shadow: inset 0 0 0 4px #fff; background: var(--purple); }
.form-error { min-height: 18px; margin: 0; color: #b52e2e; font-size: 12px; font-weight: 600; }

.question-card { max-width: 820px; margin: 0 auto; padding: clamp(26px, 5vw, 50px); }
.question-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }.question-category { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }.category-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: #fff; background: currentColor; }.category-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.question-number { color: var(--faint); font-size: 11px; font-weight: 700; }
.question-card h2 { margin: 0; font-size: 22px; line-height: 1.14; letter-spacing: -.038em; font-weight: 600; text-wrap: balance; }.question-help { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }.industry-chip { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; padding: 5px 8px; border-radius: 999px; color: var(--purple-dark); background: var(--purple-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.answer-grid { display: grid; gap: 8px; margin-top: 28px; }.answer-button { display: grid; grid-template-columns: 1fr 21px; align-items: center; gap: 12px; min-height: 58px; padding: 9px 13px; border: none; border-radius: 13px; color: var(--ink-soft); background: var(--surface-soft); text-align: left; cursor: pointer; transition: transform .18s, background .18s, box-shadow .18s; }.answer-button:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }.answer-button.selected { background: var(--purple-soft); box-shadow: 0 0 0 3px rgba(109,74,255,.16); }.answer-score { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--purple-dark); background: var(--purple-soft); font-size: 12px; font-weight: 700; }.answer-button.selected .answer-score { color: #fff; background: var(--purple); }.answer-copy { display: grid; gap: 2px; }.answer-copy strong { font-size: 13px; }.answer-copy span { color: var(--faint); font-size: 10px; }.answer-radio { width: 19px; height: 19px; border: 2px solid var(--line-strong); border-radius: 50%; }.answer-button.selected .answer-radio { border-color: var(--purple); box-shadow: inset 0 0 0 4px #fff; background: var(--purple); }
.answer-button.compact { grid-template-columns: 1fr 21px; }
.answer-checkbox { width: 19px; height: 19px; border: 2px solid var(--line-strong); border-radius: 5px; }.answer-button.selected .answer-checkbox { border-color: var(--purple); background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m4 8 2.5 2.5L12 5'/%3E%3C/svg%3E") center/11px no-repeat; }
.result-reveal-card .gate-score { margin-bottom: 14px; }
.immediate-action-card { display: flex; align-items: flex-start; gap: 13px; margin: 22px 0 26px; padding: 18px; border-radius: 15px; text-align: left; background: var(--surface-soft); }
.immediate-action-card .line-icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; }
.immediate-action-card small { display: block; color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.immediate-action-card strong { display: block; margin: 3px 0 4px; font-size: 14px; }
.immediate-action-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.report-notice.capacity-warning { border-left-color: #b52e2e; color: #7a1f1f; background: #fdecec; }
.question-navigation { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 25px; }.back-button { display: inline-flex; align-items: center; gap: 7px; padding: 8px; border: 0; color: var(--muted); background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }.back-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }.question-navigation small { color: var(--faint); font-size: 11px; }

/* Gate */
.gate-card { max-width: 620px; margin: 0 auto; padding: clamp(30px, 5vw, 50px); text-align: center; }
.gate-score { display: grid; place-items: center; margin: 0 auto 20px; }.gate-score span { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }.gate-score strong { font-size: 52px; line-height: 1.15; letter-spacing: -.03em; color: var(--purple-dark); }.gate-score small { color: var(--faint); font-size: 11px; }
.gate-card h2 { margin: 0 0 10px; font-size: clamp(24px, 3.6vw, 32px); line-height: 1.15; letter-spacing: -.03em; font-weight: 600; }
.gate-card > p { margin: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.gate-form { display: grid; gap: 10px; text-align: left; }.gate-form .primary-button { width: 100%; min-height: 50px; margin-top: 4px; }
.consent-line { display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 0; color: var(--faint); font-size: 11px; line-height: 1.55; text-align: left; }.consent-line input { appearance: none; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; border-radius: 5px; background: var(--surface-soft); cursor: pointer; transition: background .15s, box-shadow .15s; }.consent-line input:checked { background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m4 8 2.5 2.5L12 5'/%3E%3C/svg%3E") center/11px no-repeat; }.consent-line input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(109,74,255,.25); }.trade-filter-field { margin-bottom: 14px; }.trade-filter-field input { width: 100%; }.trade-button[hidden] { display: none; }.setup-market-fields { margin-top: 18px; animation: setupFieldsIn .28s ease both; }@keyframes setupFieldsIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }@media (prefers-reduced-motion: reduce) { .setup-market-fields { animation: none; } }.consent-legal { margin: 6px 0 0 25px; color: var(--faint); font-size: 11px; line-height: 1.55; text-align: left; }.consent-legal a { color: var(--purple); text-decoration: underline; }
.review-spinner { width: 34px; height: 34px; margin: 8px auto 0; border: 3px solid var(--purple-soft); border-top-color: var(--purple); border-radius: 50%; animation: reviewSpin .8s linear infinite; }
@keyframes reviewSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .review-spinner { animation-duration: 2.4s; } }

/* Report */
.report-page { overflow: hidden; }
.report-hero { position: relative; overflow: hidden; padding: clamp(32px, 5vw, 54px); color: #fff; background: linear-gradient(135deg, #2d1750, #4e2d8b 58%, #7040c5); }.report-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 25%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 36px 36px, 36px 36px; pointer-events: none; }.report-hero > * { position: relative; z-index: 2; }.report-kicker { color: #e3d8fb; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.report-hero h2 { max-width: 760px; margin: 10px 0 12px; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.045em; font-weight: 600; }.report-hero > p { max-width: 720px; margin: 0; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.65; }.report-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }.report-pill { display: grid; gap: 2px; min-width: 140px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; background: rgba(255,255,255,.09); }.report-pill span { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }.report-pill strong { font-size: 13px; }
.report-body { padding: clamp(24px, 5vw, 50px); }.report-overview { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 16px; }.report-card { padding: 22px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }.report-card h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -.025em; }.report-card > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.score-visual-card { display: grid; place-items: center; min-height: 300px; background: linear-gradient(145deg, #fbfaff, #fff); }.report-radar-wrap { position: relative; width: min(100%, 300px); }.report-radar { display: block; width: 100%; overflow: visible; }.report-radar .grid polygon, .report-radar .grid line { fill: none; stroke: #e2dce9; stroke-width: 1; }.report-radar .data { fill: rgba(109,74,255,.18); stroke: var(--purple); stroke-width: 2.2; stroke-linejoin: round; }.report-radar .point { fill: #fff; stroke: var(--purple); stroke-width: 2; }.report-radar text { fill: var(--muted); font-size: 10px; font-weight: 700; }.report-score-center { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; transform: translate(-50%,-50%); }.report-score-center strong { font-size: 32px; line-height: 1; }.report-score-center span { margin-top: 3px; color: var(--faint); font-size: 9px; text-transform: uppercase; }
.priority-spotlight { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff8f3, #fff); }.priority-spotlight::before { content: ''; position: absolute; width: 180px; height: 180px; right: -80px; top: -90px; border-radius: 50%; background: rgba(228,86,9,.07); }.priority-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }.priority-heading .line-icon { width: 42px; height: 42px; border-radius: 12px; }.priority-heading span { display: grid; gap: 2px; }.priority-heading small { color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }.priority-heading strong { font-size: 16px; }.priority-spotlight > p { font-size: 16px; }.evidence-list { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }.evidence-list li { position: relative; padding: 10px 12px 10px 35px; border-radius: 11px; color: var(--ink-soft); background: rgba(255,255,255,.8); font-size: 11px; line-height: 1.5; }.evidence-list li::before { content: '✓'; position: absolute; left: 11px; top: 10px; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 700; }
.category-breakdown { display: grid; gap: 9px; margin-top: 18px; }.category-score-row { display: grid; grid-template-columns: 130px 1fr 34px; align-items: center; gap: 10px; }.category-score-row span { color: var(--muted); font-size: 11px; font-weight: 700; }.category-score-row .bar { overflow: hidden; height: 7px; border-radius: 999px; background: #ede9f1; }.category-score-row .bar i { display: block; height: 100%; border-radius: inherit; background: var(--bar-color); transition: width .7s var(--ease); }.category-score-row strong { font-size: 11px; text-align: right; }
.report-section { margin-top: 34px; }.report-section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }.report-section-number { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; color: var(--purple-dark); background: var(--purple-soft); font-size: 11px; font-weight: 700; }.report-section h3 { margin: 0; font-size: 20px; letter-spacing: -.03em; }.report-section > p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.action-card { position: relative; min-height: 148px; padding: 18px; border-radius: 15px; background: #f8f9fb; box-shadow: var(--shadow-sm); }.action-card span { color: var(--purple); font-size: 11px; font-weight: 700; }.action-card h4 { margin: 12px 0 7px; font-size: 13px; }.action-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

.market-card { overflow: hidden; border-radius: 19px; background: #fff; box-shadow: var(--shadow-sm); }.market-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #f7f3ff, #fff); }.market-head h4 { margin: 2px 0 0; font-size: 16px; }.market-head p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }.market-status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 999px; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 700; }.market-status.preview { color: #8a6311; background: var(--gold-soft); }
.market-table { width: 100%; border-collapse: collapse; }.market-table th, .market-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 11px; text-align: left; }.market-table th { color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }.market-table td strong { font-size: 12px; }.market-table tr:last-child td { border-bottom: 0; }.market-table a { color: var(--purple-dark); text-decoration: none; }.stars { color: var(--gold); letter-spacing: 1px; }.market-note { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--muted); background: #f8f9fb; font-size: 10px; line-height: 1.6; }.market-focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 16px; border-top: 1px solid var(--line); }.market-focus-grid div { padding: 10px; border-radius: 10px; color: var(--ink-soft); background: var(--surface-soft); font-size: 10px; line-height: 1.45; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }.roadmap-card { position: relative; min-height: 185px; padding: 20px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }.roadmap-phase { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: var(--purple-dark); background: var(--purple-soft); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }.roadmap-card:nth-child(2) .roadmap-phase { color: var(--orange-dark); background: var(--orange-soft); }.roadmap-card:nth-child(3) .roadmap-phase { color: var(--green); background: var(--green-soft); }.roadmap-card h4 { margin: 14px 0 8px; font-size: 14px; }.roadmap-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }.solution-card { padding: 15px; border-radius: 13px; background: var(--surface-soft); }.solution-card strong { display: block; margin-bottom: 5px; font-size: 12px; }.solution-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }.solution-card.recommended { border: 1px solid #ded4ff; background: #f6f2ff; }.solution-card.recommended strong { color: var(--purple-dark); }
.report-notice { margin-top: 28px; padding: 16px 17px; border-left: 4px solid var(--gold); border-radius: 8px 13px 13px 8px; color: #755816; background: var(--gold-soft); font-size: 16px; line-height: 1.65; }
.optional-actions { display: grid; margin-top: 30px; }.booking-card { position: relative; overflow: hidden; display: block; max-width: 100%; margin: 0; padding: 32px 34px; border-radius: 22px; }.booking-main { position: relative; z-index: 1; display: flex; align-items: center; gap: 30px; }.booking-card h3 { margin: 0 0 11px; max-width: 38ch; font-size: 24px; line-height: 1.22; letter-spacing: -.028em; font-weight: 600; text-wrap: balance; }.booking-card p { margin: 0; max-width: 62ch; color: rgba(255,255,255,.72); font-size: 13.5px; line-height: 1.65; }.booking-card > p { margin: 0 0 16px; font-size: 16px; line-height: 1.6; }.booking-card { color: #fff; background: linear-gradient(140deg, #140f24 0%, #241640 52%, #33205c 100%); box-shadow: 0 22px 60px rgba(20,15,36,.28); }
.booking-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(520px 220px at 82% 18%, rgba(228,86,9,.20), transparent 68%), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: auto, 40px 40px, 40px 40px; mask-image: linear-gradient(to bottom right, rgba(0,0,0,.9), transparent 78%); }
.booking-copy { position: relative; z-index: 1; flex: 1; min-width: 0; }
.booking-kicker { display: block; margin-bottom: 9px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.booking-card .primary-button { position: relative; z-index: 1; flex: 0 0 auto; }.booking-card > p { color: rgba(255,255,255,.7); }.booking-card .primary-button { color: #fff; border-color: var(--orange); background: linear-gradient(135deg, var(--orange), #f16a1f); box-shadow: 0 14px 30px rgba(228,86,9,.32); }
.report-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }.report-actions button { min-height: 46px; padding: 11px 16px; }
.honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }

.reveal-on-load { animation: fadeUp .65s var(--ease) both; }.delay-one { animation-delay: .12s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stageIn { from { opacity: 0; transform: translateY(12px) scale(.992); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes flowDot { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(100% - 5px); opacity: 0; } }
@keyframes radarBreathe { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.97); opacity: .82; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .42; } }
@keyframes mapPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: .68; } }

@media (max-width: 1050px) {
  .hero-inner { grid-template-columns: 1fr 440px; gap: 38px; }.float-location { left: -25px; }.float-plan { right: -18px; }
  .personalization-grid { grid-template-columns: .9fr 1.1fr; gap: 45px; }
}
@media (max-width: 900px) {
  .hero { padding-top: 70px; }.hero-inner { grid-template-columns: 1fr; }.hero-copy { max-width: 720px; text-align: center; margin: auto; }.hero h1 { margin-left: auto; margin-right: auto; }.hero-lede { margin: auto; }.hero-actions { justify-items: center; }.hero-proof { width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }.hero-visual { justify-self: center; margin-top: 30px; }.driver-strip-inner { grid-template-columns: repeat(3,1fr); row-gap: 12px; }.value-grid, .steps-grid { grid-template-columns: 1fr; }.value-card { min-height: 220px; }.personalization-grid { grid-template-columns: 1fr; }.personalization-copy { max-width: 670px; }.trade-board { max-width: 680px; }.report-overview { grid-template-columns: 1fr; }.optional-actions { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-inner { width: min(100% - 28px, 1180px); min-height: 64px; }.brand img { width: 150px; }.header-assurance span:not(.status-dot):not(:last-child), .assurance-divider { display: none; }.header-assurance { font-size: 9px; }
  .hero { min-height: 0; padding: 58px 0 68px; }.hero-inner, .section-shell { width: min(100% - 28px, 1180px); }.hero h1 { font-size: 42px; line-height: 1.01; }.hero-lede { font-size: 16px; }.primary-button, .secondary-button { width: 100%; }.hero-actions { display: grid; width: 100%; }.microcopy { justify-content: center; }.hero-proof { font-size: 10px; }.hero-visual { width: calc(100% - 8px); }.visual-shell { padding: 17px; border-radius: 21px; }.visual-score-row { grid-template-columns: 1fr; }.hero-chart-wrap { max-width: 260px; margin: auto; }.signal-list { grid-template-columns: 1fr 1fr; }.float-card { display: none; }.driver-strip-inner { width: min(100% - 20px, 1180px); grid-template-columns: repeat(2,1fr); }.driver-strip-inner > div { justify-content: flex-start; font-size: 9px; }
  .testimonial-section { padding: 32px 0; }.testimonial-card { grid-template-columns: 1fr; }.testimonial-photo { height: 200px; min-height: 0; }.testimonial-body { padding: 22px 20px; }
  .value-section, .personalization-section, .steps-section, .faq-section { padding: 70px 0; }.section-heading h2, .personalization-copy h2, .final-cta h2 { font-size: 35px; }.section-heading p, .personalization-copy > p { font-size: 14px; }.value-card { min-height: 0; }.trade-grid { grid-template-columns: repeat(2,1fr); }.steps-grid li { grid-template-columns: 38px 1fr; padding: 20px; }.step-badge { width: 38px; height: 38px; }.final-cta { padding: 75px 14px; }
  .footer-inner { width: min(100% - 28px, 1180px); display: grid; gap: 9px; text-align: center; justify-items: center; }.footer-links { margin: 5px 0; }
  .assessment-topbar { grid-template-columns: 40px 1fr; gap: 12px; min-height: 66px; padding: 9px 14px; }.save-state { display: none; }.assessment-stage { width: min(100% - 20px, 1080px); padding-top: 24px; }.stage-name { display: none; }.trade-options { grid-template-columns: repeat(2,1fr); }.trade-button { padding: 8px; }.field-row, .choice-grid { grid-template-columns: 1fr; }.question-card { padding: 23px 16px; border-radius: 21px; }.question-top { margin-bottom: 23px; }.question-card h2 { font-size: 22px; }.answer-button { grid-template-columns: 1fr 19px; padding: 8px 10px; }.answer-copy span { display: none; }
  .report-page { border-radius: 21px; }.report-hero, .report-body { padding: 25px 17px; }.report-hero h2 { font-size: 34px; }.report-pills { display: grid; grid-template-columns: 1fr 1fr; }.report-pill { min-width: 0; }.action-grid, .roadmap-grid, .solution-grid { grid-template-columns: 1fr; }.market-head { display: grid; }.market-table { display: block; overflow-x: auto; white-space: nowrap; }.market-focus-grid { grid-template-columns: 1fr 1fr; }.category-score-row { grid-template-columns: 95px 1fr 28px; }.report-actions { display: grid; }.report-actions button { width: 100%; }.gate-card { padding: 26px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}

@media print {
  body { background: #fff; }.site-header, .site-footer, #landingView, .assessment-topbar, .report-actions, .optional-actions, .assessment-view { position: static; overflow: visible; background: #fff; }.assessment-stage { width: 100%; padding: 0; }.report-page { border: 0; box-shadow: none; }.report-section, .report-card, .market-card { break-inside: avoid; }.report-hero { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

.leak-card .leak-grid { display: grid; gap: 14px; margin-top: 18px; }
.leak-field label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.leak-field select { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--surface-soft); color: var(--ink); font-size: 14px; }
.leak-field select:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(109,74,255,.25); }
.leak-callout { margin: 16px 0 4px; padding: 15px 16px; border-radius: 14px; background: var(--orange-soft); border: 1px solid rgba(228,86,9,.22); text-align: left; }
.leak-callout small { display: block; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.leak-callout strong { display: block; margin: 5px 0 6px; font-size: 27px; letter-spacing: -.03em; color: var(--ink); }
.leak-callout p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.leak-callout.leak-thin { background: var(--purple-soft); border-color: rgba(109,74,255,.2); }
.leak-callout.leak-thin small { color: var(--purple-dark); }
.leak-callout.leak-thin strong { font-size: 19px; }


.report-cta-card { display: flex; align-items: center; gap: 22px; margin: 22px 0 4px; padding: 18px 22px; border: 1px solid rgba(228,86,9,.22); border-radius: 16px; background: var(--orange-soft); }
.report-cta-copy { flex: 1; min-width: 0; }
.report-cta-label { display: block; margin-bottom: 5px; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.report-cta-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; }
.report-cta-card p strong { color: var(--ink); }.report-cta-tagline { margin-top: 7px !important; color: var(--orange-dark) !important; font-weight: 700; }
.report-cta-card .report-cta { flex: 0 0 auto; }
@media (max-width: 760px) {
  .report-cta-card { flex-direction: column; align-items: stretch; gap: 15px; padding: 17px 18px; }
  .report-cta-card .report-cta { width: 100%; }
}
@media print { .report-cta-card { display: none; } }

@media (max-width: 760px) {
  .booking-card { padding: 26px 22px; }.booking-main { flex-direction: column; align-items: stretch; gap: 20px; }
  .booking-card h3 { font-size: 21px; }
  .booking-card .primary-button { width: 100%; }
}
@media print { .optional-actions { display: none; } }

.reviews-container { min-height: 220px; margin-top: 30px; overflow: hidden; border-radius: 19px; background: #fff; box-shadow: var(--shadow-sm); }
.reviews-placeholder { display: flex; align-items: center; justify-content: center; height: 220px; color: var(--faint); font-size: 12px; }
@media print { .reviews-container { display: none !important; } }

.reviews-section { padding: 44px 0; background: var(--page); }
.reviews-section .section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
@media (max-width: 760px) {
  .reviews-section { padding: 28px 0; }
  /* The widget stacks all eight reviews vertically on a phone and renders about
     2450px tall, roughly three screens before the visitor reaches anything else.
     Capped with a fade so it reads as "there is more" rather than a hard crop.
     Proof is the job here, not browsing, so losing the Load More control is fine. */
  .reviews-section .reviews-container { position: relative; max-height: 700px; overflow: hidden; }
  .reviews-section .reviews-container::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 96px; pointer-events: none; background: linear-gradient(rgba(255,255,255,0), #fff 82%); }
}
