:root {
  --red: #ff1738;
  --red-dark: #d90024;
  --ink: #17191d;
  --muted: #62656d;
  --line: #dedfe3;
  --paper: #ffffff;
  --soft: #fff3f5;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(255, 23, 56, .35); outline-offset: 3px; }
img { max-width: 100%; display: block; }

.skip-link { position: absolute; left: 16px; top: -80px; z-index: 30; background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(222,223,227,.85); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.nav { width: min(calc(100% - 40px), var(--max)); min-height: 72px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.03em; font-size: 1.18rem; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .92rem; font-weight: 650; }
.nav-links a { text-decoration: none; color: #34363c; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red-dark); }
.nav-legal { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: auto; }
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before, .hero::after { content: ""; position: absolute; top: 0; bottom: 0; width: 8px; background: var(--red); opacity: .94; }
.hero::before { left: max(22px, calc((100vw - var(--max))/2 - 42px)); }
.hero::after { left: max(42px, calc((100vw - var(--max))/2 - 22px)); }
.hero-grid { min-height: 650px; padding: 96px 0 78px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 850; color: var(--red-dark); }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--red); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(3.25rem, 7.4vw, 6.7rem); max-width: 840px; }
h2 { margin: 0 0 18px; font-size: clamp(2.15rem, 4.5vw, 4.2rem); }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.hero-copy { margin: 26px 0 0; max-width: 620px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 10px; text-decoration: none; font-weight: 800; border: 1px solid var(--ink); }
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--red); border-color: var(--red); }
.button.secondary:hover { color: var(--red-dark); border-color: var(--red); }
.release-note { margin: 16px 0 0; color: var(--muted); font-size: .88rem; }

.pause-card { position: relative; min-height: 420px; display: grid; place-items: center; background: var(--ink); border-radius: 34px; color: white; padding: 42px; box-shadow: 20px 20px 0 var(--soft), 21px 21px 0 var(--red); overflow: hidden; }
.pause-card::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; }
.pause-symbol { display: flex; gap: 28px; align-items: center; }
.pause-symbol i { display: block; width: 28px; height: 126px; background: var(--red); border-radius: 8px; }
.pause-message { position: absolute; bottom: 48px; left: 48px; right: 48px; display: flex; justify-content: space-between; gap: 20px; color: #d7d8dc; font-size: .86rem; }

.section { padding: 108px 0; }
.section.tint { background: var(--soft); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 52px; }
.section-head p { margin: 0 0 8px; font-size: 1.12rem; color: var(--muted); max-width: 560px; }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.step { counter-increment: steps; padding: 30px 26px 32px 0; border-bottom: 1px solid var(--line); }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 44px; color: var(--red-dark); font-weight: 900; font-size: .82rem; }
.step p, .feature p { margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.feature-mark { width: 34px; height: 5px; margin-bottom: 40px; background: var(--red); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: white; border-radius: 22px; overflow: hidden; }
.trust-item { padding: 34px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.18); }
.trust-item strong { display: block; font-size: 1.18rem; margin-bottom: 8px; }
.trust-item span { color: #b7bac1; }

/* Home: calm editorial product story */
.home-page { background: #f7f7f5; }
.home-page .home-header { background: rgba(247,247,245,.9); border-bottom-color: rgba(23,25,29,.13); }
.home-page .nav { min-height: 78px; }
.home-page .nav-legal { background: var(--ink); border-color: var(--ink); color: white; padding: 9px 14px; }
.home-page .nav-legal:hover { background: var(--red); border-color: var(--red); color: white; }

.home-hero { padding: 72px 0 80px; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(420px,.78fr); gap: clamp(46px,7vw,104px); align-items: center; }
.home-kicker { margin: 0 0 24px; display: flex; align-items: center; gap: 11px; color: #50535a; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-kicker span { width: 28px; height: 3px; background: var(--red); }
.home-hero h1 { font-size: clamp(3.65rem,7vw,7.2rem); line-height: .91; letter-spacing: -.075em; }
.home-hero h1 em { color: var(--red); font-style: normal; }
.home-lede { max-width: 620px; margin: 30px 0 0; color: #565960; font-size: clamp(1.08rem,1.7vw,1.28rem); line-height: 1.6; }
.home-page .cta-row { align-items: center; margin-top: 34px; gap: 20px; }
.home-page .button { min-height: 52px; border-radius: 5px; padding: 0 22px; }
.text-link { font-weight: 800; text-decoration: none; border-bottom: 1px solid #a7a8ac; padding: 7px 0 5px; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--red); transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-facts { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts span { padding: 7px 11px; border: 1px solid #d7d7d4; background: #fff; color: #55585e; font-size: .78rem; font-weight: 750; }

.decision-demo { position: relative; min-height: 592px; background: #fff; border: 1px solid #d8d8d5; box-shadow: 18px 18px 0 #e8e8e4; }
.decision-demo::after { content: ""; position: absolute; width: 84px; height: 84px; right: -28px; top: -28px; border: 10px solid var(--red); z-index: -1; }
.demo-topbar { min-height: 67px; padding: 0 22px; border-bottom: 1px solid #e3e3e0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.demo-brand { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 850; }
.demo-brand img { width: 28px; height: 28px; border-radius: 7px; }
.demo-time { color: #81838a; font-size: .72rem; }
.demo-body { padding: 50px 38px 34px; }
.demo-label { margin: 0 0 10px; color: var(--red-dark); font-weight: 850; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.demo-body h2 { max-width: 390px; margin: 0; font-size: clamp(2rem,3.2vw,3rem); letter-spacing: -.055em; }
.demo-body > p:not(.demo-label) { margin: 15px 0 28px; color: #6b6d73; }
.demo-actions { border-top: 1px solid #dedfdd; }
.demo-actions > div { position: relative; min-height: 82px; padding: 15px 18px 15px 52px; border-bottom: 1px solid #dedfdd; display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 18px; }
.demo-actions > div.selected { background: var(--ink); color: white; margin: 8px 0 0; border-bottom-color: var(--ink); }
.action-index { position: absolute; left: 16px; top: 19px; color: var(--red); font-size: .72rem; font-weight: 900; }
.demo-actions strong { font-size: 1rem; }
.demo-actions small { grid-column: 2; grid-row: 1; color: #777a80; font-size: .76rem; }
.demo-actions .selected small { color: #bfc1c7; }
.demo-footer { position: absolute; left: 0; right: 0; bottom: 0; min-height: 50px; padding: 0 22px; background: #efefec; display: flex; align-items: center; justify-content: space-between; color: #6e7076; font-size: .72rem; }

.proof-row { background: white; border-top: 1px solid #dedfdd; border-bottom: 1px solid #dedfdd; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.proof-grid p { margin: 0; min-height: 112px; padding: 27px 30px 24px 0; color: #6a6c72; }
.proof-grid p + p { padding-left: 30px; border-left: 1px solid #dedfdd; }
.proof-grid strong { display: block; margin-bottom: 3px; color: var(--ink); }

.home-section { padding: 118px 0; }
.home-section-heading { max-width: 790px; margin-bottom: 54px; }
.home-section-heading h2 { font-size: clamp(2.8rem,5.5vw,5.4rem); line-height: .98; }
.home-section-heading > p:last-child { max-width: 610px; color: #60636a; font-size: 1.08rem; }
.flow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.flow-card { min-height: 350px; padding: 28px; background: #fff; border: 1px solid #d9d9d6; display: flex; flex-direction: column; }
.flow-card-dark { background: var(--ink); border-color: var(--ink); color: white; transform: translateY(22px); }
.flow-number { margin-bottom: auto; color: var(--red); font-size: .82rem; font-weight: 900; }
.flow-card h3 { max-width: 250px; margin-top: 60px; font-size: 1.55rem; }
.flow-card p { margin: 0; color: #686b71; }
.flow-card-dark p { color: #bcbfc5; }

.privacy-panel { padding: 108px 0 0; background: var(--ink); color: white; overflow: hidden; }
.privacy-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-bottom: 74px; align-items: start; }
.home-kicker-light { color: #c5c7cb; }
.privacy-panel h2 { max-width: 630px; font-size: clamp(3rem,5.7vw,5.8rem); }
.privacy-copy { padding-top: 44px; }
.privacy-copy p { margin: 0 0 30px; color: #c0c2c7; font-size: 1.12rem; }
.button.light { color: white; border-color: #71737a; }
.button.light:hover { background: white; border-color: white; color: var(--ink); }
.privacy-points { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #4a4c52; }
.privacy-points div { min-height: 132px; padding: 26px 24px 24px 0; display: flex; flex-direction: column; justify-content: space-between; }
.privacy-points div + div { padding-left: 24px; border-left: 1px solid #4a4c52; }
.privacy-points strong { color: var(--red); font-size: .74rem; }
.privacy-points span { color: #e3e4e7; font-weight: 750; }

.resources-section { background: white; }
.resource-heading { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.resource-heading > p { margin-bottom: 22px; }
.resource-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--ink); }
.resource-grid a { position: relative; min-height: 215px; padding: 28px 70px 28px 0; border-bottom: 1px solid #d9dadc; text-decoration: none; display: flex; flex-direction: column; }
.resource-grid a:nth-child(even) { padding-left: 34px; border-left: 1px solid #d9dadc; }
.resource-grid a:hover { background: #faf5f6; }
.resource-grid span { color: var(--red-dark); text-transform: uppercase; letter-spacing: .09em; font-size: .72rem; font-weight: 900; }
.resource-grid strong { margin: auto 0 6px; font-size: 1.45rem; }
.resource-grid small { color: #6c6f75; font-size: .9rem; }
.resource-grid i { position: absolute; top: 24px; right: 24px; font-size: 1.4rem; font-style: normal; }
.home-footer { background: #f7f7f5; }
.footer-brand { width: fit-content; }

.legal-hero { padding: 80px 0 54px; border-bottom: 1px solid var(--line); background: linear-gradient(110deg, #fff 0 72%, var(--soft) 72%); }
.legal-hero h1 { font-size: clamp(2.9rem, 6vw, 5.7rem); max-width: 900px; }
.legal-intro { max-width: 740px; margin: 22px 0 0; color: var(--muted); font-size: 1.1rem; }
.meta { margin-top: 22px; display: flex; gap: 12px 28px; flex-wrap: wrap; font-size: .86rem; font-weight: 750; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 72px; align-items: start; padding: 70px 0 110px; }
.toc { position: sticky; top: 100px; font-size: .9rem; }
.toc strong { display: block; margin-bottom: 12px; }
.toc a { display: block; padding: 7px 0; color: var(--muted); text-decoration: none; }
.toc a:hover { color: var(--red-dark); }
.legal-content section { scroll-margin-top: 98px; padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
.legal-content h3 { margin-top: 24px; letter-spacing: -.025em; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.note { padding: 20px 22px; border-left: 5px solid var(--red); background: var(--soft); margin: 22px 0; }
.data-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .92rem; }
.data-table th, .data-table td { text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); padding: 14px 12px; }
.data-table th { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.status { display: inline-block; padding: 3px 8px; border-radius: 999px; font-weight: 800; font-size: .76rem; background: #e9f8ef; color: #176b39; }
.status.local { background: #eef0f4; color: #444851; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-title { font-weight: 850; font-size: 1.15rem; }
.footer-copy { color: var(--muted); max-width: 400px; }
.footer-links strong { display: block; margin-bottom: 12px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a { display: block; color: var(--muted); text-decoration: none; margin: 8px 0; }
.footer-links a:hover { color: var(--red-dark); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .82rem; }

@media (max-width: 860px) {
  .nav-links a:not(.nav-legal) { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 72px 0; gap: 56px; }
  .hero::before, .hero::after { display: none; }
  .pause-card { min-height: 340px; max-width: 520px; width: 100%; }
  .section-head, .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .toc a { display: inline-block; margin-right: 14px; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: 0; }
  .step::before { margin-bottom: 18px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .decision-demo { max-width: 580px; width: 100%; min-height: 570px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-card { min-height: 260px; }
  .flow-card-dark { transform: none; }
  .privacy-panel-grid, .resource-heading { grid-template-columns: 1fr; gap: 28px; }
  .privacy-copy { padding-top: 0; }
  .privacy-points { grid-template-columns: repeat(2,1fr); }
  .privacy-points div:nth-child(3) { border-left: 0; }
  .resource-heading > p { margin: 0; }
}

@media (max-width: 620px) {
  .container, .nav { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 64px; }
  .section { padding: 74px 0; }
  .feature-grid, .trust-strip, .footer-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .legal-hero { padding: 58px 0 40px; background: linear-gradient(180deg, #fff 0 82%, var(--soft) 82%); }
  .legal-layout { gap: 42px; padding-top: 50px; }
  .data-table { display: block; overflow-x: auto; white-space: nowrap; }
  .footer-bottom { flex-direction: column; }
  .home-hero { padding: 52px 0 62px; }
  .home-hero h1 { font-size: clamp(3.2rem,16vw,5.2rem); }
  .home-page .cta-row { align-items: flex-start; flex-direction: column; }
  .decision-demo { min-height: 560px; box-shadow: 10px 10px 0 #e8e8e4; }
  .decision-demo::after { display: none; }
  .demo-topbar { padding: 0 16px; }
  .demo-time { display: none; }
  .demo-body { padding: 36px 20px 28px; }
  .demo-actions > div { min-height: 76px; padding-right: 12px; }
  .demo-actions small { max-width: 112px; text-align: right; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid p { min-height: auto; padding: 22px 0; }
  .proof-grid p + p { padding-left: 0; border-left: 0; border-top: 1px solid #dedfdd; }
  .home-section { padding: 82px 0; }
  .privacy-panel { padding-top: 78px; }
  .privacy-points { grid-template-columns: 1fr; }
  .privacy-points div, .privacy-points div + div { min-height: 92px; padding: 18px 0; border-left: 0; border-top: 1px solid #4a4c52; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid a, .resource-grid a:nth-child(even) { min-height: 190px; padding: 24px 58px 24px 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
