@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat-regular.woff2?v=e06ab11e4925") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat-medium.woff2?v=bcf93bd3f2cb") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat-semibold.woff2?v=aa81e02010fa") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat-bold.woff2?v=d4741da7b097") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #101b4d;
  --navy-2: #172769;
  --blue: #3157e4;
  --sky: #75cfff;
  --sky-soft: #e7f6ff;
  --pink: #ff5a9f;
  --pink-deep: #b91f62;
  --pink-soft: #ffd5e7;
  --blush: #fff0f7;
  --violet: #8c63e8;
  --paper: #fcfbff;
  --paper-2: #f3f5ff;
  --surface: #ffffff;
  --ink: #181a2f;
  --muted: #565b75;
  --soft: #72778f;
  --ink-muted: var(--muted);
  --ink-soft: var(--soft);
  --primary: var(--blue);
  --line: #e1e4f4;
  --good: #116246;
  --good-soft: #dcf7ed;
  --warning: #7a5200;
  --warning-soft: #fff0ca;
  --focus: #3157e4;
  --shadow: 0 24px 70px rgba(16, 27, 77, .16);
  --shadow-soft: 0 12px 34px rgba(16, 27, 77, .09);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --container: 1240px;
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 87, 228, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 87, 228, .025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

button,
a { -webkit-tap-highlight-color: transparent; }

button,
input { font: inherit; }

button { border: 0; }

a { color: inherit; }

img { max-width: 100%; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 { text-wrap: balance; }

p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy);
  transform: translateY(-150%);
}

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

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

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

.preview-ribbon {
  background: var(--pink);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 0;
  width: 100%;
  color: #fff;
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 12px 14px 12px 20px;
  background: rgba(12, 22, 67, .62);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 8px;
  width: 21px;
  height: 21px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.brand-mark::before { left: 1px; color: var(--pink); }
.brand-mark::after { right: 1px; color: var(--sky); }

.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -.04em; }
.brand-mode { color: var(--pink-soft); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.desktop-nav a:hover { color: #fff; }

.nav-home {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  padding: 180px 0 104px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 90, 159, .32), transparent 28%),
    radial-gradient(circle at 91% 24%, rgba(117, 207, 255, .27), transparent 28%),
    radial-gradient(circle at 64% 92%, rgba(140, 99, 232, .22), transparent 32%),
    linear-gradient(135deg, #0b143e 0%, var(--navy) 42%, #243c9b 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -220px;
  width: 66vw;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  content: "";
}

.hero .eyebrow { color: var(--pink-soft); }

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(52px, 5.65vw, 82px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .91;
}

.hero h1 em {
  display: block;
  padding-bottom: .08em;
  background: linear-gradient(92deg, var(--pink) 3%, #ff9dc6 38%, var(--sky) 86%);
  background-clip: text;
  color: transparent;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #dce8ff;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: var(--navy); box-shadow: 0 16px 40px rgba(255, 90, 159, .28); }
.button-primary:hover { background: #ff82b5; }
.button-secondary { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .06); color: #fff; }
.button-secondary:hover { background: rgba(255, 255, 255, .12); }
.button-blue { background: var(--blue); color: #fff; box-shadow: 0 16px 36px rgba(49, 87, 228, .2); }
.button-blue:hover { background: #2549ca; }
.button-light { border-color: var(--line); background: var(--surface); color: var(--navy); }
.button-small { min-height: 46px; padding: 12px 18px; font-size: 13px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: #dce8ff;
  font-size: 12px;
  font-weight: 600;
}

.hero-facts li::before { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); content: ""; box-shadow: 0 0 0 5px rgba(255,90,159,.12); }
.hero-facts li:nth-child(even)::before { background: var(--sky); box-shadow: 0 0 0 5px rgba(117,207,255,.12); }

.hero-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: #aebde6;
  font-size: 12px;
}

.signal-stage {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 90, 159, .22), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(117, 207, 255, .22), transparent 30%),
    rgba(7, 14, 47, .42);
  box-shadow: 0 38px 90px rgba(0, 0, 0, .22);
  isolation: isolate;
}

.signal-stage::before,
.signal-stage::after {
  position: absolute;
  z-index: -1;
  top: 98px;
  width: 43%;
  height: 230px;
  border-bottom: 4px solid;
  content: "";
  opacity: .82;
}

.signal-stage::before {
  left: 8%;
  border-color: var(--pink);
  border-radius: 0 0 72% 0;
  transform: rotate(12deg);
  animation: pink-signal .8s ease-out both;
}

.signal-stage::after {
  right: 8%;
  border-color: var(--sky);
  border-radius: 0 0 0 72%;
  transform: rotate(-12deg);
  animation: sky-signal .8s .08s ease-out both;
}

.signal-label {
  position: absolute;
  top: 47px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #eef4ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-label::before {
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.signal-label-you { left: 36px; color: var(--pink-soft); }
.signal-label-partner { right: 36px; color: #c9eeff; }

.sample-result {
  position: absolute;
  z-index: 2;
  top: 176px;
  right: 42px;
  left: 42px;
  min-height: 408px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 32px 72px rgba(0, 0, 0, .25);
  color: var(--ink);
  animation: reveal-card .6s .34s ease-out both;
  backdrop-filter: blur(18px);
}

.sample-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.sample-result-kicker { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sample-result-badge { border-radius: 999px; padding: 7px 10px; background: var(--good-soft); color: var(--good); font-size: 10px; font-weight: 700; text-transform: uppercase; }

.score-summary {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
  grid-template-columns: 136px 1fr;
}

.score-ring {
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--pink) 0 52%, var(--sky) 52% 84%, #e6e9f5 84% 100%);
}

.score-ring-inner {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

.score-ring strong { display: block; color: var(--navy); font-size: 37px; letter-spacing: -.06em; line-height: 1; }
.score-ring span { display: block; margin-top: 4px; color: var(--soft); font-size: 9px; font-weight: 600; line-height: 1.25; }
.score-copy h2 { margin-bottom: 9px; color: var(--navy); font-size: 26px; letter-spacing: -.04em; line-height: 1.08; }
.score-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.axis-list { display: grid; gap: 13px; }
.axis-row { display: grid; align-items: center; gap: 10px; grid-template-columns: 116px 1fr 32px; color: var(--muted); font-size: 11px; font-weight: 600; }
.axis-track { height: 8px; overflow: hidden; border-radius: 999px; background: #e9ecf7; }
.axis-fill { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--violet), var(--sky)); }
.axis-fill-100 { width: 100%; }
.axis-fill-75 { width: 75%; }
.axis-fill-50 { width: 50%; }
.axis-row b { color: var(--navy); text-align: right; }

.free-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.free-strip-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: 1.15fr .85fr;
}

.free-strip-copy { padding: 30px 34px; }
.free-strip-copy span { color: var(--pink-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.free-strip-copy h2 { margin: 7px 0 0; color: var(--navy); font-size: clamp(24px, 3vw, 38px); letter-spacing: -.045em; line-height: 1.12; }
.free-strip-points {
  display: grid;
  align-items: center;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.free-strip-points div { display: grid; min-height: 100%; place-content: center; padding: 18px; background: var(--paper-2); text-align: center; }
.free-strip-points strong { display: block; color: var(--navy); font-size: 22px; letter-spacing: -.04em; }
.free-strip-points span { color: var(--soft); font-size: 11px; font-weight: 600; }

.section { padding: 126px 0; }
.section-tinted { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.section-dark { background: var(--navy); color: #fff; }

.section-head {
  display: grid;
  max-width: 820px;
  margin-bottom: 54px;
}

.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-self: center; }
.section-head h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; letter-spacing: -.06em; line-height: .98; }
.section-head p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #cbd8fa; }

.demo-grid {
  display: grid;
  align-items: start;
  gap: 58px;
  grid-template-columns: .78fr 1.22fr;
}

.demo-copy { position: sticky; top: 110px; }
.demo-copy h2 { margin-bottom: 22px; color: var(--navy); font-size: clamp(40px, 5vw, 66px); letter-spacing: -.06em; line-height: 1; }
.demo-copy p { max-width: 520px; color: var(--muted); font-size: 18px; }
.demo-legend { display: grid; gap: 12px; margin-top: 30px; }
.demo-legend div { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 13px; font-weight: 600; }
.legend-dot { width: 13px; height: 13px; border-radius: 50%; }
.legend-pink { background: var(--pink); }
.legend-sky { background: var(--sky); }

.demo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.demo-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.demo-step { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.demo-status { border-radius: 999px; padding: 7px 10px; background: var(--blush); color: var(--pink-deep); font-size: 10px; font-weight: 700; }
.demo-card h3 { max-width: 690px; margin-bottom: 30px; color: var(--navy); font-size: clamp(25px, 3vw, 36px); letter-spacing: -.04em; line-height: 1.15; }
.demo-scale-labels { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 10px; color: var(--soft); font-size: 11px; font-weight: 600; }
.demo-options { display: grid; gap: 10px; grid-template-columns: repeat(5, 1fr); }
.demo-option {
  display: grid;
  min-width: 52px;
  min-height: 68px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.demo-option:hover { border-color: var(--pink); transform: translateY(-2px); }
.demo-option[aria-checked="true"] { border-color: var(--pink); background: var(--pink); box-shadow: 0 12px 26px rgba(255, 90, 159, .2); }
.importance-row { display: flex; align-items: center; gap: 10px; margin: 20px 0 0; color: var(--muted); font-size: 13px; font-weight: 600; }
.importance-row input { width: 20px; height: 20px; accent-color: var(--pink); }

.demo-result {
  display: none;
  margin-top: 28px;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(135deg, var(--blush), var(--sky-soft));
}

.demo-result.is-visible { display: block; animation: reveal-card .34s ease-out both; }
.demo-result-pairs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.answer-chip { border: 1px solid rgba(16, 27, 77, .1); border-radius: 999px; padding: 8px 12px; background: rgba(255, 255, 255, .75); color: var(--navy); font-size: 11px; font-weight: 700; }
.answer-chip-you { box-shadow: inset 4px 0 0 var(--pink); }
.answer-chip-partner { box-shadow: inset 4px 0 0 var(--sky); }
.demo-result h4 { margin: 0 0 6px; color: var(--navy); font-size: 22px; letter-spacing: -.035em; }
.demo-result p { margin: 0; color: var(--muted); font-size: 13px; }
.demo-percent { display: block; margin-bottom: 8px; color: var(--navy); font-size: 34px; letter-spacing: -.06em; line-height: 1; }
.demo-reset { margin-top: 17px; padding: 0; background: transparent; color: var(--blue); cursor: pointer; font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.depth-path {
  position: relative;
  display: grid;
  gap: 28px;
}

.depth-path::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--pink), var(--violet), var(--sky));
  content: "";
  opacity: .35;
}

.depth-card {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  grid-template-columns: .78fr 1.22fr;
}

.depth-card:nth-child(even) { grid-template-columns: 1.22fr .78fr; }
.depth-card:nth-child(even) .depth-copy { order: 2; }
.depth-card:nth-child(even) .depth-visual { order: 1; }

.depth-copy { display: grid; align-content: center; min-height: 480px; padding: clamp(34px, 5vw, 66px); }
.depth-number { margin-bottom: 24px; color: var(--soft); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.depth-price { display: inline-flex; width: max-content; margin-bottom: 20px; border-radius: 999px; padding: 8px 12px; background: var(--good-soft); color: var(--good); font-size: 12px; font-weight: 700; }
.depth-card-map .depth-price { background: var(--pink-soft); color: var(--pink-deep); }
.depth-card-talk .depth-price { background: var(--sky-soft); color: var(--navy); }
.depth-copy h3 { margin-bottom: 15px; color: var(--navy); font-size: clamp(32px, 4vw, 52px); letter-spacing: -.055em; line-height: 1.02; }
.depth-copy > p { margin-bottom: 24px; color: var(--muted); font-size: 16px; }
.feature-list { display: grid; gap: 12px; margin: 0 0 30px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 27px; color: var(--muted); font-size: 13px; font-weight: 500; }
.feature-list li::before { position: absolute; top: 7px; left: 0; width: 10px; height: 10px; border: 3px solid var(--pink); border-radius: 50%; content: ""; }
.depth-card-talk .feature-list li::before { border-color: var(--sky); }

.depth-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper-2);
}

.depth-card-free .depth-visual { background: linear-gradient(145deg, var(--navy), #2a45aa); }
.depth-card-map .depth-visual { background: linear-gradient(145deg, var(--blush), var(--pink-soft)); }
.depth-card-talk .depth-visual { background: linear-gradient(145deg, var(--sky-soft), #dce6ff); }

.mini-score {
  width: min(100%, 410px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .17);
}

.mini-score-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.mini-score-label { color: #cbd8fa; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mini-score-value { margin: 8px 0 20px; font-size: 66px; font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.mini-score-value small { font-size: 22px; letter-spacing: -.03em; }
.mini-score h4 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.04em; }
.mini-score p { margin: 0; color: #dce8ff; font-size: 12px; }
.mini-score-pulse { width: 86px; height: 86px; border: 10px solid rgba(255, 255, 255, .12); border-top-color: var(--pink); border-right-color: var(--sky); border-radius: 50%; transform: rotate(20deg); }

.map-window {
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 28px 66px rgba(124, 43, 84, .15);
}

.window-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.window-top strong { color: var(--navy); font-size: 15px; }
.window-top span { border-radius: 999px; padding: 6px 9px; background: var(--navy); color: #fff; font-size: 9px; font-weight: 700; }
.map-headings { display: grid; gap: 10px; margin-bottom: 12px; grid-template-columns: 1fr 1fr; }
.map-heading { border-radius: 14px; padding: 10px 12px; font-size: 10px; font-weight: 700; text-align: center; }
.map-heading-you { background: var(--pink-soft); color: var(--pink-deep); }
.map-heading-partner { background: var(--sky-soft); color: var(--navy); }
.map-rows { display: grid; gap: 10px; }
.map-row { display: grid; align-items: center; gap: 8px; grid-template-columns: 1fr 82px 1fr; }
.map-view { min-height: 37px; border: 1px solid var(--line); border-radius: 12px; padding: 8px; background: #fff; color: var(--muted); font-size: 9px; font-weight: 600; }
.map-state { border-radius: 999px; padding: 7px 5px; font-size: 8px; font-weight: 700; text-align: center; text-transform: uppercase; }
.map-state-good { background: var(--good-soft); color: var(--good); }
.map-state-talk { background: var(--warning-soft); color: var(--warning); }

.talk-window {
  width: min(100%, 430px);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 32px;
  padding: 30px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 66px rgba(35, 71, 116, .15);
}

.talk-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.talk-progress span { height: 5px; flex: 1; border-radius: 999px; background: #dce2f4; }
.talk-progress span:first-child,
.talk-progress span:nth-child(2) { background: linear-gradient(90deg, var(--pink), var(--sky)); }
.talk-window small { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.talk-window h4 { margin: 12px 0 10px; color: var(--navy); font-size: 25px; letter-spacing: -.04em; line-height: 1.12; }
.talk-window p { color: var(--muted); font-size: 13px; }
.talk-prompt { margin-top: 22px; border-left: 4px solid var(--sky); border-radius: 0 16px 16px 0; padding: 16px 18px; background: var(--sky-soft); color: var(--navy); font-size: 13px; font-weight: 600; }
.talk-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.talk-meta span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 9px; color: var(--muted); font-size: 9px; font-weight: 700; }

.bundle-panel {
  display: grid;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 62px);
  background:
    radial-gradient(circle at 2% 15%, rgba(255, 90, 159, .28), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(117, 207, 255, .23), transparent 27%),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr auto;
}

.bundle-panel span { color: var(--pink-soft); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.bundle-panel h3 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.055em; line-height: 1.02; }
.bundle-panel p { max-width: 690px; margin: 0; color: #cbd8fa; }
.bundle-price { display: grid; min-width: 190px; text-align: right; }
.bundle-price strong { font-size: 54px; letter-spacing: -.07em; line-height: 1; }
.bundle-price small { color: #cbd8fa; font-size: 11px; }
.bundle-price .button { margin-top: 18px; }

.steps-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.step-card { position: relative; min-height: 290px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; padding: 28px; background: var(--surface); }
.step-card::after { position: absolute; right: -34px; bottom: -54px; width: 150px; height: 150px; border: 28px solid var(--paper-2); border-radius: 50%; content: ""; }
.step-index { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; }
.step-card:nth-child(2) .step-index { background: var(--pink); color: var(--navy); }
.step-card:nth-child(3) .step-index { background: var(--sky); color: var(--navy); }
.step-card:nth-child(4) .step-index { background: var(--violet); }
.step-card h3 { position: relative; z-index: 1; margin: 55px 0 12px; color: var(--navy); font-size: 23px; letter-spacing: -.04em; }
.step-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; }

.trust-panel {
  display: grid;
  align-items: center;
  gap: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 90, 159, .2), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(117, 207, 255, .2), transparent 30%),
    #0d1744;
  grid-template-columns: .8fr 1.2fr;
}

.trust-copy h2 { margin-bottom: 16px; font-size: clamp(36px, 5vw, 62px); letter-spacing: -.06em; line-height: 1; }
.trust-copy p { margin: 0; color: #cbd8fa; }
.trust-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; background: rgba(255, 255, 255, .12); }
.trust-item { display: grid; gap: 3px; padding: 20px 22px; background: rgba(255, 255, 255, .055); }
.trust-item strong { color: #fff; font-size: 13px; }
.trust-item span { color: #bfcdf1; font-size: 11px; }

.faq-list { display: grid; max-width: 920px; gap: 12px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 6px 20px rgba(16, 27, 77, .045); }
.faq-list summary { position: relative; padding: 22px 62px 22px 24px; color: var(--navy); cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 24px; color: var(--blue); content: "+"; font-size: 24px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: 14px; }

.closing { padding: 80px 0 110px; }
.closing-card {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  padding: clamp(44px, 8vw, 90px);
  background:
    radial-gradient(circle at 2% 5%, rgba(255, 90, 159, .4), transparent 27%),
    radial-gradient(circle at 95% 90%, rgba(117, 207, 255, .35), transparent 28%),
    linear-gradient(135deg, var(--navy), #273e9d);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.closing-card::before,
.closing-card::after { position: absolute; width: 260px; height: 260px; border: 42px solid rgba(255, 255, 255, .07); border-radius: 50%; content: ""; }
.closing-card::before { top: -130px; left: -80px; }
.closing-card::after { right: -100px; bottom: -150px; }
.closing-card .eyebrow { position: relative; z-index: 1; justify-self: center; color: var(--pink-soft); }
.closing-card h2 { position: relative; z-index: 1; max-width: 900px; margin: 0 auto 20px; font-size: clamp(42px, 6vw, 76px); letter-spacing: -.065em; line-height: .98; }
.closing-card p { position: relative; z-index: 1; max-width: 690px; margin: 0 auto 30px; color: #dce8ff; font-size: 17px; }
.closing-actions { position: relative; z-index: 1; justify-content: center; }

.site-footer { border-top: 1px solid var(--line); padding: 38px 0 120px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer .brand { color: var(--navy); }
.site-footer .brand-mode { color: var(--pink-deep); }
.footer-copy { max-width: 610px; margin: 15px 0 0; color: var(--soft); font-size: 11px; }
.legal-details { margin: 10px 0 0; color: #8b8b8b; font-size: 12px; line-height: 1.5; }
.legal-details a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 12px; font-weight: 600; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

.mobile-cta { display: none; }

.preview-dialog {
  width: min(calc(100% - 32px), 560px);
  border: 0;
  border-radius: 30px;
  padding: 0;
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .35);
  color: var(--ink);
}

.preview-dialog::backdrop { background: rgba(4, 9, 31, .72); backdrop-filter: blur(6px); }
.dialog-inner { position: relative; padding: 38px; }
.dialog-close { position: absolute; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--paper-2); color: var(--navy); cursor: pointer; font-size: 22px; }
.dialog-kicker { display: inline-block; margin-bottom: 15px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.preview-dialog h2 { margin-bottom: 14px; color: var(--navy); font-size: 31px; letter-spacing: -.045em; line-height: 1.1; }
.preview-dialog p { color: var(--muted); font-size: 14px; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.library-section {
  background:
    radial-gradient(circle at 0 12%, rgba(255, 90, 159, .1), transparent 28%),
    radial-gradient(circle at 100% 86%, rgba(117, 207, 255, .13), transparent 30%),
    var(--surface);
}

.library-metrics {
  display: grid;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.library-metrics div {
  display: grid;
  min-height: 130px;
  align-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
}

.library-metrics strong { color: var(--navy); font-size: 30px; line-height: 1.15; }
.library-metrics span { margin-top: 6px; color: var(--soft); font-size: 12px; font-weight: 600; line-height: 1.55; }

.library-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.library-track {
  --track-accent: var(--pink);
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 28px 23px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(16, 27, 77, .065);
}

.library-track::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--track-accent);
  content: "";
}

.library-track-pink { --track-accent: var(--pink); }
.library-track-blue { --track-accent: var(--blue); }
.library-track-violet { --track-accent: var(--violet); }
.library-track-sky { --track-accent: var(--sky); }
.library-track-navy { --track-accent: var(--navy); }
.library-track-number { color: var(--track-accent); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.library-track h3 { margin: 18px 0 22px; color: var(--navy); font-size: 22px; letter-spacing: -.015em; line-height: 1.25; }
.library-track ol { display: grid; gap: 13px; margin: 0; padding-left: 22px; color: var(--muted); }
.library-track li { padding-left: 3px; font-size: 12px; font-weight: 500; line-height: 1.6; }
.library-track li::marker { color: var(--track-accent); font-weight: 700; }

.practice-offer {
  display: grid;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  padding: 48px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 90, 159, .28), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(117, 207, 255, .24), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow);
  color: #fff;
  grid-template-columns: 1fr auto;
}

.practice-offer-kicker { color: var(--pink-soft); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.practice-offer h3 { margin: 10px 0 13px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.025em; line-height: 1.12; }
.practice-offer p { max-width: 720px; margin: 0; color: #d9e4ff; line-height: 1.72; }
.practice-offer-price { display: grid; min-width: 280px; justify-items: end; }
.practice-offer-price strong { font-size: 54px; letter-spacing: -.03em; line-height: 1.1; }
.practice-offer-price span { margin: 5px 0 16px; color: #cbd8fa; font-size: 11px; font-weight: 600; }

.safety-note {
  display: grid;
  align-items: start;
  gap: 16px;
  margin-top: 18px;
  border: 1px solid #f2cf72;
  border-radius: 22px;
  padding: 22px 26px;
  background: #fff8e5;
  color: #553800;
  grid-template-columns: auto 1fr;
}

.safety-note strong { font-size: 14px; }
.safety-note p { margin: 0; font-size: 13px; line-height: 1.68; }

.method-section { padding-top: 40px; background: var(--paper-2); }
.method-shell {
  border-radius: var(--radius-lg);
  padding: 68px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 90, 159, .26), transparent 27%),
    radial-gradient(circle at 100% 100%, rgba(117, 207, 255, .2), transparent 30%),
    linear-gradient(145deg, #0b143e, var(--navy-2));
  box-shadow: var(--shadow);
  color: #fff;
}

.method-intro { max-width: 930px; }
.method-intro .eyebrow { color: var(--pink-soft); }
.method-intro h2 { margin-bottom: 22px; font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -.025em; line-height: 1.08; }
.method-intro p { max-width: 800px; margin: 0; color: #d9e4ff; font-size: 18px; line-height: 1.75; }
.method-grid { display: grid; gap: 14px; margin-top: 42px; grid-template-columns: repeat(3, 1fr); }
.method-grid article { border: 1px solid rgba(255, 255, 255, .13); border-radius: 24px; padding: 28px; background: rgba(255, 255, 255, .065); }
.method-grid article > span { color: var(--sky); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.method-grid h3 { margin: 16px 0 10px; font-size: 21px; letter-spacing: -.012em; line-height: 1.28; }
.method-grid p { margin: 0; color: #cbd8fa; font-size: 13px; line-height: 1.7; }
.method-evidence { display: grid; align-items: end; gap: 32px; margin-top: 28px; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 28px; grid-template-columns: 1fr minmax(250px, .45fr); }
.method-evidence strong { font-size: 14px; }
.method-evidence p { max-width: 760px; margin: 8px 0 0; color: #cbd8fa; font-size: 12px; line-height: 1.7; }
.method-evidence nav { display: grid; justify-items: start; gap: 8px; }
.method-evidence a { color: var(--sky); font-size: 12px; font-weight: 600; text-underline-offset: 4px; }

/* Montserrat needs more air than the first preview used. Keep headings compact,
   but never at the expense of legibility on desktop or mobile. */
body { line-height: 1.72; letter-spacing: .002em; }
.brand-copy { line-height: 1.16; }
.brand-name { letter-spacing: -.012em; }
.hero h1 { letter-spacing: -.035em; line-height: 1.03; }
.hero-lead { line-height: 1.72; }
.score-ring strong { letter-spacing: -.025em; }
.score-copy h2 { letter-spacing: -.018em; line-height: 1.2; }
.score-copy p { line-height: 1.68; }
.free-strip-copy h2 { letter-spacing: -.02em; line-height: 1.2; }
.section-head h2 { letter-spacing: -.025em; line-height: 1.08; }
.section-head p { line-height: 1.72; }
.demo-copy h2 { letter-spacing: -.025em; line-height: 1.1; }
.demo-copy p { line-height: 1.72; }
.demo-card h3 { letter-spacing: -.018em; line-height: 1.26; }
.demo-result h4 { letter-spacing: -.012em; line-height: 1.28; }
.demo-result p { line-height: 1.68; }
.demo-percent { letter-spacing: -.025em; }
.depth-copy h3 { letter-spacing: -.025em; line-height: 1.12; }
.depth-copy > p,
.feature-list li { line-height: 1.7; }
.mini-score-value { letter-spacing: -.035em; }
.mini-score h4 { letter-spacing: -.015em; line-height: 1.24; }
.talk-window h4 { letter-spacing: -.018em; line-height: 1.24; }
.talk-window p { line-height: 1.68; }
.bundle-panel h3 { letter-spacing: -.025em; line-height: 1.12; }
.bundle-panel p { line-height: 1.72; }
.bundle-price strong { letter-spacing: -.03em; }
.step-card h3 { letter-spacing: -.015em; line-height: 1.26; }
.step-card p { line-height: 1.68; }
.trust-copy h2 { letter-spacing: -.025em; line-height: 1.1; }
.trust-copy p,
.trust-item span { line-height: 1.7; }
.closing-card h2 { letter-spacing: -.03em; line-height: 1.08; }
.closing-card p { line-height: 1.72; }
.preview-dialog h2 { letter-spacing: -.018em; line-height: 1.2; }
.preview-dialog p { line-height: 1.68; }

.privacy-section { background: #f5f8ff; }
.privacy-shell { display: grid; gap: 34px; }
.privacy-copy { max-width: 880px; }
.privacy-copy h2 { margin: 14px 0 18px; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.025em; line-height: 1.08; }
.privacy-copy p { max-width: 820px; margin: 0; color: var(--ink-muted); font-size: 17px; line-height: 1.72; }
.privacy-points { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.privacy-points article { border: 1px solid var(--line); border-radius: 22px; padding: 24px; background: #fff; }
.privacy-points strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 15px; }
.privacy-points p { margin: 0; color: var(--ink-muted); font-size: 13px; line-height: 1.68; }
.privacy-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.privacy-actions [role="status"] { color: var(--ink-muted); font-size: 12px; }
.privacy-legal { max-width: 920px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.privacy-legal a { color: var(--primary); text-underline-offset: 3px; }
.analytics-consent { position: fixed; z-index: 90; right: 18px; bottom: 18px; display: grid; width: min(560px, calc(100% - 36px)); gap: 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 24px; padding: 22px; background: rgba(13, 23, 68, .97); box-shadow: 0 24px 70px rgba(0, 0, 0, .3); color: #fff; backdrop-filter: blur(18px); }
.analytics-consent[hidden] { display: none; }
.analytics-consent strong { display: block; margin-bottom: 7px; font-size: 16px; }
.analytics-consent p { margin: 0; color: #d9e4ff; font-size: 12px; line-height: 1.58; }
.analytics-consent a { display: inline-block; margin-top: 8px; color: var(--sky); font-size: 11px; text-underline-offset: 3px; }
.analytics-consent-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.analytics-consent .button { min-height: 44px; padding: 11px 16px; font-size: 11px; }

@keyframes pink-signal {
  from { opacity: 0; transform: translateX(-90px) rotate(12deg); }
  to { opacity: .82; transform: translateX(0) rotate(12deg); }
}

@keyframes sky-signal {
  from { opacity: 0; transform: translateX(90px) rotate(-12deg); }
  to { opacity: .82; transform: translateX(0) rotate(-12deg); }
}

@keyframes reveal-card {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-grid { gap: 46px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .signal-stage { width: min(680px, 100%); min-height: 610px; margin-inline: auto; }
  .free-strip-shell { grid-template-columns: 1fr; }
  .depth-copy { min-height: 430px; }
  .depth-visual { min-height: 430px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { top: 34px; }
  .nav-shell { min-height: 66px; border-radius: 20px; padding: 10px 12px 10px 15px; }
  .desktop-nav a:not(.nav-home) { display: none; }
  .brand-mode { display: none; }
  .hero { padding: 148px 0 90px; }
  .hero h1 { font-size: clamp(52px, 13vw, 82px); }
  .section { padding: 88px 0; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-copy { position: static; }
  .depth-path::before { left: 22px; }
  .depth-card,
  .depth-card:nth-child(even) { grid-template-columns: 1fr; }
  .depth-card:nth-child(even) .depth-copy,
  .depth-card:nth-child(even) .depth-visual { order: initial; }
  .depth-copy { min-height: 0; }
  .bundle-panel { grid-template-columns: 1fr; }
  .bundle-price { min-width: 0; text-align: left; }
  .library-metrics { grid-template-columns: repeat(2, 1fr); }
  .library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .practice-offer { grid-template-columns: 1fr; }
  .practice-offer-price { min-width: 0; justify-items: start; }
  .method-shell { padding: 48px; }
  .method-grid,
  .method-evidence { grid-template-columns: 1fr; }
  .privacy-points { grid-template-columns: 1fr; }
  .trust-panel { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    padding: 10px 10px 10px 17px;
    background: rgba(13, 23, 68, .94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
    color: #fff;
    backdrop-filter: blur(18px);
  }
  .mobile-cta span { display: grid; font-size: 11px; line-height: 1.25; }
  .mobile-cta strong { color: var(--pink-soft); font-size: 12px; }
  .mobile-cta .button { min-height: 46px; padding: 12px 17px; font-size: 12px; }
}

@media (max-width: 600px) {
  .preview-ribbon { font-size: 9px; letter-spacing: .07em; }
  .site-header { top: 34px; }
  .nav-home { min-height: 42px; padding-inline: 13px; font-size: 11px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; transform: scale(.9); }
  .hero { padding-top: 132px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(42px, 14vw, 62px); letter-spacing: -.022em; line-height: 1.06; }
  .hero-lead { font-size: 17px; }
  .hero-actions,
  .closing-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .closing-actions .button { width: 100%; }
  .hero-facts { gap: 6px; }
  .hero-facts li { padding: 7px 10px; font-size: 10px; }
  .signal-stage { min-height: 520px; border-radius: 34px; }
  .signal-label { top: 34px; }
  .signal-label-you { left: 22px; }
  .signal-label-partner { right: 22px; }
  .signal-stage::before,
  .signal-stage::after { top: 84px; height: 170px; }
  .sample-result { top: 138px; right: 16px; left: 16px; min-height: 350px; border-radius: 26px; padding: 21px; }
  .sample-result-head { margin-bottom: 17px; }
  .score-summary { gap: 15px; grid-template-columns: 94px 1fr; }
  .score-ring { width: 94px; height: 94px; }
  .score-ring-inner { width: 74px; height: 74px; }
  .score-ring strong { font-size: 28px; }
  .score-copy h2 { font-size: 21px; }
  .score-copy p { font-size: 11px; }
  .axis-row { gap: 7px; grid-template-columns: 84px 1fr 26px; font-size: 9px; }
  .free-strip { margin-top: -26px; }
  .free-strip-copy { padding: 25px; }
  .free-strip-points { grid-template-columns: 1fr; }
  .free-strip-points div { min-height: 86px; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: clamp(36px, 11vw, 50px); }
  .section-head p { font-size: 16px; }
  .demo-card { border-radius: 28px; padding: 24px 18px; }
  .demo-scale-labels { font-size: 9px; }
  .demo-options { gap: 6px; }
  .demo-option { min-width: 0; min-height: 58px; border-radius: 14px; }
  .depth-card { border-radius: 28px; }
  .depth-copy { padding: 30px 24px; }
  .depth-visual { min-height: 400px; padding: 24px 16px; }
  .map-window { padding: 18px 12px; }
  .map-row { grid-template-columns: 1fr 66px 1fr; }
  .map-view { padding: 7px 5px; font-size: 8px; }
  .map-state { font-size: 7px; }
  .talk-window { padding: 24px 20px; }
  .bundle-panel { border-radius: 28px; padding: 34px 24px; }
  .library-metrics { grid-template-columns: 1fr; }
  .library-metrics div { min-height: 100px; }
  .library-grid { grid-template-columns: 1fr; }
  .library-track { min-height: 0; }
  .practice-offer { border-radius: 28px; padding: 36px 24px; }
  .practice-offer-price strong { font-size: 46px; }
  .safety-note { grid-template-columns: 1fr; }
  .method-section { padding-top: 24px; }
  .method-shell { border-radius: 28px; padding: 40px 24px; }
  .method-intro h2 { font-size: clamp(27px, 8.4vw, 38px); }
  .method-intro p { font-size: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 235px; }
  .step-card h3 { margin-top: 38px; }
  .trust-panel { border-radius: 28px; padding: 34px 24px; }
  .closing-card { border-radius: 30px; padding: 48px 24px; }
  .closing-card h2 { font-size: clamp(39px, 12vw, 55px); }
  .dialog-inner { padding: 34px 24px 26px; }
  .preview-dialog h2 { padding-right: 28px; font-size: 27px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
  .dialog-actions .button { width: 100%; }
  .analytics-consent { right: 12px; bottom: 92px; width: calc(100% - 24px); }
  .analytics-consent-actions .button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Landing v4 — three clear product contours: free pulse, deep map, support. */
.landing-v4 .site-header { top: 0; padding-top: 18px; }
.landing-v4 .nav-shell { min-height: 70px; }
.landing-v4 .hero { min-height: 840px; padding: 144px 0 94px; }
.landing-v4 .hero h1 { max-width: 710px; margin-bottom: 26px; }
.landing-v4 .hero-lead { max-width: 690px; }
.landing-v4 .hero-note { max-width: 650px; font-size: 13px; line-height: 1.7; }
.landing-v4 .hero-note strong { color: #fff; }
.landing-v4 .signal-stage { min-height: 620px; }
.landing-v4 .sample-result { top: 158px; }
.landing-v4 .section { padding: 98px 0; }
.landing-v4 .section-head { margin-bottom: 46px; }
.landing-v4 .section-head h2 { font-size: clamp(36px, 4.7vw, 58px); line-height: 1.08; }
.landing-v4 .section-head p { font-size: 17px; }
.landing-v4 .map-showcase-copy h2 em {
  display: block;
  color: var(--pink);
  font-style: normal;
}
.map-lead-v4 { font-size: 17px !important; line-height: 1.75 !important; }
.map-offer-inline {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 28px 0 20px;
}
.map-offer-inline strong { color: var(--navy); font-size: 34px; letter-spacing: -.04em; }
.map-offer-inline span { color: var(--muted); font-size: 12px; }
.report-explainer {
  display: grid;
  gap: 16px;
  margin-top: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.report-explainer article {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 30px;
  background: rgba(255,255,255,.06);
}
.report-explainer span { color: var(--sky); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.report-explainer h3 { margin: 11px 0 9px; color: #fff; font-size: 21px; line-height: 1.35; }
.report-explainer p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.75; }
.route-method {
  background:
    radial-gradient(circle at 0 0, rgba(255,90,159,.09), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(117,207,255,.12), transparent 32%),
    var(--paper);
}
.route-method-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.route-method-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16,27,77,.05);
}
.route-method-grid b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.route-method-grid article:nth-child(2) b { background: var(--pink); color: var(--navy); }
.route-method-grid article:nth-child(3) b { background: var(--sky); color: var(--navy); }
.route-method-grid article:nth-child(4) b { background: var(--violet); }
.route-method-grid h3 { margin: 0 0 11px; color: var(--navy); font-size: 19px; line-height: 1.35; }
.route-method-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.route-method .route-compact { margin-top: 0; }
.route-method .route-compact ol { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.safety-band {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border: 1px solid rgba(255,90,159,.22);
  border-radius: 22px;
  padding: 24px 28px;
  background: var(--blush);
}
.safety-band strong { color: var(--navy); font-size: 15px; }
.safety-band p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.landing-v4 .legal-details { color: #8b8b8b; font-size: 12px; line-height: 1.5; }

@media (max-width: 1000px) {
  .route-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-method .route-compact ol { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .landing-v4 .hero { min-height: auto; padding-top: 126px; }
  .landing-v4 .section { padding: 74px 0; }
  .report-explainer,
  .route-method-grid { grid-template-columns: 1fr; }
  .route-method-grid article { min-height: 0; }
  .map-offer-inline { align-items: flex-start; flex-direction: column; gap: 0; }
}

/* --------------------------------------------------------------------------
   Landing v3: one story — answer, percentage, map, conversation.
   The older commercial components remain namespaced above for rollback.
   -------------------------------------------------------------------------- */

.landing-v3 .site-header {
  top: 0;
  padding-top: 18px;
}

.landing-v3 .nav-shell { min-height: 70px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-code {
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.nav-code:hover { color: #fff; }

.landing-v3 .hero {
  min-height: 860px;
  padding: 144px 0 96px;
}

.landing-v3 .hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
}

.landing-v3 .hero-lead { max-width: 680px; }
.landing-v3 .hero-note { max-width: 640px; font-size: 13px; line-height: 1.65; }
.landing-v3 .hero-note strong { color: #fff; }
.landing-v3 .signal-stage { min-height: 620px; }
.landing-v3 .sample-result { top: 158px; }

.clarity-strip {
  position: relative;
  z-index: 6;
  margin-top: -35px;
}

.clarity-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow);
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.clarity-grid div {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 5px;
  padding: 25px 28px 23px;
  background: rgba(255, 255, 255, .98);
}

.clarity-grid div::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--pink);
  content: "";
}

.clarity-grid div:nth-child(2)::before { background: var(--sky); }
.clarity-grid div:nth-child(3)::before { background: linear-gradient(90deg, var(--pink), var(--violet), var(--sky)); }
.clarity-grid strong { color: var(--navy); font-size: 15px; line-height: 1.35; }
.clarity-grid span { color: var(--muted); font-size: 12px; line-height: 1.6; }

.landing-v3 .section { padding: 96px 0; }
.landing-v3 .section-head { margin-bottom: 46px; }
.landing-v3 .section-head h2 { font-size: clamp(36px, 4.7vw, 58px); line-height: 1.08; }
.landing-v3 .section-head p { font-size: 17px; }

.journey-section {
  background:
    radial-gradient(circle at 0 100%, rgba(255, 90, 159, .07), transparent 30%),
    var(--paper);
}

.journey-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 27px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 27, 77, .06);
}

.journey-card:nth-child(2) { background: linear-gradient(150deg, #fff, var(--blush)); }
.journey-card:nth-child(3) { background: linear-gradient(150deg, #fff, var(--sky-soft)); }

.journey-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.journey-card:nth-child(2) .journey-number { background: var(--pink); color: var(--navy); }
.journey-card:nth-child(3) .journey-number { background: var(--sky); color: var(--navy); }

.journey-visual {
  position: relative;
  display: grid;
  height: 210px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 27, 77, .08);
  border-radius: 24px;
  background: var(--paper-2);
}

.journey-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 23px; letter-spacing: -.02em; line-height: 1.28; }
.journey-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }

.answers-visual { background: linear-gradient(145deg, var(--blush), var(--sky-soft)); }
.answer-person { position: absolute; top: 30px; display: grid; width: 76px; height: 76px; place-items: center; border: 8px solid rgba(255,255,255,.78); border-radius: 50%; color: var(--navy); font-size: 11px; font-weight: 700; box-shadow: var(--shadow-soft); }
.answer-person-you { left: 18%; background: var(--pink); }
.answer-person-partner { right: 18%; background: var(--sky); }
.answer-line { position: absolute; bottom: 36px; width: 31%; height: 46px; border-radius: 14px; background: rgba(255,255,255,.8); }
.answer-line::before, .answer-line::after { position: absolute; right: 13px; left: 13px; height: 5px; border-radius: 999px; background: rgba(16,27,77,.13); content: ""; }
.answer-line::before { top: 13px; }
.answer-line::after { top: 27px; width: 56%; }
.answer-line-you { left: 12%; box-shadow: inset 4px 0 0 var(--pink); }
.answer-line-partner { right: 12%; box-shadow: inset 4px 0 0 var(--sky); }

.percent-visual { place-content: center; background: radial-gradient(circle, #fff 0 37%, transparent 38%), conic-gradient(var(--pink) 0 54%, var(--sky) 54% 84%, #e7e9f4 84%); }
.percent-visual::before { position: absolute; width: 136px; height: 136px; border: 16px solid rgba(255,255,255,.94); border-radius: 50%; content: ""; place-self: center; }
.percent-visual strong { position: relative; z-index: 1; color: var(--navy); font-size: 44px; letter-spacing: -.04em; line-height: 1; text-align: center; }
.percent-visual span { position: relative; z-index: 1; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 600; text-align: center; }

.mini-map-visual { grid-template-columns: repeat(3, 1fr); place-items: end center; padding: 0 18px 30px; background: linear-gradient(145deg, var(--blush), var(--sky-soft)); }
.mini-map-visual::before { position: absolute; top: 34px; right: 15%; left: 15%; height: 118px; border-bottom: 7px solid var(--pink); border-radius: 0 0 50% 35%; content: ""; transform: rotate(4deg); }
.mini-map-visual::after { position: absolute; top: 42px; right: 14%; left: 18%; height: 108px; border-bottom: 7px solid var(--sky); border-radius: 0 0 35% 50%; content: ""; transform: rotate(-4deg); }
.mini-map-visual span { position: relative; z-index: 2; border-radius: 999px; padding: 6px 9px; background: rgba(255,255,255,.9); color: var(--navy); font-size: 9px; font-weight: 700; }

.map-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 18%, rgba(255, 90, 159, .28), transparent 26%),
    radial-gradient(circle at 96% 82%, rgba(117, 207, 255, .26), transparent 28%),
    linear-gradient(135deg, #0b143e, var(--navy) 42%, #253e9e);
  color: #fff;
}

.map-showcase-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, .72fr) minmax(590px, 1.28fr);
}

.map-showcase-copy .eyebrow { color: var(--pink-soft); }
.map-showcase-copy h2 { margin: 0 0 22px; font-size: clamp(40px, 5.1vw, 68px); letter-spacing: -.025em; line-height: 1.08; }
.map-showcase-copy > p { margin-bottom: 24px; color: #dbe6ff; font-size: 17px; line-height: 1.72; }
.map-showcase-copy > p strong { color: #fff; }
.map-benefits { display: grid; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.map-benefits li { position: relative; padding-left: 26px; color: #cbd8fa; font-size: 13px; line-height: 1.6; }
.map-benefits li::before { position: absolute; top: .52em; left: 0; width: 9px; height: 9px; border: 3px solid var(--pink); border-radius: 50%; content: ""; }
.map-benefits li:nth-child(2)::before { border-color: var(--sky); }

.pair-map-scene {
  position: relative;
  min-height: 680px;
  isolation: isolate;
}

.map-orb {
  position: absolute;
  top: 32px;
  width: min(365px, 58%);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 29%;
  opacity: .98;
}

.map-orb-you { left: 2%; background: linear-gradient(145deg, var(--pink-soft), var(--pink)); transform: rotate(-7deg); }
.map-orb-partner { right: 1%; background: linear-gradient(145deg, var(--sky-soft), var(--sky)); mix-blend-mode: screen; transform: rotate(7deg); }
.map-orb-label { position: absolute; z-index: 3; top: 96px; border: 1px solid rgba(16,27,77,.12); border-radius: 999px; padding: 7px 11px; background: rgba(255,255,255,.93); color: var(--navy); box-shadow: var(--shadow-soft); font-size: 11px; font-weight: 700; }
.map-orb-label-you { left: 9%; }
.map-orb-label-partner { right: 8%; }

.pair-map-card {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 12px;
  left: 4%;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 34px;
  padding: 29px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.pair-map-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.pair-map-head > div:first-child { display: grid; }
.pair-map-head > div:first-child span { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pair-map-head > div:first-child strong { margin-top: 4px; color: var(--navy); font-size: 22px; line-height: 1.25; }
.pair-map-score { display: grid; justify-items: end; }
.pair-map-score strong { color: var(--navy); font-size: 35px; letter-spacing: -.03em; line-height: 1; }
.pair-map-score span { margin-top: 4px; color: var(--soft); font-size: 9px; font-weight: 600; }
.pair-map-legend { display: flex; gap: 14px; margin-bottom: 14px; color: var(--muted); font-size: 10px; font-weight: 700; }
.pair-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.pair-map-legend span::before { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); content: ""; }
.pair-map-legend .legend-partner::before { background: var(--sky); }
.pair-map-axis-labels { display: grid; margin: 0 84px 5px 108px; color: var(--soft); font-size: 8px; font-weight: 600; grid-template-columns: repeat(3, 1fr); text-align: center; }
.pair-map-rows { display: grid; gap: 8px; }
.pair-map-row { display: grid; min-height: 55px; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 15px; padding: 7px 10px 7px 13px; background: var(--paper-2); grid-template-columns: 96px 1fr 70px; }
.pair-map-topic { color: var(--navy); font-size: 11px; font-weight: 700; }
.pair-map-rail { position: relative; display: block; height: 39px; }
.pair-map-rail::before { position: absolute; top: 18px; right: 4px; left: 4px; height: 3px; border-radius: 999px; background: #dfe3f2; content: ""; }
.pair-map-rail::after { position: absolute; top: 16px; left: min(var(--you), var(--partner)); width: max(8px, calc(max(var(--you), var(--partner)) - min(var(--you), var(--partner)))); height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--violet), var(--sky)); content: ""; opacity: .9; }
.map-dot { position: absolute; z-index: 2; display: grid; width: 22px; height: 22px; place-items: center; border: 3px solid #fff; border-radius: 8px; color: var(--navy); font-size: 8px; font-style: normal; font-weight: 700; box-shadow: 0 4px 10px rgba(16,27,77,.18); transform: translateX(-50%); }
.dot-you { top: 0; left: var(--you); background: var(--pink); }
.dot-partner { bottom: 0; left: var(--partner); background: var(--sky); }
.pair-map-status { border-radius: 999px; padding: 7px 8px; font-size: 8px; font-weight: 700; text-align: center; text-transform: uppercase; }
.status-match { background: var(--good-soft); color: var(--good); }
.status-near { background: var(--sky-soft); color: var(--blue); }
.status-talk { background: var(--warning-soft); color: var(--warning); }
.pair-map-note { margin: 15px 0 0; color: var(--soft); font-size: 10px; text-align: center; }

.insight-section { background: var(--surface); }
.insight-grid-v3 { display: grid; align-items: stretch; gap: 18px; grid-template-columns: .82fr 1.18fr; }
.insight-quote-v3 { display: grid; align-content: space-between; min-height: 440px; overflow: hidden; border-radius: 34px; padding: 38px; background: radial-gradient(circle at 95% 5%, rgba(117,207,255,.3), transparent 30%), linear-gradient(145deg, var(--navy), #253e9d 68%, #793f96 125%); box-shadow: var(--shadow); color: #fff; }
.insight-quote-v3 span { color: var(--pink-soft); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.insight-quote-v3 p { margin: 80px 0 0; font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; letter-spacing: -.025em; line-height: 1.12; }
.insight-meaning { border: 1px solid var(--line); border-radius: 34px; padding: clamp(34px, 5vw, 58px); background: var(--paper-2); }
.insight-meaning h2 { margin: 0 0 28px; color: var(--navy); font-size: clamp(34px, 4.1vw, 52px); letter-spacing: -.025em; line-height: 1.12; }
.meaning-pair { display: grid; gap: 12px; margin-bottom: 24px; grid-template-columns: 1fr 1fr; }
.meaning-pair article { min-height: 148px; border-radius: 23px; padding: 24px; }
.meaning-you { background: var(--blush); box-shadow: inset 0 0 0 1px rgba(255,90,159,.18); }
.meaning-partner { background: var(--sky-soft); box-shadow: inset 0 0 0 1px rgba(117,207,255,.28); }
.meaning-pair small { display: block; margin-bottom: 10px; color: var(--soft); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.meaning-pair strong { color: var(--navy); font-size: 16px; line-height: 1.5; }
.insight-meaning > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }

.products-section { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.purchase-note { width: max-content; max-width: 100%; margin: 0 auto 28px; border: 1px solid rgba(17,98,70,.18); border-radius: 999px; padding: 10px 16px; background: var(--good-soft); color: var(--good); font-size: 12px; text-align: center; }
.plan-grid-v3 { display: grid; align-items: stretch; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card-v3 { position: relative; display: flex; min-height: 570px; flex-direction: column; border: 1px solid var(--line); border-radius: 30px; padding: 32px; background: var(--surface); box-shadow: 0 12px 34px rgba(16,27,77,.07); }
.plan-card-recommended { border-color: rgba(255,90,159,.58); background: radial-gradient(circle at 100% 0, rgba(117,207,255,.22), transparent 26%), linear-gradient(160deg, #fff, var(--blush)); box-shadow: 0 26px 70px rgba(77,43,121,.16); transform: translateY(-12px); }
.plan-badge-v3 { position: absolute; top: -14px; right: 24px; border-radius: 999px; padding: 8px 13px; background: var(--pink); color: var(--navy); box-shadow: 0 10px 24px rgba(255,90,159,.22); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.plan-outcome { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .09em; line-height: 1.5; text-transform: uppercase; }
.plan-card-recommended .plan-outcome { color: var(--pink-deep); }
.plan-card-v3 h3 { margin: 14px 0 7px; color: var(--navy); font-size: 29px; letter-spacing: -.025em; line-height: 1.16; }
.plan-price { margin-bottom: 20px; color: var(--navy); font-size: 45px; font-weight: 700; letter-spacing: -.035em; line-height: 1.1; }
.plan-card-v3 > p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.plan-card-v3 ul { display: grid; gap: 10px; margin: 6px 0 28px; padding: 0; list-style: none; }
.plan-card-v3 li { position: relative; padding-left: 24px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.plan-card-v3 li::before { position: absolute; top: .45em; left: 0; width: 8px; height: 8px; border: 3px solid var(--sky); border-radius: 50%; content: ""; }
.plan-card-recommended li::before { border-color: var(--pink); }
.plan-card-v3 .button { width: 100%; margin-top: auto; border-color: var(--line); }
.promo-access-note { display: block; margin-top: 12px; color: #167a67; font-size: 12px; font-weight: 700; line-height: 1.5; text-align: center; }

/* Product ladder v5: each contour gets a distinct visual grammar, while the
   pink/blue thread keeps the three choices visibly related. */
.clarity-grid { gap: 14px; border: 0; background: transparent; }
.clarity-grid .contour-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  padding: 23px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 50px rgba(16,27,77,.1);
  grid-template-columns: 112px 1fr;
}
.clarity-grid .contour-card::before { display: none; }
.clarity-grid .contour-card::after { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg,var(--pink),var(--sky)); content: ""; }
.clarity-grid .contour-card > div:last-child { display: grid; align-content: center; gap: 7px; }
.clarity-grid .contour-step { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.clarity-grid .contour-card strong { font-size: 20px; }
.clarity-grid .contour-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.clarity-grid .contour-price { width: max-content; margin-top: 4px; border-radius: 999px; padding: 6px 10px; background: var(--navy); color: #fff; font-size: 10px; }
.contour-art { position: relative; display: grid; width: 112px; height: 150px; place-items: center; border-radius: 24px; background: linear-gradient(145deg,var(--blush),var(--sky-soft)); }
.contour-ring { display: grid; width: 78px; height: 78px; place-items: center; border-radius: 50%; background: conic-gradient(var(--pink) 0 58%,var(--sky) 58% 84%,rgba(255,255,255,.8) 84%); }
.contour-ring::before { position: absolute; width: 58px; height: 58px; border-radius: 50%; background: #fff; content: ""; }
.contour-ring b { position: relative; z-index: 1; color: var(--navy); font-size: 18px; }
.contour-sheet { position: absolute; width: 62px; height: 92px; border: 1px solid rgba(255,255,255,.8); border-radius: 13px; box-shadow: 0 12px 24px rgba(16,27,77,.13); }
.sheet-pink { left: 15px; background: linear-gradient(#fff 0 18%,var(--pink-soft) 18%); transform: rotate(-8deg); }
.sheet-blue { right: 15px; background: linear-gradient(#fff 0 18%,var(--sky-soft) 18%); transform: rotate(8deg); }
.contour-route { display: flex; flex-direction: column; justify-content: center; gap: 13px; }
.contour-route::before { position: absolute; top: 29px; bottom: 29px; left: 50%; width: 3px; border-radius: 99px; background: linear-gradient(var(--pink),var(--violet),var(--sky)); content: ""; transform: translateX(-50%); }
.contour-route i { position: relative; z-index: 1; width: 17px; height: 17px; border: 5px solid #fff; border-radius: 50%; background: var(--pink); box-shadow: 0 4px 10px rgba(16,27,77,.15); }
.contour-route i:nth-child(2),.contour-route i:nth-child(3) { background: var(--violet); }
.contour-route i:last-child { background: var(--sky); }

.invite-visual { display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(145deg,var(--blush),var(--sky-soft)); }
.invite-phone { display: grid; width: 76px; height: 124px; align-content: center; justify-items: center; gap: 9px; border: 5px solid #fff; border-radius: 20px; background: rgba(255,255,255,.6); box-shadow: 0 12px 25px rgba(16,27,77,.12); }
.invite-phone i { width: 29px; height: 29px; border: 8px solid var(--pink); border-radius: 50%; }
.phone-partner i { border-color: var(--sky); }
.invite-phone b { color: var(--navy); font-size: 9px; }
.invite-link { position: relative; z-index: 2; display: grid; min-width: 87px; justify-items: center; gap: 7px; border-radius: 14px; padding: 11px; background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(16,27,77,.22); }
.invite-link span { font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.invite-link i { width: 56px; height: 3px; border-radius: 99px; background: linear-gradient(90deg,var(--pink),var(--sky)); }
.percent-visual-v5 { display: grid; align-items: center; gap: 18px; padding: 22px; background: linear-gradient(145deg,var(--blush),var(--sky-soft)); grid-template-columns: 136px 1fr; }
.percent-orbit { display: grid; width: 132px; height: 132px; place-content: center; border: 15px solid rgba(255,255,255,.92); border-top-color: var(--pink); border-right-color: var(--sky); border-radius: 50%; background: #fff; text-align: center; box-shadow: 0 12px 30px rgba(16,27,77,.1); transform: rotate(-15deg); }
.percent-orbit > * { transform: rotate(15deg); }
.percent-orbit strong { color: var(--navy); font-size: 34px; line-height: 1; }
.percent-orbit span { margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 700; }
.conclusion-lines { display: grid; gap: 10px; width: 100%; }
.conclusion-lines i { height: 9px; border-radius: 99px; background: rgba(255,255,255,.95); box-shadow: 0 4px 12px rgba(16,27,77,.07); }
.conclusion-lines i:nth-child(2) { width: 78%; }
.conclusion-lines i:nth-child(3) { width: 91%; background: linear-gradient(90deg,rgba(255,90,159,.35),rgba(117,207,255,.35)); }
.depth-choice-visual { display: grid; align-content: center; justify-items: center; gap: 12px; background: linear-gradient(145deg,var(--blush),var(--sky-soft)); }
.depth-start { border-radius: 999px; padding: 10px 17px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; }
.depth-path { position: relative; width: 2px; height: 33px; background: linear-gradient(var(--pink),var(--sky)); }
.depth-path::after { position: absolute; right: -75px; bottom: 0; left: -75px; height: 2px; background: linear-gradient(90deg,var(--pink),var(--sky)); content: ""; }
.depth-options { display: flex; gap: 15px; }
.depth-options b { width: 120px; border: 1px solid rgba(255,255,255,.85); border-radius: 13px; padding: 11px; background: rgba(255,255,255,.82); color: var(--navy); font-size: 9px; text-align: center; box-shadow: 0 8px 18px rgba(16,27,77,.08); }

.method-continuity { max-width: 700px; margin: 25px 0; border-left: 5px solid var(--sky); border-radius: 0 20px 20px 0; padding: 20px 22px; background: rgba(255,255,255,.82); box-shadow: 0 10px 25px rgba(16,27,77,.06); }
.method-continuity strong { display: block; margin-bottom: 7px; color: var(--navy); font-size: 14px; }
.method-continuity p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
.plan-grid-support { max-width: 1060px; margin-inline: auto; grid-template-columns: repeat(2,minmax(0,1fr)); }
.plan-grid-support .plan-card-v3 { min-height: 650px; padding: 38px; }
.plan-grid-support .plan-card-v3 li { font-size: 13px; }
.plan-grid-support .plan-card-v3 li strong { color: var(--navy); }
.plan-card-route { background: linear-gradient(150deg,#fff,var(--sky-soft)); }
.plan-card-recommended .button { border-color: transparent; }

.route-compact { display: grid; gap: 24px; margin-top: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; padding: 34px; background: radial-gradient(circle at 0 0, rgba(255,90,159,.27), transparent 28%), radial-gradient(circle at 100% 100%, rgba(117,207,255,.22), transparent 30%), var(--navy); color: #fff; box-shadow: var(--shadow); }
.route-compact-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.route-compact-head span { color: var(--pink-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.route-compact-head strong { font-size: 19px; }
.route-compact ol { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(4, 1fr); }
.route-compact li { position: relative; min-height: 100px; border-left: 1px solid rgba(255,255,255,.15); padding: 11px 22px; }
.route-compact li:first-child { border-left: 0; padding-left: 0; }
.route-compact li::before { display: block; width: 11px; height: 11px; margin-bottom: 15px; border: 3px solid var(--pink); border-radius: 50%; content: ""; }
.route-compact li:nth-child(even)::before { border-color: var(--sky); }
.route-compact li span { display: block; margin-bottom: 6px; color: #aebde6; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.route-compact li strong { color: #fff; font-size: 12px; line-height: 1.5; }

.evidence-section { background: #f5f8ff; }
.evidence-grid-v3 { display: grid; align-items: stretch; gap: 18px; grid-template-columns: 1fr 1fr; }
.method-card-v3, .privacy-card-v3 { min-width: 0; border-radius: 34px; padding: clamp(34px, 5vw, 58px); overflow-wrap: anywhere; }
.method-card-v3 { background: radial-gradient(circle at 0 0, rgba(255,90,159,.27), transparent 28%), radial-gradient(circle at 100% 100%, rgba(117,207,255,.2), transparent 30%), linear-gradient(145deg, #0b143e, var(--navy-2)); color: #fff; box-shadow: var(--shadow); }
.method-card-v3 .eyebrow { color: var(--pink-soft); }
.method-card-v3 h2, .privacy-card-v3 h2 { margin: 0 0 20px; font-size: clamp(32px, 4vw, 49px); letter-spacing: -.025em; line-height: 1.12; }
.method-card-v3 > p { color: #d9e4ff; font-size: 15px; line-height: 1.75; }
.method-card-v3 > small { display: block; margin-top: 22px; color: #aebde6; font-size: 10px; line-height: 1.7; }
.evidence-links { display: grid; justify-items: start; gap: 8px; margin-top: 25px; }
.evidence-links a { color: var(--sky); font-size: 11px; font-weight: 600; text-underline-offset: 4px; }
.privacy-card-v3 { border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.privacy-card-v3 h2 { color: var(--navy); }
.privacy-facts-v3 { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.privacy-facts-v3 div { display: grid; gap: 4px; padding: 18px 19px; background: var(--paper); }
.privacy-facts-v3 strong { color: var(--navy); font-size: 12px; }
.privacy-facts-v3 span { color: var(--muted); font-size: 11px; line-height: 1.65; }
.privacy-card-v3 .privacy-actions { margin-top: 22px; }
.privacy-card-v3 .button { border-color: var(--line); color: var(--navy); }

.legal-disclosure { margin-top: 16px; }
.legal-disclosure details { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); }
.legal-disclosure summary { position: relative; padding: 19px 54px 19px 22px; color: var(--navy); cursor: pointer; font-size: 12px; font-weight: 700; list-style: none; }
.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary::after { position: absolute; top: 50%; right: 22px; color: var(--blue); content: "+"; font-size: 22px; transform: translateY(-50%); }
.legal-disclosure details[open] summary::after { content: "−"; }
.legal-disclosure .privacy-legal { max-width: none; padding: 0 22px 22px; }

.faq-section { background: var(--paper); }
.landing-v3 .closing { padding-top: 60px; }
.landing-v3 .site-footer { padding-bottom: 118px; }

@media (max-width: 1120px) {
  .landing-v3 .hero-grid, .map-showcase-grid { grid-template-columns: 1fr; }
  .landing-v3 .hero-copy { max-width: 820px; }
  .landing-v3 .signal-stage { width: min(680px, 100%); margin-inline: auto; }
  .pair-map-scene { width: min(760px, 100%); margin-inline: auto; }
  .map-showcase-copy { max-width: 760px; }
  .plan-card-v3 { min-height: 600px; padding: 27px; }
}

@media (max-width: 900px) {
  .landing-v3 .desktop-nav { display: none; }
  .clarity-grid, .journey-grid, .plan-grid-v3 { grid-template-columns: 1fr; }
  .journey-card { display: grid; min-height: 0; align-items: center; gap: 22px; grid-template-columns: 190px 1fr; }
  .journey-card .journey-number { top: 18px; left: 18px; }
  .journey-visual { height: 190px; margin: 0; grid-row: span 2; }
  .journey-card h3 { align-self: end; margin: 0; }
  .journey-card p { align-self: start; }
  .plan-card-v3 { min-height: 0; }
  .plan-grid-support .plan-card-v3 { min-height: 0; }
  .plan-card-recommended { transform: none; }
  .insight-grid-v3, .evidence-grid-v3 { grid-template-columns: 1fr; }
  .insight-quote-v3 { min-height: 340px; }
  .route-compact ol { grid-template-columns: repeat(2, 1fr); }
  .route-compact li:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 700px) {
  .landing-v3 .site-header { padding-top: 12px; }
  .landing-v3 .nav-shell { min-height: 62px; padding: 9px 10px 9px 14px; }
  .nav-code { display: none; }
  .nav-actions .button { min-height: 42px; padding: 10px 14px; font-size: 10px; }
  .landing-v3 .hero { padding: 112px 0 78px; }
  .landing-v3 .hero h1 { font-size: clamp(43px, 13.4vw, 61px); }
  .landing-v3 .hero .eyebrow { font-size: 9px; line-height: 1.55; }
  .landing-v3 .hero-note { font-size: 11px; }
  .clarity-strip { margin-top: -24px; }
  .clarity-grid { grid-template-columns: 1fr; }
  .clarity-grid div { min-height: 95px; }
  .clarity-grid .contour-card { min-height: 0; grid-template-columns: 92px 1fr; padding: 18px; }
  .clarity-grid .contour-card > div:last-child { min-height: 0; }
  .contour-art { width: 92px; height: 128px; }
  .landing-v3 .section { padding: 72px 0; }
  .landing-v3 .section-head h2 { font-size: clamp(34px, 10vw, 46px); }
  .landing-v3 .section-head p { font-size: 15px; }
  .journey-card { display: block; padding: 22px; }
  .journey-visual { height: 210px; margin-bottom: 22px; }
  .journey-card h3 { margin-bottom: 9px; }
  .map-showcase-grid { gap: 34px; }
  .map-showcase-copy h2 { font-size: clamp(38px, 11vw, 52px); }
  .pair-map-scene { min-height: 590px; }
  .map-orb { top: 24px; width: 62%; }
  .map-orb-label { display: none; }
  .pair-map-card { right: 0; bottom: 0; left: 0; border-radius: 28px; padding: 20px 14px; }
  .pair-map-head { margin-bottom: 15px; }
  .pair-map-head > div:first-child strong { font-size: 18px; }
  .pair-map-score strong { font-size: 30px; }
  .pair-map-axis-labels { margin-right: 64px; margin-left: 86px; }
  .pair-map-row { gap: 7px; padding: 6px 7px; grid-template-columns: 78px 1fr 58px; }
  .pair-map-topic { font-size: 9px; }
  .pair-map-status { padding-inline: 5px; font-size: 8px; }
  .insight-quote-v3, .insight-meaning, .method-card-v3, .privacy-card-v3 { border-radius: 28px; padding: 30px 24px; }
  .insight-quote-v3 p { margin-top: 56px; font-size: clamp(33px, 10vw, 46px); }
  .meaning-pair { grid-template-columns: 1fr; }
  .plan-card-v3 { border-radius: 27px; padding: 28px 24px; }
  .plan-card-v3 h3 { font-size: 26px; }
  .plan-price { font-size: 42px; }
  .purchase-note { border-radius: 20px; line-height: 1.6; }
  .route-compact { border-radius: 27px; padding: 28px 22px; }
  .route-compact-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .route-compact ol { grid-template-columns: 1fr; }
  .route-compact li, .route-compact li:first-child, .route-compact li:nth-child(3) { min-height: 0; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; padding: 20px 0; }
  .route-compact li:first-child { border-top: 0; }
  .method-card-v3 h2, .privacy-card-v3 h2 { font-size: clamp(31px, 9vw, 42px); }
  .landing-v3 .closing { padding-top: 30px; }
}

@media (max-width: 430px) {
  .landing-v3 .brand-mode { display: none; }
  .landing-v3 .signal-stage { min-height: 505px; }
  .landing-v3 .sample-result { top: 130px; }
  .journey-card { padding: 18px; }
  .journey-visual { height: 190px; }
  .pair-map-scene { min-height: 570px; }
  .pair-map-head > div:first-child span { font-size: 8px; }
  .pair-map-score span { display: none; }
  .pair-map-legend { margin-bottom: 9px; }
  .pair-map-axis-labels { display: none; }
  .pair-map-row { min-height: 61px; grid-template-columns: 68px 1fr 52px; }
  .map-dot { width: 20px; height: 20px; }
  .pair-map-note { font-size: 9px; }
  .meaning-pair article { min-height: 125px; padding: 20px; }
  .privacy-facts-v3 div { padding: 16px; }
}
