:root {
  color-scheme: dark light;
  --bg: #171c21;
  --surface: #1e242a;
  --surface-raised: #252c33;
  --surface-soft: #1a2025;
  --text: #f1f4f3;
  --muted: #a9b3b7;
  --muted-strong: #c4ccce;
  --border: #ffffff1f;
  --border-strong: #ffffff33;
  --accent: #5bd9b0;
  --accent-strong: #80e6c4;
  --accent-dark: #0d5f4b;
  --cyan: #47c9e8;
  --orange: #f2a052;
  --shadow: #070a0c73;
  --page-width: 1240px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 10% 4%, #55d5ad12, transparent 30rem),
    var(--bg);
  color: var(--text);
}
img { max-width: 100%; }
a { color: var(--accent); }
a:hover { color: var(--accent-strong); }
h1, h2, h3 { letter-spacing: -.04em; }
p { text-wrap: pretty; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--page-width)) / 2));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand:hover { color: var(--text); }
.brand img {
  border-radius: 9px;
  box-shadow: 0 6px 24px #38cfa43d;
}
.site-header nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-header nav a {
  padding: 9px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  background: var(--surface-raised);
  color: var(--text);
}
.site-header nav .sign-in-link {
  margin-left: 6px;
  color: var(--text);
}
.site-header nav .request-link {
  margin-left: 3px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  background: var(--accent);
  color: #10241e;
}
.site-header nav .request-link:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #0d211b;
}

main,
.site-footer {
  width: min(var(--page-width), calc(100% - 48px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-actions a {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}
.hero-actions .primary-action {
  border-color: var(--accent);
  background: var(--accent);
  color: #10241e;
}
.hero-actions .primary-action:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #0d211b;
}
.hero-actions .secondary-action {
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.hero-actions .secondary-action:hover {
  border-color: var(--muted);
  background: var(--surface-raised);
  color: var(--text);
}

.landing-hero,
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100vh - 96px));
  margin: 24px 0 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #1b242a;
  box-shadow: 0 35px 100px var(--shadow);
  isolation: isolate;
}
.landing-hero::after,
.about-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #10171df2 0%, #10171dc9 38%, #10171d33 72%, transparent 100%),
    linear-gradient(0deg, #10171ded 0%, transparent 56%);
  content: "";
}
.landing-hero-backdrop,
.about-hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  transform: scale(1.01);
}
.landing-hero-copy,
.about-hero-copy {
  display: flex;
  width: min(880px, 72%);
  min-height: inherit;
  padding: clamp(54px, 6vw, 80px);
  flex-direction: column;
  justify-content: center;
}
.landing-hero-copy h1,
.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #f4f7f6;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .95;
  text-wrap: balance;
}
.landing-hero-copy > p:not(.eyebrow),
.about-hero-copy .hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c9d1d1;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
}
.landing-hero-meta {
  position: absolute;
  right: clamp(26px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 48px);
  min-width: 280px;
  padding: 18px 20px;
  border: 1px solid #ffffff24;
  border-radius: 14px;
  background: #121a20c9;
  color: #dbe2e0;
  backdrop-filter: blur(14px);
}
.landing-hero-meta p {
  margin: 0 0 10px;
  color: #8fe2c4;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.landing-hero-meta ul {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.landing-hero-meta li {
  color: #c8d0cf;
  font-size: 11px;
}
.landing-hero-meta li + li::before {
  margin: 0 8px;
  color: #6f7d7c;
  content: "·";
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(48px, 9vw, 124px);
  padding: 120px 0 68px;
  align-items: end;
  scroll-margin-top: 76px;
}
.product-intro h2,
.about-origin h2,
.audience-section > div:first-child h2 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}
.product-intro > p {
  max-width: 570px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.product-chapters {
  display: grid;
  gap: 116px;
  padding-bottom: 120px;
}
.product-chapter {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 6vw, 84px);
  align-items: center;
}
.product-chapter-reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
}
.product-chapter-reverse .product-copy { order: 2; }
.product-copy {
  max-width: 450px;
  padding: 22px 0;
}
.chapter-number {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}
.product-copy > p:not(.chapter-number) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.product-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
.product-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
}
.product-copy li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.product-window {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: #171c21;
  box-shadow: 0 28px 80px var(--shadow);
}
.product-window-bar {
  display: flex;
  height: 38px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff19;
  background: #20262c;
}
.product-window-bar > span {
  display: flex;
  gap: 5px;
}
.product-window-bar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #667078;
}
.product-window-bar i:nth-child(2) { background: #4ea98d; }
.product-window-bar i:nth-child(3) { background: #52606a; }
.product-window-bar small {
  color: #94a0a6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-window img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.privacy-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(54px, 9vw, 120px);
  margin-bottom: 96px;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 4%, #58d8b019, transparent 24rem),
    var(--surface);
}
.privacy-promise h2 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.03;
}
.privacy-promise-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.privacy-promise-copy > a,
.about-evidence-copy > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}
.privacy-promise dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface-soft);
}
.privacy-promise dl div {
  min-height: 112px;
  padding: 20px;
}
.privacy-promise dl div:nth-child(even) { border-left: 1px solid var(--border); }
.privacy-promise dl div:nth-child(n + 3) { border-top: 1px solid var(--border); }
.privacy-promise dt {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.privacy-promise dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.public-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 40px 80px;
  margin: 0 0 110px;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--border));
  border-radius: 24px;
  background:
    linear-gradient(120deg, #58d8b00d, transparent 55%),
    var(--surface-raised);
  align-items: end;
}
.public-cta h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}
.public-cta > p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}
.public-cta .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.about-hero {
  min-height: 660px;
}
.about-hero-copy {
  width: min(880px, 72%);
}
.about-hero-copy h1 {
  font-size: clamp(50px, 5.8vw, 78px);
}
.about-hero-note {
  position: absolute;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: #a8bab6;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-origin {
  padding: 120px 0 62px;
}
.about-origin > div {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(50px, 9vw, 126px);
  align-items: start;
}
.about-origin-copy {
  display: grid;
  gap: 20px;
}
.about-origin-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}
.principle-grid article {
  min-height: 280px;
  padding: 32px;
}
.principle-grid article + article { border-left: 1px solid var(--border); }
.principle-grid h2 {
  margin: 62px 0 14px;
  font-size: 30px;
  line-height: 1.06;
}
.principle-grid article > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-product-evidence {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(46px, 7vw, 90px);
  padding: 116px 0;
  align-items: center;
}
.about-evidence-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.04;
}
.about-evidence-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.comparison-story {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  margin-bottom: 116px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 24px 70px var(--shadow);
}
.comparison-visual {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  background: #192128;
}
.comparison-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 55% center;
}
.comparison-telemetry {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(340px, calc(100% - 44px));
  padding: 15px;
  border: 1px solid #ffffff24;
  border-radius: 13px;
  background: #111a20df;
  box-shadow: 0 16px 42px #07101473;
  color: #eaf0ef;
  backdrop-filter: blur(14px);
}
.comparison-telemetry > p {
  margin: 0 0 9px;
  color: #8fdcc3;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.comparison-telemetry ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comparison-telemetry li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  padding: 7px 0;
  align-items: center;
  font-size: 10px;
}
.comparison-telemetry li + li { border-top: 1px solid #ffffff16; }
.comparison-telemetry li::before {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.comparison-telemetry li > span {
  padding-left: 14px;
  color: #c8d0d0;
}
.comparison-telemetry strong {
  color: #f2f5f4;
  font-size: 10px;
}
.comparison-telemetry small {
  color: #9ba7a8;
  font-size: 9px;
}
.comparison-telemetry .telemetry-lead { color: #6de1b4; }
.comparison-telemetry .telemetry-second { color: #47c9e8; }
.comparison-telemetry .telemetry-third { color: #f2a052; }
.comparison-copy {
  padding: 58px 44px;
}
.comparison-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.04;
}
.comparison-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.comparison-copy ul {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
.comparison-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.comparison-copy li span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
  gap: clamp(50px, 8vw, 110px);
  padding: 0 0 116px;
  align-items: start;
}
.audience-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.audience-columns article { padding: 28px; }
.audience-columns article + article { border-left: 1px solid var(--border); }
.audience-columns h3 {
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: 15px;
  letter-spacing: -.01em;
}
.audience-columns ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.audience-columns li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.audience-columns li::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}
.privacy-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin: 24px 0 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #182127;
  isolation: isolate;
}
.privacy-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #11181ef5 0%, #11181ed6 52%, #11181e45 100%),
    linear-gradient(0deg, #11181ebd, transparent 70%);
  content: "";
}
.privacy-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(.72);
}
.privacy-hero > div {
  display: flex;
  max-width: 780px;
  min-height: 440px;
  padding: clamp(46px, 7vw, 84px);
  flex-direction: column;
  justify-content: center;
}
.privacy-hero h1 {
  margin: 0;
  color: #f4f7f6;
  font-size: clamp(48px, 6vw, 72px);
  line-height: .98;
}
.privacy-hero > div > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c8d1d0;
  font-size: 18px;
  line-height: 1.65;
}

.privacy-at-a-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin: 70px 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.privacy-at-a-glance article {
  min-height: 140px;
  padding: 24px;
}
.privacy-at-a-glance article + article { border-left: 1px solid var(--border); }
.privacy-at-a-glance strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.privacy-at-a-glance span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 810px);
  gap: clamp(48px, 7vw, 82px);
  padding-bottom: 110px;
}
.document-layout aside > p {
  margin: 0 0 10px;
  padding: 0 9px;
  color: var(--text);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.document-layout aside nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 3px;
}
.document-layout aside a {
  padding: 8px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}
.document-layout aside a:hover {
  background: var(--surface);
  color: var(--text);
}
.privacy-document {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 50px var(--shadow);
}
.privacy-document section {
  padding: 38px 42px;
  scroll-margin-top: 90px;
}
.privacy-document section + section { border-top: 1px solid var(--border); }
.privacy-document h2 {
  margin: 0 0 17px;
  font-size: 27px;
}
.privacy-document p,
.privacy-document li,
.privacy-document dd {
  color: var(--muted);
  line-height: 1.72;
}
.privacy-document p:last-child { margin-bottom: 0; }
.privacy-document ul { padding-left: 22px; }
.privacy-document li + li { margin-top: 8px; }
.privacy-document dl {
  display: grid;
  gap: 15px;
}
.privacy-document dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}
.privacy-document dt {
  padding-top: 2px;
  font-weight: 760;
}
.privacy-document dd { margin: 0; }

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, .88fr);
  overflow: hidden;
  min-height: 670px;
  margin: 24px 0 110px;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 35px 100px var(--shadow);
}
.auth-context {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: clamp(50px, 6vw, 78px);
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(120deg, #10181ff2 6%, #10181fcb 58%, #10181f75),
    url("about-hero.521cc9bc4aae.webp") center / cover;
  color: #f1f5f3;
  isolation: isolate;
}
.auth-context::after {
  position: absolute;
  z-index: -1;
  right: -140px;
  bottom: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid #74e4bd24;
  border-radius: 48% 52% 43% 57%;
  box-shadow:
    0 0 0 42px #74e4bd0a,
    0 0 0 84px #74e4bd0a,
    0 0 0 126px #74e4bd08;
  content: "";
  transform: rotate(-18deg);
}
.auth-context h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 5.3vw, 68px);
  line-height: .98;
}
.auth-context > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px 0 0;
  color: #c5d0ce;
  font-size: 17px;
  line-height: 1.65;
}
.auth-features {
  display: grid;
  max-width: 650px;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid #ffffff24;
  list-style: none;
}
.auth-features li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff1a;
  align-items: baseline;
}
.auth-features strong {
  color: #eaf0ee;
  font-size: 12px;
}
.auth-features span {
  color: #aebbb8;
  font-size: 12px;
  line-height: 1.5;
}
.auth-card {
  display: flex;
  padding: clamp(46px, 5.2vw, 68px);
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
  background:
    radial-gradient(circle at 100% 0, #5bd9b00d, transparent 21rem),
    var(--surface-raised);
}
.auth-card h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1;
}
.auth-card-intro,
.request-confirmation > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.public-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 740;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  outline: 0;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.form-field input { min-height: 46px; padding: 10px 12px; }
.form-field textarea {
  min-height: 112px;
  padding: 12px;
  line-height: 1.5;
  resize: vertical;
}
.interest-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.interest-field legend {
  padding: 0;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 740;
}
.interest-field > .form-help { margin-top: 6px; }
.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 11px;
}
.interest-option {
  display: flex;
  min-height: 42px;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  align-items: center;
  background: var(--surface-soft);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}
.interest-option:hover {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border-strong));
  color: var(--text);
}
.interest-option:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-soft));
  color: var(--text);
}
.interest-option:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.interest-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.form-help {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.form-field .errorlist,
.interest-field .errorlist,
.form-alert .errorlist {
  margin: 0;
  padding: 0;
  color: #ff9b9b;
  font-size: 11px;
  line-height: 1.5;
  list-style: none;
}
.form-alert {
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid #e86a6a6b;
  border-radius: 10px;
  background: #e86a6a12;
}
.form-submit {
  min-height: 46px;
  margin-top: 3px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: #10241e;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}
.form-submit:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}
.form-submit:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.auth-card-footer {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.auth-card-footer a { font-weight: 740; }
.request-confirmation h2 {
  max-width: 430px;
  font-size: clamp(38px, 4vw, 52px);
}
.request-confirmation .hero-actions { margin-top: 30px; }

.site-footer {
  padding: 42px 0 48px;
  border-top: 1px solid var(--border);
}
.footer-primary {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr);
  gap: 32px;
  align-items: center;
}
.footer-primary > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-legal p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}
.footer-legal a { color: inherit; }

@media (prefers-color-scheme: light) {
  :root {
    --bg: #e5e5df;
    --surface: #f1f0eb;
    --surface-raised: #f7f6f1;
    --surface-soft: #eae9e4;
    --text: #263038;
    --muted: #66737a;
    --muted-strong: #4f5c63;
    --border: #28303825;
    --border-strong: #2830383b;
    --accent: #14765c;
    --accent-strong: #0b6049;
    --accent-dark: #0d5f4b;
    --shadow: #29323825;
  }
  .site-header nav .request-link,
  .hero-actions .primary-action {
    color: #f3fff9;
  }
  .site-header nav .request-link:hover,
  .hero-actions .primary-action:hover {
    color: #fff;
  }
  .product-window {
    border-color: #2530384d;
  }
  .public-cta {
    background:
      linear-gradient(120deg, #14765c12, transparent 55%),
      var(--surface-raised);
  }
  .form-submit { color: #f3fff9; }
}

@media (max-width: 1020px) {
  .site-header nav > a:first-child { display: none; }
  .landing-hero,
  .about-hero { min-height: 650px; }
  .landing-hero-copy,
  .about-hero-copy {
    width: 78%;
    padding: 62px 52px;
  }
  .landing-hero-meta { display: none; }
  .product-intro,
  .about-origin > div,
  .privacy-promise,
  .public-cta,
  .audience-section {
    grid-template-columns: 1fr;
  }
  .product-chapter,
  .product-chapter-reverse,
  .about-product-evidence,
  .comparison-story {
    grid-template-columns: 1fr;
  }
  .product-chapter-reverse .product-copy { order: 0; }
  .product-copy { max-width: 660px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 0; }
  .principle-grid article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .principle-grid h2 { margin-top: 38px; }
  .comparison-visual,
  .comparison-visual > img { min-height: 500px; }
  .audience-columns { max-width: 700px; }
  .privacy-at-a-glance { grid-template-columns: repeat(2, 1fr); }
  .privacy-at-a-glance article:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .privacy-at-a-glance article:nth-child(4) { border-top: 1px solid var(--border); }
  .document-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 38px;
  }
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-context { min-height: 420px; }
  .auth-card {
    order: -1;
    min-height: 0;
    border-bottom: 1px solid var(--border);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-header { padding-inline: 16px; }
  .site-header nav a { padding-inline: 8px; }
  .site-header nav a[href="/privacy"],
  .site-header nav .sign-in-link { display: none; }
  .site-header nav .request-link { margin-left: 0; }
  main,
  .site-footer { width: min(var(--page-width), calc(100% - 30px)); }
  .landing-hero,
  .about-hero,
  .privacy-hero {
    min-height: 590px;
    margin-top: 15px;
    border-radius: 20px;
  }
  .landing-hero::after,
  .about-hero::after {
    background:
      linear-gradient(90deg, #10171dec, #10171d87),
      linear-gradient(0deg, #10171dfa 0%, transparent 70%);
  }
  .landing-hero-copy,
  .about-hero-copy {
    width: 100%;
    padding: 42px 26px;
    justify-content: flex-end;
  }
  .landing-hero-copy h1,
  .about-hero-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .landing-hero-copy > p:not(.eyebrow),
  .about-hero-copy .hero-copy { font-size: 16px; }
  .about-hero-note { display: none; }
  .product-intro { padding: 82px 0 54px; }
  .product-chapters { gap: 76px; padding-bottom: 84px; }
  .product-chapter,
  .about-product-evidence { gap: 30px; }
  .product-window { border-radius: 13px; }
  .product-window-bar { height: 32px; }
  .product-window-bar small { font-size: 8px; }
  .privacy-promise,
  .public-cta {
    margin-bottom: 70px;
    padding: 34px 24px;
    border-radius: 18px;
  }
  .privacy-promise dl { grid-template-columns: 1fr; }
  .privacy-promise dl div:nth-child(even) { border-left: 0; }
  .privacy-promise dl div + div { border-top: 1px solid var(--border); }
  .about-origin { padding-top: 82px; }
  .principle-grid article { padding: 26px; }
  .comparison-story { margin-bottom: 82px; }
  .comparison-visual,
  .comparison-visual > img { min-height: 390px; }
  .comparison-copy { padding: 38px 26px; }
  .audience-section { padding-bottom: 82px; }
  .audience-columns { grid-template-columns: 1fr; }
  .audience-columns article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .privacy-hero > div {
    min-height: 590px;
    padding: 42px 26px;
    justify-content: flex-end;
  }
  .privacy-at-a-glance { grid-template-columns: 1fr; margin: 50px 0; }
  .privacy-at-a-glance article { min-height: 0; }
  .privacy-at-a-glance article + article,
  .privacy-at-a-glance article:nth-child(4) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .document-layout {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
  }
  .document-layout aside { display: none; }
  .privacy-document section { padding: 28px 24px; }
  .privacy-document dl div { grid-template-columns: 1fr; gap: 3px; }
  .auth-shell {
    min-height: 0;
    margin-top: 15px;
    margin-bottom: 70px;
    border-radius: 20px;
  }
  .auth-context {
    min-height: 430px;
    padding: 42px 26px;
    justify-content: flex-end;
  }
  .auth-context h1 { font-size: clamp(42px, 12vw, 58px); }
  .auth-context > p:not(.eyebrow) { font-size: 15px; }
  .auth-features { margin-top: 30px; }
  .auth-features li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .auth-card {
    min-height: 0;
    padding: 42px 26px;
  }
  .footer-primary,
  .footer-legal { grid-template-columns: 1fr; }
  .footer-primary > p { grid-column: 1; grid-row: auto; }
  .footer-legal { gap: 14px; }
}

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