/* WomWay — site public. Direction « Le trajet lisible ».
   Statique, sombre, sans JavaScript ni ressource tierce. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #17121f;
  --bg-elevated: #1b1524;
  --surface: #211a2b;
  --surface-raised: #282032;
  --surface-soft: #30263d;
  --ink: #f4eef8;
  --muted: #c1b5cb;
  --subtle: #9f91aa;
  --border: #40344d;
  --border-strong: #59456c;
  --violet: #b784e6;
  --violet-strong: #d0adef;
  --violet-soft: #332443;
  --pink: #ee9cc3;
  --pink-soft: #3c2434;
  --calm: #55d3b2;
  --calm-text: #9ae8d1;
  --calm-bg: #183b31;
  --attention: #e1a45f;
  --attention-text: #f2c58e;
  --attention-bg: #3a2b18;
  --on-accent: #201629;
  --focus: #f5b7d7;
  --shadow-sm: 0 8px 24px rgba(7, 4, 10, 0.18);
  --shadow-lg: 0 28px 80px rgba(7, 4, 10, 0.42);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shell: 1180px;
  --text-measure: 68ch;
  --header-height: 73px;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main,
section,
header,
footer,
nav,
div {
  min-width: 0;
}

a {
  color: var(--violet-strong);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--violet);
  color: var(--on-accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--bg);
  font-weight: 750;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(89, 69, 108, 0.62);
  background: rgba(23, 18, 31, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 238, 248, 0.18);
  border-radius: 11px;
  background: var(--violet);
  color: var(--on-accent);
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  padding: 8px 12px;
  text-decoration: none;
  transition: color var(--ease), background-color var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 8px 15px;
  text-decoration: none;
  transition: border-color var(--ease), background-color var(--ease), transform var(--ease);
}

.header-cta:hover {
  border-color: var(--violet);
  background: var(--violet-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

/* Buttons and shared labels */

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 780;
  padding: 11px 20px;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--violet);
  color: var(--on-accent);
  box-shadow: 0 12px 28px rgba(183, 132, 230, 0.2);
}

.button-primary:hover {
  background: var(--violet-strong);
  color: var(--on-accent);
  box-shadow: 0 16px 32px rgba(183, 132, 230, 0.28);
}

.button-secondary {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--violet);
  background: var(--surface);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet-strong);
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.eyebrow,
.section-label,
.journey-kicker {
  color: var(--pink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(89, 69, 108, 0.52);
  background: var(--bg);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #15111c url("/route-map-background-2026.webp") right center / clamp(900px, 72vw, 1080px) auto no-repeat;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(900px, 72vw, 1080px);
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(23, 18, 31, 0.96) 5%, rgba(23, 18, 31, 0) 18%),
    linear-gradient(0deg, var(--bg) 0%, rgba(23, 18, 31, 0.96) 6%, rgba(23, 18, 31, 0) 22%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #17121f 0%, rgba(23, 18, 31, 0.96) 25%, rgba(23, 18, 31, 0.72) 43%, rgba(23, 18, 31, 0.16) 72%, rgba(23, 18, 31, 0) 100%),
    linear-gradient(180deg, rgba(23, 18, 31, 0.3), transparent 22%, transparent 78%, rgba(23, 18, 31, 0.42));
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 4vw, 58px);
  padding-block: clamp(66px, 7vw, 104px) 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 22px;
  border: 1px solid rgba(238, 156, 195, 0.24);
  border-radius: 999px;
  background: var(--pink-soft);
  padding: 7px 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero h1 {
  max-width: 13ch;
}

.hero-lead {
  max-width: 56ch;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note {
  margin: 15px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
}

.route-stage {
  position: relative;
  width: 100%;
  min-height: 650px;
  justify-self: end;
}

.route-preview-frame {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 4;
  width: min(84%, 560px);
  border-radius: 24px;
  box-shadow: 0 30px 64px rgba(7, 5, 10, 0.52), 0 0 0 1px rgba(205, 157, 239, 0.16);
  transform: translateX(-50%);
}

.route-preview {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 23px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--border);
}

.trust-strip p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 23px 28px;
}

.trust-strip p + p {
  border-left: 1px solid var(--border);
}

.trust-strip strong {
  font-size: 0.9rem;
}

.trust-strip span {
  color: var(--subtle);
  font-size: 0.78rem;
}

/* Main sections */

.section {
  padding-block: clamp(80px, 10vw, 132px);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 74px);
}

.section-heading .section-label,
.proof-intro .section-label,
.privacy-copy .section-label,
.beta-panel .section-label,
.faq-intro .section-label {
  display: block;
  margin-bottom: 14px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.split-heading h2 {
  max-width: 14ch;
}

.split-heading > p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-section {
  background: var(--bg);
}

.journey-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 29px;
  width: 2px;
  background: var(--border-strong);
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(240px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  min-height: 290px;
  border-top: 1px solid var(--border);
  padding-block: 42px;
}

.journey-item:last-child {
  border-bottom: 1px solid var(--border);
}

.journey-marker {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid var(--violet);
  border-radius: 50%;
  background: var(--bg);
  color: var(--violet-strong);
  font-weight: 850;
}

.journey-marker-arrival {
  border-color: var(--calm);
  color: var(--calm-text);
}

.journey-copy {
  grid-column: 2;
}

.journey-item:nth-child(even) .journey-copy {
  grid-column: 3;
}

.journey-item:nth-child(even) .product-scene {
  grid-column: 2;
}

.journey-copy h3 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.journey-copy p {
  max-width: 48ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.product-scene {
  grid-column: 3;
  min-height: 210px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 30px);
}

.scene-label {
  display: block;
  margin-bottom: 9px;
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
}

.search-field {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--violet);
  border-radius: 14px;
  background: var(--surface-raised);
  padding: 11px 14px;
}

.search-field > span {
  color: var(--violet-strong);
  font-size: 1.25rem;
}

.search-suggestion {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 15px 4px 0;
}

.search-suggestion small {
  color: var(--subtle);
}

.compare-scene {
  display: grid;
  gap: 11px;
}

.mini-route {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-raised);
  padding: 13px 15px;
}

.mini-route.selected {
  border-color: var(--violet);
}

.mini-route strong {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.05rem;
}

.mini-route span {
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-route em {
  color: var(--calm-text);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.mini-route:not(.selected) em {
  color: var(--attention-text);
}

.estimate {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 10px 0 0;
  border-radius: 9px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 730;
  line-height: 1.35;
  padding: 6px 9px;
}

.estimate-calm {
  background: var(--calm-bg);
  color: var(--calm-text);
}

.estimate-attention {
  background: var(--attention-bg);
  color: var(--attention-text);
}

.explain-scene .estimate {
  margin-top: 0;
}

.confidence-row,
.share-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.confidence-row {
  margin-top: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  padding-bottom: 13px;
}

.confidence-row strong {
  color: var(--ink);
}

.explain-scene ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.explain-scene li {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  padding-left: 19px;
}

.explain-scene li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--violet);
}

.share-head {
  border-radius: 12px;
  background: var(--calm-bg);
  color: var(--calm-text);
  font-size: 0.76rem;
  padding: 10px 12px;
}

.share-head strong {
  margin-right: auto;
}

.presence-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--calm);
  box-shadow: 0 0 0 5px rgba(85, 211, 178, 0.12);
}

.people-row {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.people-row > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.people-row p {
  display: grid;
  margin: 0 0 0 20px;
}

.people-row small {
  color: var(--subtle);
}

.stop-share {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 17px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 12px;
}

.arrival-scene {
  display: flex;
  align-items: center;
  gap: 20px;
  border-color: rgba(85, 211, 178, 0.34);
  background: var(--calm-bg);
}

.arrival-check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--calm);
  color: #10251f;
  font-size: 1.7rem;
  font-weight: 900;
}

.arrival-scene strong {
  color: var(--calm-text);
  font-size: 1.1rem;
}

.arrival-scene p {
  margin: 5px 0 0;
  color: var(--calm-text);
  font-size: 0.8rem;
}

/* Transparency proof */

.proof-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(56px, 9vw, 120px);
}

.proof-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.proof-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
}

.proof-intro > p:not(.section-label) {
  max-width: 46ch;
  margin: 22px 0;
  color: var(--muted);
}

.proof-list {
  margin: 0;
}

.proof-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr);
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-block: 26px;
}

.proof-list > div:last-child {
  border-bottom: 1px solid var(--border);
}

.proof-list dt {
  color: var(--ink);
  font-weight: 760;
}

.proof-list dd {
  margin: 0;
  color: var(--muted);
}

/* Privacy */

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.privacy-copy h2 {
  max-width: 12ch;
}

.privacy-copy > p:not(.section-label) {
  max-width: 58ch;
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  color: var(--muted);
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--calm-text);
  font-weight: 850;
}

.privacy-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.privacy-ring {
  position: absolute;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.privacy-ring-one {
  width: 230px;
  height: 230px;
}

.privacy-ring-two {
  width: 350px;
  height: 350px;
  opacity: 0.56;
}

.privacy-center {
  position: relative;
  z-index: 2;
  width: 170px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(85, 211, 178, 0.28);
  border-radius: 50%;
  background: var(--calm-bg);
  text-align: center;
}

.privacy-center .presence-dot {
  margin-bottom: 5px;
}

.privacy-center strong {
  color: var(--calm-text);
}

.privacy-center span:last-child {
  color: var(--calm-text);
  font-size: 0.78rem;
}

.privacy-timer {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-raised);
  padding: 12px 15px;
}

.privacy-timer strong {
  color: var(--violet-strong);
  font-variant-numeric: tabular-nums;
}

.privacy-timer span {
  color: var(--subtle);
  font-size: 0.68rem;
}

/* Beta */

.beta-section {
  padding-top: 28px;
}

.beta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px 70px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background: var(--violet-soft);
  padding: clamp(32px, 6vw, 68px);
}

.beta-panel h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.beta-panel > div:first-child > p:not(.section-label) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.beta-details {
  display: grid;
  gap: 0;
}

.beta-details p {
  display: grid;
  gap: 3px;
  margin: 0;
  border-top: 1px solid var(--border-strong);
  padding-block: 14px;
}

.beta-details p:last-child {
  border-bottom: 1px solid var(--border-strong);
}

.beta-details strong {
  font-size: 0.87rem;
}

.beta-details span {
  color: var(--muted);
  font-size: 0.82rem;
}

.beta-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.beta-action span {
  color: var(--subtle);
  font-size: 0.78rem;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(430px, 1.28fr);
  align-items: start;
  gap: clamp(52px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-intro h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-weight: 720;
  list-style: none;
  padding: 18px 48px 18px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--violet-strong);
  font-size: 1.05rem;
  font-weight: 450;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details[open] summary {
  color: var(--violet-strong);
}

.faq-list details p {
  max-width: 64ch;
  margin: -2px 0 22px;
  color: var(--muted);
  padding-right: 46px;
}

/* Secondary pages */

.breadcrumb {
  margin-bottom: 24px;
  color: var(--subtle);
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 7px;
  color: var(--border-strong);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.page-hero {
  padding-block: clamp(52px, 7vw, 90px) clamp(42px, 6vw, 72px);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 5.4vw, 4.65rem);
}

.page-hero .lead,
.page-lead {
  max-width: 66ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.page-meta,
.date {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 0.86rem;
}

.doc-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 76px;
  padding-bottom: clamp(80px, 10vw, 132px);
}

.toc {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 28px);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.toc > strong,
.toc > p,
.toc-title {
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ul,
.toc ol {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 6px 8px;
  text-decoration: none;
}

.toc a:hover {
  background: var(--surface);
  color: var(--ink);
}

.prose {
  max-width: var(--text-measure);
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 64px 0 18px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.16;
}

.prose h3 {
  margin: 34px 0 10px;
  font-size: 1.15rem;
}

.prose p,
.prose li,
.prose dd {
  color: var(--muted);
}

.prose p {
  margin-bottom: 16px;
}

.prose strong {
  color: var(--ink);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 8px;
}

.lead-card,
.lead,
.notice,
.card,
.legal-note {
  margin: 26px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 22px 24px;
}

.lead-card p:last-child,
.lead p:last-child,
.notice p:last-child,
.card p:last-child,
.legal-note p:last-child {
  margin-bottom: 0;
}

.notice-calm,
.calm {
  border-color: rgba(85, 211, 178, 0.3);
  background: var(--calm-bg);
}

.notice-calm,
.notice-calm p,
.calm,
.calm p {
  color: var(--calm-text);
}

.notice-attention {
  border-color: rgba(225, 164, 95, 0.35);
  background: var(--attention-bg);
}

.notice-attention,
.notice-attention p {
  color: var(--attention-text);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 20px;
}

.trust-card h2,
.trust-card h3 {
  margin: 0 0 8px;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}

.trust-card p:last-child {
  margin-bottom: 0;
}

.trust-flow,
.trust-steps,
.method-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: trust-step;
}

.trust-flow > *,
.trust-steps > *,
.method-flow > * {
  position: relative;
  min-height: 150px;
  border-top: 2px solid var(--violet);
  background: var(--surface);
  padding: 18px;
}

.trust-flow > * + *::before,
.trust-steps > * + *::before,
.method-flow > * + *::before {
  content: "→";
  position: absolute;
  top: 12px;
  left: -13px;
  color: var(--violet-strong);
}

.trust-flow strong,
.trust-steps strong,
.method-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  scrollbar-color: var(--border-strong) var(--surface);
}

.data-table,
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.data-table caption,
.prose table caption {
  color: var(--ink);
  font-weight: 750;
  padding: 15px 16px;
  text-align: left;
}

.data-table th,
.data-table td,
.prose table th,
.prose table td {
  border-top: 1px solid var(--border);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

.data-table th,
.prose table th {
  background: var(--surface-raised);
  color: var(--ink);
  font-weight: 720;
}

.data-table td,
.prose table td {
  color: var(--muted);
}

.steps-card {
  margin: 24px 0;
  border-left: 3px solid var(--violet);
  background: var(--surface);
  padding: 18px 22px;
}

.steps-card ol {
  margin-bottom: 0;
}

.not-found {
  min-height: calc(100vh - var(--header-height) - 280px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}

.not-found h1 {
  overflow-wrap: normal;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.not-found p {
  max-width: 55ch;
  color: var(--muted);
}

.not-found-links {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 26px;
}

.not-found-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.not-found-links a:last-child {
  border-bottom: 0;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding-block: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.8fr) minmax(200px, 0.8fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 38ch;
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer nav a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav a,
.footer-contact a {
  min-height: 32px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--ink);
}

/* Responsive */

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
    gap: 36px;
  }

  .route-stage {
    min-height: 610px;
  }

  .header-inner {
    gap: 16px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .journey-item {
    grid-template-columns: 52px minmax(220px, 0.82fr) minmax(320px, 1.18fr);
    gap: 26px;
  }

  .journey-list::before {
    left: 25px;
  }

  .journey-marker {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 96px;
  }

  .hero-backdrop {
    background-position: center;
    background-size: auto 100%;
  }

  .hero-backdrop::after {
    width: 100%;
  }

  .hero-section::after {
    background: linear-gradient(180deg, rgba(23, 18, 31, 0.96) 0%, rgba(23, 18, 31, 0.82) 38%, rgba(23, 18, 31, 0.28) 67%, rgba(23, 18, 31, 0.52) 100%);
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .route-stage {
    width: 100%;
    max-width: 760px;
    min-height: 620px;
    justify-self: center;
  }

  .split-heading,
  .proof-layout,
  .privacy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 64ch;
  }

  .journey-item,
  .journey-item:nth-child(even) {
    grid-template-columns: 52px 1fr;
    gap: 18px 24px;
  }

  .journey-copy,
  .journey-item:nth-child(even) .journey-copy {
    grid-column: 2;
  }

  .product-scene,
  .journey-item:nth-child(even) .product-scene {
    grid-column: 2;
  }

  .proof-layout,
  .privacy-layout,
  .faq-layout {
    gap: 48px;
  }

  .proof-intro,
  .faq-intro {
    position: static;
  }

  .privacy-visual {
    min-height: 420px;
  }

  .doc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .toc {
    position: static;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 16px;
  }

  .toc ul,
  .toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 102px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding-block: 9px 7px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.8rem;
  }

  .header-cta {
    min-height: 38px;
    font-size: 0.75rem;
    padding: 7px 11px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 2px;
    margin: 0;
  }

  .site-nav a {
    min-height: 34px;
    font-size: 0.76rem;
    padding: 5px 9px;
  }

  .hero {
    gap: 36px;
    padding-block: 44px 58px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.8vw, 4rem);
  }

  .hero-lead {
    margin-block: 20px 24px;
    font-size: 1rem;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .route-stage {
    min-height: 500px;
  }

  .route-preview-frame {
    left: 50%;
    bottom: 16px;
    width: min(410px, calc(100% + 36px));
    transform: translateX(-50%);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    padding: 16px 4px;
  }

  .trust-strip p + p {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding-block: 76px;
  }

  .journey-item,
  .journey-item:nth-child(even) {
    grid-template-columns: 42px 1fr;
    gap: 14px 18px;
    min-height: 0;
    padding-block: 34px;
  }

  .journey-list::before {
    left: 20px;
  }

  .journey-marker {
    width: 42px;
    height: 42px;
  }

  .journey-copy,
  .journey-item:nth-child(even) .journey-copy,
  .product-scene,
  .journey-item:nth-child(even) .product-scene {
    grid-column: 2;
  }

  .product-scene {
    min-height: 0;
    padding: 18px;
  }

  .proof-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-visual {
    min-height: 360px;
  }

  .privacy-ring-one {
    width: 190px;
    height: 190px;
  }

  .privacy-ring-two {
    width: 290px;
    height: 290px;
  }

  .privacy-center {
    width: 145px;
    min-height: 145px;
  }

  .privacy-timer {
    right: 14px;
    bottom: 14px;
  }

  .beta-panel {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 28px 22px;
  }

  .beta-action {
    grid-column: 1;
    align-items: stretch;
    flex-direction: column;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .page-hero {
    padding-block: 46px 38px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .doc-layout {
    padding-bottom: 76px;
  }

  .toc ul,
  .toc ol {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .trust-flow,
  .trust-steps,
  .method-flow {
    grid-template-columns: 1fr;
  }

  .trust-flow > * + *::before,
  .trust-steps > * + *::before,
  .method-flow > * + *::before {
    content: "↓";
    top: -19px;
    left: 18px;
  }

  .not-found {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .table-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table tbody th[scope="row"],
  .data-table td,
  .prose table,
  .prose table tbody,
  .prose table tr,
  .prose table tbody th[scope="row"],
  .prose table td {
    display: block;
    width: 100%;
  }

  .data-table thead,
  .prose table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .data-table caption,
  .prose table caption {
    display: block;
    margin-bottom: 10px;
    padding: 0;
  }

  .data-table tr,
  .prose table tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
  }

  .data-table td,
  .prose table td {
    display: grid;
    grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid var(--border);
    padding: 11px 13px;
  }

  .data-table td:first-child,
  .prose table td:first-child {
    border-top: 0;
  }

  .data-table tbody th[scope="row"],
  .prose table tbody th[scope="row"] {
    border: 0;
    background: var(--surface-raised);
    color: var(--ink);
    padding: 12px 13px;
    text-align: left;
  }

  .data-table td::before,
  .prose table td::before {
    content: attr(data-label);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 760;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-nav a {
    font-size: 0.72rem;
    padding-inline: 7px;
  }

  .header-cta {
    font-size: 0.7rem;
  }

  .hero .eyebrow {
    font-size: 0.69rem;
  }

  .route-stage {
    min-height: 470px;
  }

  .mini-route {
    grid-template-columns: 58px 1fr;
    padding-inline: 12px;
  }

  .share-head > span:last-child {
    display: none;
  }

  .people-row p {
    margin-left: 15px;
  }

  .data-table td,
  .prose table td {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .brand-mark,
  .button,
  .journey-marker,
  .route-preview-frame,
  .product-scene,
  .privacy-visual {
    border: 1px solid CanvasText;
  }

  .presence-dot,
  .arrival-check {
    forced-color-adjust: none;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .toc,
  .skip-link,
  .header-cta,
  .button {
    display: none !important;
  }

  .shell,
  .doc-layout,
  .prose {
    width: 100%;
    max-width: none;
  }

  .doc-layout {
    display: block;
  }

  h1,
  h2,
  h3,
  p,
  li,
  td,
  th,
  a {
    color: #111 !important;
  }
}
