/* ===========================================================
   PreClear shared design system
   Self-contained. No external fonts/CDNs. CSP-safe (style-src 'self').
   =========================================================== */
:root {
  --brand: #2E66FF;
  --brand-strong: #1E49CC;
  --brand-tint: #EAF0FF;
  --brand-ink: #16265F;
  --gold: #C49A45;
  --go: #157F58; --go-tint: #E2F3EA;
  --warn: #9A5B00; --warn-tint: #FBEED7;
  --block: #BE3A3A; --block-tint: #FBE6E6;

  --ink: #0A1124;
  --ink-2: #111B36;
  --slate-900: #0E1A33;
  --slate-700: #38445E;
  --slate-600: #515E79;
  --slate-500: #6B7790;
  --slate-300: #CCD5E4;
  --slate-200: #DEE5F0;
  --slate-100: #EDF1F8;
  --surface: #F6F8FC;
  --white: #FFFFFF;

  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 22, 48, .06), 0 1px 3px rgba(11, 22, 48, .04);
  --shadow-md: 0 8px 24px rgba(13, 27, 62, .08), 0 2px 6px rgba(13, 27, 62, .05);
  --shadow-lg: 0 24px 60px rgba(10, 20, 48, .16);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--slate-900); line-height: 1.12; letter-spacing: -.022em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.45rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; color: var(--slate-700); }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--slate-900); }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--brand-tint); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(3.6rem, 7vw, 6.4rem) 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-strong); margin: 0 0 .9rem; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.lead { font-size: 1.16rem; color: var(--slate-600); }
.section-head { max-width: 760px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.muted { color: var(--slate-500); }
.center { text-align: center; }
.narrow { max-width: 840px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: inherit; font-size: .98rem; font-weight: 650; line-height: 1; padding: .92rem 1.4rem; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(46, 102, 255, .28); }
.btn-primary:hover { background: var(--brand-strong); box-shadow: 0 10px 26px rgba(46, 102, 255, .34); }
.btn-secondary { background: #fff; color: var(--slate-900); border-color: var(--slate-300); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--slate-500); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.04rem; }
.btn-arrow::after { content: "→"; font-weight: 600; }

/* Chips / pills */
.chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; padding: .4rem .8rem; border-radius: 999px; background: var(--brand-tint); color: var(--brand-ink); border: 1px solid rgba(46,102,255,.16); }
.pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .76rem; font-weight: 700; letter-spacing: .02em; padding: .28rem .66rem; border-radius: 999px; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.pill--go { background: var(--go-tint); color: var(--go); }
.pill--warn { background: var(--warn-tint); color: var(--warn); }
.pill--block { background: var(--block-tint); color: var(--block); }
.pill--live { background: var(--go-tint); color: var(--go); }
.pill--soon { background: var(--brand-tint); color: var(--brand-strong); }
.pill--watch { background: var(--slate-100); color: var(--slate-600); }

/* Announcement bar */
.announce { background: var(--ink); color: #fff; font-size: .9rem; }
.announce .container { display: flex; align-items: center; justify-content: center; gap: 1rem; padding-top: .7rem; padding-bottom: .7rem; flex-wrap: wrap; text-align: center; }
.announce strong { color: #fff; }
.announce .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); flex: none; }
.announce a { color: #B9CBFF; }
.count { font-variant-numeric: tabular-nums; font-weight: 700; color: #fff; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--slate-200); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: -.02em; color: var(--slate-900); font-size: 1.18rem; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--slate-700); font-weight: 550; font-size: .96rem; }
.nav-links a:hover { color: var(--slate-900); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--brand-strong); font-weight: 650; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--slate-300); border-radius: 8px; width: 42px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--slate-900); position: relative; transition: .2s; }
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }

/* Hero (home) */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(900px 500px at 88% -8%, rgba(46,102,255,.10), transparent 60%),
  radial-gradient(700px 460px at 6% 4%, rgba(53,214,166,.08), transparent 55%),
  linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; padding-top: clamp(3rem, 5vw, 5rem); padding-bottom: clamp(3.4rem, 6vw, 5.6rem); }
.hero h1 { margin-bottom: 1rem; }
.hero-sub { font-size: 1.14rem; color: var(--slate-600); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 1.1rem; }
.trust-line { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .85rem; color: var(--slate-600); font-weight: 550; }
.trust-line span { display: inline-flex; align-items: center; gap: .4rem; }
.trust-line svg { width: 15px; height: 15px; color: var(--go); }

/* Inner-page hero */
.page-hero { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); border-bottom: 1px solid var(--slate-200); padding: clamp(2.6rem, 5vw, 4.2rem) 0; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 62ch; font-size: 1.1rem; color: var(--slate-600); }
.crumb { font-size: .85rem; color: var(--slate-500); margin-bottom: 1rem; }
.crumb a { color: var(--slate-500); }

/* Report card mockup */
.report-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.4rem; position: relative; }
.report-card .rc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--slate-200); }
.report-card .rc-title { font-size: .8rem; color: var(--slate-500); font-weight: 600; }
.report-card .rc-co { font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--slate-900); }
.gauge { text-align: center; flex: none; }
.gauge .num { font-size: 1.7rem; font-weight: 800; color: var(--warn); line-height: 1; font-variant-numeric: tabular-nums; }
.gauge .den { font-size: .72rem; color: var(--slate-500); font-weight: 600; }
.rc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1rem 0; }
.rc-stats div { background: var(--surface); border: 1px solid var(--slate-200); border-radius: 10px; padding: .6rem .65rem; }
.rc-stats small { display: block; font-size: .68rem; color: var(--slate-500); font-weight: 600; margin-bottom: .15rem; }
.rc-stats b { font-size: 1.02rem; color: var(--slate-900); font-variant-numeric: tabular-nums; }
.rc-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .7rem .8rem; border: 1px solid var(--slate-200); border-radius: 10px; margin-bottom: .55rem; }
.rc-row .l { font-size: .9rem; }
.rc-row .l b { display: block; }
.rc-row .owner { font-size: .74rem; color: var(--slate-500); font-weight: 600; }
.rc-sim { background: var(--go-tint); border: 1px solid rgba(21,127,88,.2); border-radius: 10px; padding: .7rem .8rem; font-size: .86rem; color: var(--go); display: flex; align-items: center; gap: .55rem; font-weight: 600; }
.rc-tag { position: absolute; top: -13px; left: 18px; }

/* Facts strip */
.facts { border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); background: #fff; }
.facts .container { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.facts .f { display: inline-flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--slate-600); font-weight: 600; }
.facts .f b { color: var(--slate-900); font-weight: 700; }
.facts svg { width: 16px; height: 16px; color: var(--brand); }

/* Grids / cards */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s, border-color .2s; }
.card.hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--slate-300); }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .95rem; margin: 0; }
.card p + p { margin-top: .7rem; }
.card .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-tint); color: var(--brand-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card .ico svg { width: 22px; height: 22px; }
.card .num-tag { font-size: .78rem; font-weight: 700; color: var(--brand-strong); }
.tag-owner { display: inline-block; margin-top: .9rem; font-size: .74rem; font-weight: 700; color: var(--slate-600); background: var(--slate-100); padding: .3rem .6rem; border-radius: 999px; }
.tag-export { display: block; margin-top: .5rem; font-size: .76rem; color: var(--brand-strong); font-weight: 600; }

.alt { background: var(--surface); }
.ink-section { background: var(--ink); color: #fff; }
.ink-section h2, .ink-section h3 { color: #fff; }
.ink-section p { color: #C3CCDD; }
.ink-section .eyebrow { color: #8FB0FF; }
.ink-section .eyebrow::before { background: #8FB0FF; }

/* Reframe / compare columns */
.reframe { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.reframe .col { border-radius: var(--radius); padding: 1.6rem; border: 1px solid; }
.reframe .before { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.reframe .after { background: linear-gradient(180deg, rgba(46,102,255,.16), rgba(46,102,255,.06)); border-color: rgba(143,176,255,.4); }
.reframe h3 { font-size: 1.04rem; }
.reframe .lbl { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: .7rem; display: inline-block; }
.reframe .before .lbl { color: #97A4BD; }
.reframe .after .lbl { color: #B9CBFF; }
.reframe ul { list-style: none; margin: .8rem 0 0; padding: 0; }
.reframe li { font-size: .92rem; padding: .4rem 0 .4rem 1.6rem; position: relative; color: #D4DCEC; }
.reframe .before li::before { content: "\2715"; position: absolute; left: 0; color: #E08A8A; font-weight: 700; }
.reframe .after li::before { content: "\2713"; position: absolute; left: 0; color: #35D6A6; font-weight: 700; }

/* Stakes / stats */
.stake-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; }
.stat-cards { display: grid; gap: .9rem; }
.stat { background: #fff; border: 1px solid var(--slate-200); border-left: 4px solid var(--brand); border-radius: 12px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); }
.stat .big { font-size: 1.7rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat.red { border-left-color: var(--block); } .stat.amber { border-left-color: var(--warn); }
.stat p { font-size: .9rem; margin: .2rem 0 0; }
.penalty-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.penalty-list li { display: flex; gap: .8rem; align-items: baseline; padding: .55rem 0; border-bottom: 1px dashed var(--slate-200); font-size: .96rem; }
.penalty-list li b { color: var(--block); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step { position: relative; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.5rem 1.3rem; box-shadow: var(--shadow-sm); }
.step .n { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.step h3 { font-size: 1.04rem; }
.step p { font-size: .9rem; margin: 0; }

/* Audience */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.aud { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.aud .role { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-strong); }
.aud h3 { margin: .6rem 0 .5rem; font-size: 1.12rem; }
.aud p { font-size: .93rem; margin: 0 0 .4rem; }
.aud .gain { font-size: .85rem; font-weight: 600; color: var(--go); }
.premium-band { margin-top: 1.1rem; border-radius: var(--radius); padding: 1.5rem 1.7rem; background: linear-gradient(110deg, #0E1A36, #1A2A52); color: #fff; display: flex; gap: 1.4rem; align-items: center; justify-content: space-between; flex-wrap: wrap; border: 1px solid rgba(196,154,69,.4); }
.premium-band .star { color: var(--gold); font-weight: 700; letter-spacing: .1em; font-size: .76rem; text-transform: uppercase; }
.premium-band h3 { color: #fff; margin: .3rem 0; }
.premium-band p { color: #C9D3E6; margin: 0; max-width: 60ch; font-size: .94rem; }

/* Compare table */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: .95rem; }
.compare-table th, .compare-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--slate-200); }
.compare-table thead th { background: var(--surface); font-size: .82rem; letter-spacing: .02em; color: var(--slate-600); font-weight: 700; }
.compare-table thead th.us { background: var(--brand-ink); color: #fff; }
.compare-table tbody th { font-weight: 600; color: var(--slate-700); }
.compare-table td.us { background: rgba(46,102,255,.05); font-weight: 600; color: var(--slate-900); }
.compare-table .yes { color: var(--go); font-weight: 700; }
.compare-table .no { color: var(--block); font-weight: 700; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }

/* Mandate wall */
.wall { display: grid; gap: .7rem; }
.wall .row { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .9rem 1.2rem; flex-wrap: wrap; }
.wall .mkt { font-weight: 700; color: #fff; min-width: 168px; }
.wall .desc { color: #AFBAD0; font-size: .9rem; flex: 1; min-width: 200px; }

/* Mini check */
.check-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.4rem, 3vw, 2.4rem); }
.check-form label { display: block; font-size: .82rem; font-weight: 650; color: var(--slate-700); margin: .8rem 0 .35rem; }
.check-form select, .form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 46px; border: 1px solid var(--slate-300); border-radius: 10px; padding: 0 .8rem; font: inherit; color: var(--slate-900); background: #fff; }
.check-form .qrow { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.check-out { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1.6rem; text-align: center; }
.check-out .score { font-size: 3.2rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.check-out .score small { font-size: 1rem; color: #9FB0CC; font-weight: 600; }
.check-out .verdict { font-weight: 700; letter-spacing: .03em; margin: .6rem 0; }
.check-out p { color: #C3CCDD; font-size: .9rem; }
.meter { height: 10px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; margin: 1rem 0; }
.meter span { display: block; height: 100%; border-radius: 999px; transition: width .5s ease, background .3s; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.price { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price .role { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-500); }
.price .amt { font-size: 1.8rem; font-weight: 800; color: var(--slate-900); margin: .5rem 0 .1rem; letter-spacing: -.02em; }
.price .amt span { font-size: .9rem; font-weight: 600; color: var(--slate-500); }
.price p { font-size: .92rem; margin: .6rem 0 0; }
.price.featured { border: 2px solid var(--brand); box-shadow: 0 18px 44px rgba(46,102,255,.18); position: relative; }
.price.featured .flag { position: absolute; top: -12px; left: 1.6rem; background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; letter-spacing: .04em; }
.price .feats { list-style: none; margin: 1rem 0 0; padding: 0; }
.price .feats li { font-size: .88rem; padding: .32rem 0 .32rem 1.5rem; position: relative; color: var(--slate-700); }
.price .feats li::before { content: "\2713"; position: absolute; left: 0; color: var(--go); font-weight: 700; }
.price .btn { margin-top: 1.2rem; }
.price .spacer { flex: 1; }
.price-note { margin-top: 1.2rem; font-size: .88rem; color: var(--slate-500); text-align: center; }

/* Trust / proof */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.usecase-note { margin-top: 1.2rem; font-size: .85rem; color: var(--slate-500); text-align: center; font-style: italic; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--slate-200); border-radius: 12px; padding: 0 1.2rem; margin-bottom: .7rem; background: #fff; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 650; color: var(--slate-900); padding: 1.1rem 2rem 1.1rem 0; list-style: none; position: relative; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--brand); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 1.1rem; margin: 0; font-size: .96rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--ink), #16244A); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.6rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(46,102,255,.4), transparent 60%); pointer-events: none; }
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto .8rem; position: relative; }
.cta-band p { color: #C3CCDD; max-width: 56ch; margin: 0 auto 1.6rem; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* Code block (contact template) */
.codeblock { font-family: var(--mono); font-size: .84rem; background: var(--ink); color: #D6DEEC; padding: 1.3rem 1.5rem; border-radius: 14px; overflow: auto; white-space: pre-wrap; line-height: 1.65; box-shadow: var(--shadow-md); margin: 0; }

/* Privacy architecture flow */
.flow { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.flow span { background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; padding: .6rem 1.1rem; font-size: .9rem; font-weight: 600; color: var(--slate-700); box-shadow: var(--shadow-sm); }
.flow .arrow { background: none; border: 0; box-shadow: none; color: var(--brand); font-weight: 700; padding: 0 .1rem; }

/* Disclaimer box */
.note-box { border: 1px solid var(--slate-200); border-left: 4px solid var(--gold); background: var(--surface); border-radius: 12px; padding: 1.3rem 1.5rem; }
.note-box strong { display: block; margin-bottom: .4rem; }
.note-box p { margin: 0; font-size: .95rem; }

/* ===== Sample report document ===== */
.report-doc { max-width: 940px; margin: 0 auto; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.report-cover { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.8rem; background: var(--ink); color: #fff; flex-wrap: wrap; }
.report-cover .eyebrow { color: #8FB0FF; } .report-cover .eyebrow::before { background: #8FB0FF; }
.report-cover h2 { color: #fff; margin: .2rem 0; }
.report-cover p { color: #AFBAD0; margin: 0; font-size: .92rem; }
.report-stamp { align-self: center; padding: .5rem .9rem; border-radius: 999px; font-weight: 700; font-size: .82rem; letter-spacing: .03em; background: var(--warn-tint); color: var(--warn); }
.report-body { padding: 1.8rem; }
.report-statgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; }
.report-statgrid article { background: var(--surface); border: 1px solid var(--slate-200); border-radius: 12px; padding: .9rem; }
.report-statgrid small { display: block; font-size: .68rem; color: var(--slate-500); font-weight: 600; margin-bottom: .25rem; }
.report-statgrid strong { font-size: 1.04rem; color: var(--slate-900); }
.report-block { margin-top: 1.8rem; }
.report-block > h3 { font-size: 1.18rem; margin-bottom: .9rem; }
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; font-size: .92rem; }
.data-table th, .data-table td { padding: .8rem .9rem; text-align: left; border-bottom: 1px solid var(--slate-200); }
.data-table thead th { background: var(--surface); font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--slate-600); }
.data-table tr:last-child td { border-bottom: 0; }
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.mini-card { background: var(--surface); border: 1px solid var(--slate-200); border-radius: 12px; padding: 1.1rem 1.2rem; }
.mini-card .eyebrow { display: flex; margin-bottom: .5rem; }
.mini-card > strong { display: block; }
.mini-card.go { background: var(--go-tint); border-color: rgba(21,127,88,.25); }
.mini-card.go ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--go); font-size: .9rem; }
.resp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.resp-grid article { background: var(--surface); border: 1px solid var(--slate-200); border-radius: 12px; padding: 1rem; }
.resp-grid small { display: block; font-size: .72rem; color: var(--brand-strong); font-weight: 700; margin-bottom: .35rem; }
.resp-grid strong { font-size: .92rem; color: var(--slate-900); font-weight: 600; }
.email-paper { border: 1px solid var(--slate-200); border-left: 4px solid var(--brand); border-radius: 12px; padding: 1.3rem 1.5rem; background: var(--surface); }
.email-paper p { font-size: .95rem; } .email-paper p:last-child { margin-bottom: 0; }

/* Footer */
.footer { background: var(--ink); color: #93A0BC; font-size: .9rem; padding: 3.2rem 0 2.2rem; }
.footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .brand small { color: #8090AE; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .9rem; }
.footer a { color: #AEB9D2; display: block; margin-bottom: .5rem; }
.footer a:hover { color: #fff; }
.footer .disclaimer { margin-top: 1.8rem; font-size: .8rem; color: #76839E; line-height: 1.6; }
.footer .meta { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .8rem; color: #8090AE; }

/* Mobile sticky CTA */
.sticky-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; }
.sticky-cta .btn { width: 100%; box-shadow: var(--shadow-lg); }

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-sub { max-width: none; }
  .grid-3, .grid-4, .steps, .aud-grid, .price-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .stake-grid, .check-wrap, .split2 { grid-template-columns: 1fr; }
  .reframe { grid-template-columns: 1fr; }
  .report-statgrid { grid-template-columns: repeat(2, 1fr); }
  .resp-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--slate-200); flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; box-shadow: var(--shadow-md); display: none; }
  .nav-links a { padding: .85rem 24px; }
  .nav.open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-desktop { display: none; }
  .sticky-cta { display: block; }
  .footer .top { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .steps, .aud-grid, .price-grid, .trust-grid, .check-form .qrow, .rc-stats, .resp-grid, .report-statgrid { grid-template-columns: 1fr; }
  .compare-table, .data-table { display: block; overflow-x: auto; white-space: nowrap; }
  .section { padding: 3rem 0; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
