/* Clarity Court public site — intentionally dependency-free. */
:root {
  --brand: #066fd1; --brand-deep: #0559a8; --brand-dark: #063b68;
  --navy: #071c2f; --aqua: #4ed7c4; --aqua-deep: #087a6b;
  --ink: #132333; --ink-soft: #3b4d5d; --muted: #667584;
  --line: #dce5eb; --line-strong: #cbd9e2; --bg: #fff; --tint: #f4f8fb;
  --blue-tint: #e9f3fc; --mint-tint: #e7f7f2; --amber-tint: #fff4d8;
  --danger-tint: #fdecef; --mark-notch: #066fd1;
  --radius-sm: 10px; --radius: 18px; --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(3, 34, 61, .14); --wrap: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.65 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
a { color: var(--brand); }
svg { display: block; }
section[id] { scroll-margin-top: 76px; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; color: var(--ink); background: #fff; border-radius: 8px; font-weight: 700; text-decoration: none; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
a:focus-visible { outline: 3px solid var(--aqua); outline-offset: 4px; }

/* Header */
.site-header, body:not(.landing) > header { position: relative; z-index: 20; background: var(--brand); color: #fff; }
.landing .site-header { position: absolute; inset: 0 0 auto; background: transparent; border-bottom: 1px solid rgba(255,255,255,.12); }
.header-inner, body:not(.landing) > header .wrap { min-height: 76px; display: flex; align-items: center; gap: 14px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; flex: none; }
.mark { width: 36px; height: 36px; flex: none; }
.wordmark { font-weight: 750; font-size: 19px; letter-spacing: -.35px; }
.primary-nav, body:not(.landing) > header nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.primary-nav a, body:not(.landing) > header nav a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 160ms ease; }
.primary-nav a:hover, body:not(.landing) > header nav a:hover { color: #fff; }
.header-cta { margin-left: 16px; padding: 9px 16px; color: #fff; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 160ms ease, border-color 160ms ease; }
.header-cta:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }
.header-status { cursor: default; }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(circle at 76% 32%, rgba(39,151,231,.22), transparent 29%), linear-gradient(135deg, #075eae 0%, #064d8b 44%, #072c4e 100%);
  padding: 154px 0 0;
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; }
.hero::before { width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.08); top: 64px; right: -168px; }
.hero::after { width: 360px; height: 360px; border: 1px solid rgba(78,215,196,.13); top: 154px; right: -78px; }
.hero-glow { position: absolute; width: 230px; height: 230px; left: -90px; bottom: 180px; background: rgba(78,215,196,.12); filter: blur(10px); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 56px; align-items: center; min-height: 625px; }
.hero-copy { align-self: start; padding: 52px 0 86px; }
.eyebrow { margin: 0 0 14px; color: var(--brand-deep); font-size: 12px; line-height: 1.3; font-weight: 800; letter-spacing: 1.25px; text-transform: uppercase; }
.eyebrow-light { color: #aeeae2; }
.eyebrow-aqua { color: var(--aqua); }
.hero h1 { margin: 0; max-width: 13.5ch; font-size: clamp(43px, 5.25vw, 66px); line-height: 1.01; letter-spacing: -2.5px; font-weight: 760; text-wrap: balance; }
.hero-lede { margin: 26px 0 0; max-width: 58ch; color: rgba(255,255,255,.79); font-size: clamp(17px, 1.7vw, 19px); line-height: 1.65; }
.launch-status { display: flex; align-items: center; gap: 7px; margin: 20px 0 0; color: rgba(255,255,255,.74); font-size: 13px; }
.launch-status span { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 5px rgba(78,215,196,.12); }
.launch-status strong { color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border-radius: 999px; font-weight: 750; font-size: 15px; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-light { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 30px rgba(0,0,0,.13); }
.button-light:hover { box-shadow: 0 15px 38px rgba(0,0,0,.18); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.32); }
.button-ghost:hover, .button-outline:hover { background: rgba(255,255,255,.08); }
.button-outline { color: #fff; border: 1px solid rgba(255,255,255,.3); margin-top: 14px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin: 26px 0 0; padding: 0; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; fill: none; stroke: var(--aqua); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }

/* Phone preview */
.product-stage { position: relative; align-self: end; height: 612px; }
.phone { position: absolute; z-index: 2; left: 50%; bottom: 10px; width: 294px; height: 588px; transform: translateX(-50%); border: 8px solid #0b2133; border-radius: 42px; overflow: hidden; background: #f5f7f9; box-shadow: 0 38px 75px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.16); }
.phone-top { position: absolute; z-index: 4; inset: 0 0 auto; height: 21px; display: flex; justify-content: center; }
.phone-top span { width: 88px; height: 17px; background: #0b2133; border-radius: 0 0 13px 13px; }
.app-bar { background: var(--brand); padding: 29px 16px 14px; color: #fff; display: flex; align-items: center; justify-content: space-between; }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; }
.mini-brand svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 9; stroke-linejoin: round; }
.mini-brand svg path:last-child { fill: #fff; stroke: none; }
.add-pill { background: #fff; color: var(--brand); font-weight: 800; font-size: 9px; padding: 5px 9px; border-radius: 999px; }
.app-body { padding: 14px; }
.app-date { margin: 0; color: #7a8692; font-size: 7px; font-weight: 800; letter-spacing: .5px; }
.app-greeting { margin: 1px 0 10px; color: var(--ink); font-size: 17px; font-weight: 800; }
.hearing-card { padding: 14px; color: #fff; border-radius: 14px; background: var(--brand); box-shadow: 0 8px 18px rgba(6,111,209,.2); }
.hearing-meta { display: flex; justify-content: space-between; align-items: center; font-size: 7px; letter-spacing: .5px; }
.hearing-meta span { font-weight: 800; opacity: .74; }
.hearing-meta strong { font-size: 9px; letter-spacing: 0; }
.hearing-card h3 { margin: 8px 0 1px; font-size: 14px; line-height: 1.25; }
.hearing-card p { margin: 1px 0; font-size: 8px; color: rgba(255,255,255,.78); }
.hearing-rule { height: 1px; background: rgba(255,255,255,.2); margin: 10px 0 8px; }
.progress-copy { display: flex; justify-content: space-between; font-size: 7px; color: rgba(255,255,255,.84); }
.progress-copy strong { color: #fff; }
.progress { height: 4px; margin-top: 5px; border-radius: 999px; background: rgba(255,255,255,.22); overflow: hidden; }
.progress span { display: block; width: 60%; height: 100%; border-radius: inherit; background: #fff; }
.late-card { margin-top: 9px; min-height: 55px; display: flex; align-items: center; gap: 9px; padding: 10px; background: var(--danger-tint); border: 1px solid #f6ccd3; border-radius: 12px; color: #8f2d39; }
.late-symbol { width: 21px; height: 21px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #f6ccd3; font-size: 11px; font-weight: 900; }
.late-card div { display: flex; flex-direction: column; line-height: 1.35; }
.late-card strong { font-size: 9px; }
.late-card small { font-size: 7px; color: #a04e59; }
.chevron { margin-left: auto; font-size: 18px; opacity: .65; }
.today-card { margin-top: 9px; background: #fff; border: 1px solid #e1e7ec; border-radius: 12px; padding: 11px; box-shadow: 0 4px 14px rgba(20,40,60,.05); }
.today-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 7px; border-bottom: 1px solid #ecf0f3; font-size: 7px; color: #7a8692; letter-spacing: .45px; }
.today-heading span { letter-spacing: 0; color: var(--brand); }
.task-row { display: flex; align-items: center; gap: 7px; padding: 8px 0; border-bottom: 1px solid #eff2f5; font-size: 8px; color: #334656; }
.check { width: 13px; height: 13px; border: 1px solid #bac5cd; border-radius: 50%; }
.week-row { display: flex; justify-content: space-between; padding-top: 8px; font-size: 7px; color: #7a8692; letter-spacing: .45px; }
.week-row strong { color: var(--brand); letter-spacing: 0; }
.phone-home { position: absolute; left: 50%; bottom: 6px; width: 92px; height: 4px; transform: translateX(-50%); background: #b8c0c6; border-radius: 999px; }
.stage-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 208px; padding: 11px 13px; background: rgba(255,255,255,.97); color: var(--ink); border: 1px solid rgba(255,255,255,.65); border-radius: 14px; box-shadow: 0 18px 40px rgba(2,25,44,.25); }
.stage-note strong, .stage-note small { display: block; line-height: 1.3; }
.stage-note strong { font-size: 11px; }
.stage-note small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.stage-note-one { left: -4px; top: 145px; }
.stage-note-two { right: -4px; bottom: 95px; }
.stage-note > svg { width: 31px; height: 31px; padding: 6px; flex: none; color: var(--aqua-deep); background: var(--mint-tint); border-radius: 9px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stage-note-icon { width: 31px; height: 31px; flex: none; display: grid; place-items: center; border-radius: 9px; font-size: 13px; font-weight: 900; }
.stage-note-blue { color: var(--brand-deep); background: var(--blue-tint); }
.assurance-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.assurance-strip div { padding: 24px 30px 26px; border-right: 1px solid rgba(255,255,255,.13); }
.assurance-strip div:first-child { padding-left: 0; }
.assurance-strip div:last-child { border-right: 0; }
.assurance-strip strong, .assurance-strip span { display: block; }
.assurance-strip strong { font-size: 13px; }
.assurance-strip span { margin-top: 2px; color: rgba(255,255,255,.58); font-size: 12px; }

/* Main content */
.clarity-section, .feature-section, .honesty-section, .pricing-section { padding: 108px 0; }
.section-heading h2, .feature-intro h2, .privacy-copy h2, .honesty-layout h2, .closing-card h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4.3vw, 50px); line-height: 1.08; letter-spacing: -1.7px; text-wrap: balance; }
.split-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.question-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.question-card { position: relative; min-height: 355px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.question-card::after { content: ""; position: absolute; width: 145px; height: 145px; right: -75px; bottom: -75px; border: 26px solid var(--tint); border-radius: 50%; }
.question-primary { color: #fff; border-color: transparent; background: var(--brand); box-shadow: 0 18px 45px rgba(6,111,209,.18); }
.question-primary::after { border-color: rgba(255,255,255,.08); }
.question-number { position: absolute; top: 24px; right: 26px; color: var(--line-strong); font-size: 13px; font-weight: 800; }
.question-primary .question-number { color: rgba(255,255,255,.5); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; color: var(--brand-deep); background: var(--blue-tint); border-radius: 14px; }
.question-primary .icon-box { color: #fff; background: rgba(255,255,255,.14); }
.icon-box svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-mint { color: var(--aqua-deep); background: var(--mint-tint); }
.icon-amber { color: #9e6a00; background: var(--amber-tint); }
.question-card h3 { margin: 46px 0 10px; max-width: 13ch; font-size: 24px; line-height: 1.18; letter-spacing: -.55px; }
.question-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.question-primary p { color: rgba(255,255,255,.76); }
.card-detail { position: absolute; z-index: 2; left: 30px; bottom: 27px; color: var(--brand-deep); font-size: 12px; font-weight: 800; }
.question-primary .card-detail { color: #b9ece6; }

.feature-section { background: var(--tint); }
.feature-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.feature-intro { position: sticky; top: 38px; }
.feature-intro h2 { font-size: clamp(34px, 4vw, 46px); }
.feature-intro > p:not(.eyebrow) { margin: 22px 0; max-width: 43ch; color: var(--muted); font-size: 16px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--brand-deep); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-list article { min-height: 235px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.feature-list svg { width: 28px; height: 28px; color: var(--brand); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-list h3 { margin: 0 0 7px; font-size: 18px; letter-spacing: -.3px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Privacy and boundaries */
.privacy-section { position: relative; overflow: hidden; padding: 112px 0; color: #fff; background: var(--navy); }
.privacy-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.privacy-copy h2 { max-width: 10.5ch; color: #fff; }
.privacy-copy > p:not(.eyebrow) { margin: 24px 0; max-width: 51ch; color: rgba(255,255,255,.68); font-size: 16px; }
.privacy-points { padding: 10px 0; }
.privacy-points article { display: flex; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.privacy-points article:last-child { border-bottom: 0; }
.privacy-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border: 1px solid rgba(78,215,196,.2); border-radius: 14px; background: rgba(78,215,196,.09); color: var(--aqua); }
.privacy-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.privacy-points h3 { margin: 0 0 5px; font-size: 17px; }
.privacy-points p { margin: 0; color: rgba(255,255,255,.61); font-size: 14px; }
.privacy-orbit { position: absolute; border: 1px solid rgba(78,215,196,.09); border-radius: 50%; }
.privacy-orbit-one { width: 540px; height: 540px; top: -260px; right: -120px; }
.privacy-orbit-two { width: 760px; height: 760px; top: -370px; right: -230px; }
.honesty-section { border-bottom: 1px solid var(--line); }
.honesty-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.honesty-layout h2 { max-width: 10ch; }
.honesty-copy { border-left: 3px solid var(--brand); padding-left: 32px; }
.honesty-copy p { margin: 0 0 19px; color: var(--muted); }
.honesty-copy p:last-child { margin-bottom: 0; }
.honesty-copy strong { color: var(--ink); }

/* Pricing and closing */
.pricing-section { background: #fff; }
.pricing-heading { max-width: 700px; margin: 0 auto 46px; text-align: center; }
.pricing-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.plans { display: grid; grid-template-columns: 1fr 1.08fr; gap: 18px; max-width: 940px; margin: 0 auto; }
.plan { position: relative; padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: #fff; }
.plan-featured { border: 2px solid var(--brand); box-shadow: 0 20px 50px rgba(6,111,209,.12); }
.popular { position: absolute; right: 28px; top: -13px; padding: 5px 11px; color: #fff; background: var(--brand); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .8px; }
.plan-top { display: flex; justify-content: space-between; gap: 16px; align-items: start; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.plan-name { margin: 0; font-size: 22px; font-weight: 800; }
.plan-for { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.price { margin: 0; white-space: nowrap; font-size: 35px; line-height: 1; font-weight: 800; letter-spacing: -1px; }
.currency { vertical-align: top; font-size: 17px; line-height: 1.2; }
.period { margin-left: 4px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0; }
.plan ul { list-style: none; margin: 25px 0 0; padding: 0; display: grid; gap: 13px; color: var(--ink-soft); font-size: 14px; }
.plan li { display: flex; align-items: start; gap: 10px; }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; padding: 3px; color: var(--aqua-deep); background: var(--mint-tint); border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pricing-note { max-width: 720px; margin: 28px auto 0; color: var(--muted); font-size: 13px; text-align: center; }
.closing-section { padding: 0 0 100px; }
.closing-card { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: 52px 56px; color: #fff; background: linear-gradient(115deg, var(--brand) 0%, var(--brand-dark) 100%); border-radius: 30px; box-shadow: var(--shadow); }
.closing-card h2 { max-width: 16ch; color: #fff; font-size: clamp(32px, 4vw, 46px); }
.closing-card .button { flex: none; }

/* Footer */
footer { padding: 58px 0 28px; color: #91a2b2; background: #061725; font-size: 13px; }
.footer-main { display: grid; grid-template-columns: 1fr .8fr 1.4fr; gap: 30px; align-items: center; }
.footer-main p { margin: 0; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-main nav a { color: #c4d0da; text-decoration: none; }
.footer-main nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: #718697; }

/* Existing legal/support pages */
body:not(.landing) > header { padding: 0; }
body:not(.landing) > header .wrap { width: min(calc(100% - 48px), var(--wrap)); }
body:not(.landing) > header .mark { color: #fff; }
body:not(.landing) > header .wordmark { margin-left: 0; }
.doc { padding: 70px 0 90px; }
.doc h1 { margin: 0 0 7px; font-size: clamp(34px, 5vw, 48px); line-height: 1.08; letter-spacing: -1.4px; }
.doc .updated { margin: 0 0 34px; color: var(--muted); font-size: 14px; }
.doc h2 { margin: 35px 0 9px; font-size: 21px; letter-spacing: -.3px; }
.doc p, .doc li { max-width: 74ch; color: var(--ink-soft); }
.doc ul { padding-left: 20px; }
.plain { max-width: 74ch; padding: 18px 22px; background: var(--blue-tint); border-left: 3px solid var(--brand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.plain p { margin: 0 0 10px; }
.plain p:last-child { margin: 0; }
body:not(.landing) footer .row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
body:not(.landing) footer .row nav { display: flex; flex-wrap: wrap; gap: 18px; margin-left: auto; }
body:not(.landing) footer a { color: #c4d0da; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 390px; gap: 20px; }
  .hero h1 { font-size: clamp(42px, 6vw, 58px); }
  .stage-note { display: none; }
  .feature-layout { gap: 50px; }
  .privacy-grid { gap: 60px; }
}
@media (max-width: 780px) {
  .wrap { width: min(calc(100% - 36px), var(--wrap)); }
  .primary-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { padding-top: 118px; }
  .hero-grid { display: block; min-height: auto; }
  .hero-copy { padding: 38px 0 60px; }
  .hero h1 { font-size: clamp(42px, 11vw, 60px); }
  .product-stage { height: 580px; }
  .phone { width: 272px; height: 545px; bottom: 10px; }
  .assurance-strip { grid-template-columns: 1fr; padding: 20px 0; }
  .assurance-strip div, .assurance-strip div:first-child { padding: 10px 0; border-right: 0; }
  .clarity-section, .feature-section, .privacy-section, .honesty-section, .pricing-section { padding: 78px 0; }
  .split-heading, .feature-layout, .privacy-grid, .honesty-layout { grid-template-columns: 1fr; gap: 34px; }
  .question-grid { grid-template-columns: 1fr; }
  .question-card { min-height: 315px; }
  .feature-intro { position: static; }
  .privacy-copy h2, .honesty-layout h2 { max-width: none; }
  .honesty-copy { padding-left: 24px; }
  .plans { grid-template-columns: 1fr; }
  .closing-section { padding-bottom: 70px; }
  .closing-card { align-items: start; flex-direction: column; padding: 38px 30px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .wrap { width: min(calc(100% - 30px), var(--wrap)); }
  .header-inner { min-height: 68px; }
  .header-cta { padding: 8px 13px; }
  .hero { padding-top: 96px; }
  .hero-copy { padding-top: 34px; }
  .hero h1 { letter-spacing: -1.8px; }
  .hero-lede { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; gap: 9px; }
  .product-stage { height: 570px; }
  .section-heading h2, .feature-intro h2, .privacy-copy h2, .honesty-layout h2 { font-size: 34px; letter-spacing: -1.1px; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list article { min-height: 210px; }
  .question-card, .plan { padding: 25px; }
  .card-detail { left: 25px; }
  .plan-top { flex-direction: column; }
  .closing-card { border-radius: 24px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  body:not(.landing) > header nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
