:root {
  --night: #0b1226;
  --night-soft: #121c35;
  --night-panel: #17223c;
  --paper: #f6f7fb;
  --paper-blue: #eef3fa;
  --ink: #10182b;
  --muted: #687288;
  --blue: #2f80ed;
  --blue-bright: #55a8ff;
  --cyan: #4ba6b8;
  --mint: #45d2aa;
  --coral: #ff746b;
  --yellow: #ffca55;
  --line-light: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 24, 43, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Aptos Display", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI", sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: white;
  background: var(--night);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--night);
  background: white;
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-glow {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 520px at var(--pointer-x, 72%) var(--pointer-y, 16%), rgba(47, 128, 237, 0.12), transparent 72%);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 38, 0.9);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 10px;
}

.brand small {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-bright);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.18em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: white;
}

.nav-toggle {
  display: none;
}

.store-badge-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.store-badge-link:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.store-badge-link img {
  display: block;
  height: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 23%, rgba(47, 128, 237, 0.14), transparent 31%),
    radial-gradient(circle at 12% 72%, rgba(75, 166, 184, 0.07), transparent 26%),
    var(--night);
}

.hero-grid,
.process-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.photo-outline {
  position: absolute;
  width: 240px;
  aspect-ratio: 1.34;
  border: 1px solid rgba(85, 168, 255, 0.14);
  border-radius: 12px;
  transform: rotate(-12deg);
}

.photo-outline::before {
  position: absolute;
  right: 14%;
  bottom: 14%;
  width: 45%;
  height: 30%;
  background: linear-gradient(145deg, transparent 49%, rgba(85, 168, 255, 0.08) 50%);
  clip-path: polygon(0 100%, 34% 25%, 52% 58%, 70% 0, 100% 100%);
  content: "";
}

.outline-one {
  top: 18%;
  right: -95px;
}

.outline-two {
  bottom: 15%;
  left: -120px;
  width: 320px;
  transform: rotate(9deg);
}

.outline-three {
  top: 14%;
  right: -80px;
  width: 300px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 145px 0 82px;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 75px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 28px;
  border-top: 1px solid var(--blue-bright);
}

.eyebrow.dark {
  color: #687288;
}

.hero h1,
.section-heading h2,
.statement h2,
.tour-heading h2,
.privacy-copy h2,
.requirements-copy h2,
.faq-heading h2,
.final-cta h2,
.legal h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.hero h1 {
  font-size: clamp(58px, 6.5vw, 94px);
}

.hero h1 em,
.section-heading h2 em,
.tour-heading h2 em,
.privacy-copy h2 em,
.final-cta h2 em {
  color: var(--blue-bright);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 600px;
  margin: 29px 0 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 19px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--blue);
}

.button-primary:hover {
  background: #3b8ff5;
}

.text-link {
  color: #a9cfff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
}

.privacy-note {
  display: flex;
  max-width: 530px;
  margin-top: 37px;
  padding-top: 24px;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line-light);
  font-size: 11px;
}

.privacy-note strong {
  color: #8fe2cb;
}

.privacy-shield {
  position: relative;
  width: 27px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid rgba(69, 210, 170, 0.6);
  border-radius: 12px 12px 15px 15px;
  clip-path: polygon(50% 0, 100% 15%, 92% 75%, 50% 100%, 8% 75%, 0 15%);
}

.privacy-shield::after {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 7px;
  height: 11px;
  border-right: 1px solid var(--mint);
  border-bottom: 1px solid var(--mint);
  content: "";
  transform: rotate(42deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 36px 0 36px 25px;
}

.match-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(85, 168, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.match-orbit::before,
.match-orbit::after {
  position: absolute;
  inset: 64px;
  border: 1px dashed rgba(75, 166, 184, 0.13);
  border-radius: 50%;
  content: "";
}

.match-orbit::after {
  inset: 157px;
  border-style: solid;
}

.orbit-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.27);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.14em;
}

.orbit-label-one {
  top: 20%;
  left: -8px;
}

.orbit-label-two {
  right: -14px;
  bottom: 22%;
}

.app-frame {
  position: relative;
  overflow: hidden;
  background: #0d1629;
  border: 1px solid rgba(85, 168, 255, 0.24);
  border-radius: 7px;
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.47);
}

.app-frame-front {
  z-index: 2;
  width: min(640px, 100%);
  margin-left: auto;
  transform: none;
}

.app-frame-front > img {
  display: block;
  width: 100%;
  height: auto;
}

.app-frame-back {
  display: none;
}

.app-frame-back img {
  display: block;
  width: 100%;
  height: auto;
}

.app-bar {
  display: flex;
  height: 34px;
  padding: 0 11px;
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  background: #0a1020;
  border-bottom: 1px solid var(--line-light);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.1em;
}

.window-dots {
  display: flex;
  margin-right: 10px;
  gap: 4px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.match-state {
  display: inline-flex;
  margin-left: auto;
  align-items: center;
  gap: 6px;
  color: #85dcbe;
}

.match-state i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}

.confidence-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 106px;
  padding: 13px 15px;
  background: rgba(11, 18, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.confidence-chip span {
  color: rgba(255, 255, 255, 0.42);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.13em;
}

.confidence-chip strong {
  margin-top: 5px;
  font: 650 23px/1 var(--display);
}

.confidence-exact {
  right: -24px;
  bottom: 16%;
}

.confidence-exact strong {
  color: var(--mint);
}

.confidence-visual {
  top: 18%;
  left: -12px;
}

.confidence-visual strong {
  color: var(--blue-bright);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.capability-strip {
  position: relative;
  z-index: 3;
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.capability-strip > div {
  display: grid;
  min-height: 120px;
  padding: 27px 20px 25px 43px;
  align-content: center;
  border-right: 1px solid var(--line-light);
  grid-template-columns: 33px 1fr;
}

.capability-strip > div:last-child {
  border-right: 0;
}

.capability-strip span {
  color: var(--blue-bright);
  font: 700 9px/1 var(--mono);
}

.capability-strip strong,
.capability-strip small {
  display: block;
}

.capability-strip strong {
  font: 650 14px/1.1 var(--display);
}

.capability-strip small {
  grid-column: 2;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.section {
  position: relative;
  padding: 130px 0;
}

.statement,
.features,
.requirements,
.faq {
  color: var(--ink);
  background: var(--paper);
}

.statement-layout {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 70px;
}

.section-label {
  padding-top: 12px;
}

.section-label span {
  display: inline-block;
  padding-top: 10px;
  color: var(--blue);
  border-top: 2px solid var(--blue);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.statement-copy h2 {
  max-width: 900px;
  font-size: clamp(52px, 6.7vw, 88px);
}

.statement-copy h2 em,
.requirements-copy h2 em,
.faq-heading h2 em {
  color: var(--blue);
  font-family: Georgia, serif;
  font-weight: 400;
}

.statement-copy p {
  max-width: 790px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.process {
  overflow: hidden;
  background: var(--night-soft);
}

.section-heading {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1fr 390px;
  gap: 65px;
}

.section-heading h2,
.tour-heading h2,
.privacy-copy h2,
.requirements-copy h2,
.faq-heading h2 {
  font-size: clamp(50px, 5.9vw, 76px);
}

.section-heading > p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
}

.process-steps {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-right: 1px solid var(--line-light);
}

.process-steps li:last-child {
  border-right: 0;
}

.step-number,
.feature-index {
  color: rgba(255, 255, 255, 0.35);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.12em;
}

.step-symbol {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 52px 0 43px;
}

.symbol-folders i {
  position: absolute;
  width: 73px;
  height: 54px;
  border: 1px solid rgba(85, 168, 255, 0.52);
  border-radius: 5px;
}

.symbol-folders i::before {
  position: absolute;
  top: -8px;
  left: 7px;
  width: 26px;
  height: 8px;
  background: rgba(85, 168, 255, 0.24);
  border: 1px solid rgba(85, 168, 255, 0.52);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  content: "";
}

.symbol-folders i:nth-child(1) { top: 9px; left: 5px; opacity: 0.35; }
.symbol-folders i:nth-child(2) { top: 30px; left: 24px; opacity: 0.65; }
.symbol-folders i:nth-child(3) { top: 51px; left: 43px; background: rgba(47, 128, 237, 0.12); }

.symbol-analyze {
  border: 1px solid rgba(85, 168, 255, 0.3);
  border-radius: 50%;
}

.symbol-analyze::before,
.symbol-analyze::after,
.symbol-analyze i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.symbol-analyze::before {
  inset: 20px;
  border: 1px dashed rgba(75, 166, 184, 0.55);
}

.symbol-analyze::after {
  inset: 47px;
  background: var(--blue-bright);
  box-shadow: 0 0 20px rgba(85, 168, 255, 0.6);
}

.symbol-analyze i {
  top: 7px;
  left: 59px;
  width: 1px;
  height: 53px;
  background: linear-gradient(var(--blue-bright), transparent);
  transform-origin: 0 53px;
  transform: rotate(62deg);
}

.symbol-review i {
  position: absolute;
  top: 12px;
  width: 68px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.symbol-review i:first-child {
  left: 0;
  background: rgba(69, 210, 170, 0.12);
  border-color: rgba(69, 210, 170, 0.5);
}

.symbol-review i:last-child {
  right: 0;
  background: rgba(255, 116, 107, 0.1);
  border-color: rgba(255, 116, 107, 0.45);
}

.process-steps h3 {
  margin-bottom: 13px;
  font: 650 25px/1.1 var(--display);
  letter-spacing: -0.03em;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.process-steps small {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid var(--line-light);
  font: 700 8px/1.3 var(--mono);
  letter-spacing: 0.08em;
}

.dark-heading h2 {
  color: var(--ink);
}

.dark-heading h2 em {
  color: var(--blue);
}

.dark-heading > p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 36px;
  overflow: hidden;
  color: white;
  background: var(--night-soft);
  border-radius: 7px;
  grid-column: span 4;
}

.feature-primary {
  grid-column: span 8;
}

.feature-wide {
  display: grid;
  min-height: 310px;
  align-items: center;
  background: #182c4a;
  grid-column: span 8;
  grid-template-columns: 1fr 0.8fr;
  gap: 45px;
}

.feature-index {
  display: block;
  margin-bottom: 50px;
}

.feature-card h3 {
  max-width: 520px;
  margin: 0 0 16px;
  font: 650 29px/1.06 var(--display);
  letter-spacing: -0.04em;
}

.feature-primary h3 {
  font-size: 38px;
}

.feature-card p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.match-diagram {
  position: absolute;
  top: 72px;
  right: 32px;
  display: flex;
  align-items: center;
}

.match-card {
  display: grid;
  width: 150px;
  height: 185px;
  padding: 20px;
  align-content: end;
  background: #1e2d49;
  border: 1px solid rgba(85, 168, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}

.match-card-b {
  transform: rotate(5deg);
}

.match-card i {
  display: block;
  height: 2px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.match-card i:first-child {
  height: 70px;
  margin: 0 0 10px;
  background:
    radial-gradient(circle at 76% 22%, var(--blue-bright) 0 7px, transparent 8px),
    linear-gradient(145deg, transparent 49%, rgba(112, 149, 198, 0.6) 50%);
  clip-path: polygon(0 100%, 0 72%, 32% 36%, 54% 66%, 70% 43%, 100% 80%, 100% 100%);
}

.match-line {
  position: relative;
  z-index: 3;
  width: 70px;
  border-top: 1px dashed rgba(85, 168, 255, 0.65);
}

.match-line span {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 5px 7px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font: 700 8px/1 var(--mono);
  transform: translateX(-50%);
}

.feature-badge {
  position: absolute;
  top: 78px;
  right: 36px;
  display: flex;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
  color: #b9d7ff;
  border: 1px solid rgba(85, 168, 255, 0.28);
  border-radius: 50%;
  font: 700 14px/1 var(--mono);
}

.badge-compare i {
  width: 12px;
  margin-inline: 7px;
  border-top: 1px dashed var(--blue-bright);
}

.badge-decision {
  gap: 8px;
}

.badge-decision i {
  width: 24px;
  height: 38px;
  border-radius: 3px;
}

.badge-decision i:first-child {
  background: rgba(69, 210, 170, 0.22);
  border: 1px solid rgba(69, 210, 170, 0.6);
}

.badge-decision i:last-child {
  background: rgba(255, 116, 107, 0.18);
  border: 1px solid rgba(255, 116, 107, 0.54);
}

.badge-speed i {
  width: 34px;
  height: 34px;
  border: 1px solid var(--blue-bright);
  border-radius: 50%;
}

.badge-speed i::before {
  display: block;
  width: 1px;
  height: 17px;
  margin: 3px auto 0;
  background: var(--blue-bright);
  content: "";
  transform: rotate(45deg);
  transform-origin: 0 14px;
}

.control-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.control-list div {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 90px 1fr;
}

.control-list span {
  color: var(--blue-bright);
  font: 700 8px/1.5 var(--mono);
  letter-spacing: 0.1em;
}

.control-list strong {
  font-size: 13px;
}

.tour {
  overflow: hidden;
  background: var(--night);
}

.tour-heading {
  margin-bottom: 65px;
}

.tour-layout {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 250px 1fr;
}

.tour-tabs {
  border-right: 1px solid var(--line-light);
}

.tour-tab {
  display: grid;
  width: 100%;
  min-height: 130px;
  padding: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  cursor: pointer;
  grid-template-columns: 32px 1fr;
  text-align: left;
  transition: color 160ms ease, background 160ms ease;
}

.tour-tab:hover,
.tour-tab:focus-visible,
.tour-tab.is-active {
  color: white;
  background: rgba(47, 128, 237, 0.1);
}

.tour-tab > span:first-child {
  color: var(--blue-bright);
  font: 700 9px/1 var(--mono);
}

.tour-tab strong,
.tour-tab small {
  display: block;
}

.tour-tab strong {
  font-size: 14px;
}

.tour-tab small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.tour-stage {
  min-width: 0;
  padding: 0 0 0 38px;
}

.stage-topline {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.expand-button {
  padding: 8px;
  color: #a9cfff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: 700 8px/1 var(--mono);
}

.tour-image-wrap {
  display: flex;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #0a1020;
  border: 1px solid rgba(85, 168, 255, 0.2);
}

.tour-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: opacity 140ms ease, transform 140ms ease;
}

.tour-image-wrap img.is-changing {
  opacity: 0;
  transform: scale(0.99);
}

.tour-caption {
  display: grid;
  padding: 27px 0 0;
  grid-template-columns: 0.75fr 1fr;
  gap: 35px;
}

.tour-caption h3 {
  margin: 0;
  font: 650 25px/1.15 var(--display);
  letter-spacing: -0.03em;
}

.tour-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.privacy {
  overflow: hidden;
  background: #101a31;
}

.privacy-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: radial-gradient(rgba(85, 168, 255, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.privacy-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.92fr;
  gap: 100px;
}

.privacy-visual {
  position: relative;
  min-height: 470px;
}

.local-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 225px;
  height: 225px;
  place-content: center;
  text-align: center;
  background: rgba(47, 128, 237, 0.09);
  border: 1px solid rgba(85, 168, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(47, 128, 237, 0.035), 0 0 0 90px rgba(47, 128, 237, 0.02);
  transform: translate(-50%, -50%);
}

.local-core strong {
  margin-top: 18px;
  color: #d4e6ff;
  font: 700 14px/1 var(--mono);
  letter-spacing: 0.12em;
}

.local-core small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.local-icon {
  position: relative;
  width: 72px;
  height: 55px;
  margin: auto;
  border: 2px solid var(--blue-bright);
  border-radius: 5px;
}

.local-icon::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 37px;
  height: 24px;
  background: rgba(85, 168, 255, 0.25);
  clip-path: polygon(0 100%, 31% 40%, 51% 67%, 72% 15%, 100% 100%);
  content: "";
}

.local-icon span {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.blocked-route {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.33);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.blocked-route::before {
  width: 70px;
  border-top: 1px dashed rgba(255, 116, 107, 0.45);
  content: "";
}

.blocked-route i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 116, 107, 0.65);
  border-radius: 50%;
}

.blocked-route i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 13px;
  border-top: 1px solid var(--coral);
  content: "";
  transform: rotate(-45deg);
}

.route-one { top: 10%; right: 0; }
.route-two { right: -6%; bottom: 13%; }
.route-three { bottom: 3%; left: 2%; }

.privacy-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.59);
  font-size: 16px;
}

.privacy-copy ul {
  display: grid;
  padding: 0;
  margin: 29px 0 34px;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  list-style: none;
}

.privacy-copy li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.privacy-copy li::before {
  margin-right: 8px;
  color: var(--mint);
  content: "✓";
}

.requirements {
  background: var(--paper-blue);
}

.requirements-layout {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
}

.requirements-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.requirement-grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr;
}

.requirement-grid div {
  min-height: 120px;
  padding: 25px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.requirement-grid div:nth-child(even) {
  border-right: 0;
}

.requirement-grid span,
.requirement-grid strong {
  display: block;
}

.requirement-grid span {
  color: var(--blue);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.requirement-grid strong {
  margin-top: 17px;
  font: 650 15px/1.2 var(--display);
}

.faq {
  padding-top: 105px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font: 650 17px/1.3 var(--display);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 3px;
  color: var(--blue);
  content: "＋";
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 45px 24px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  padding: 135px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(47, 128, 237, 0.17), transparent 48%),
    var(--night);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta-inner > img {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.final-cta .eyebrow {
  justify-content: center;
  margin-top: 25px;
}

.final-cta h2 {
  font-size: clamp(58px, 7vw, 90px);
}

.final-cta p:not(.eyebrow) {
  margin: 29px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.store-badge-large {
  margin-top: 8px;
}

.site-footer {
  background: #080d1c;
}

.footer-main {
  display: grid;
  padding: 70px 0 55px;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-main > div:first-child > p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 145px);
  gap: 60px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--blue-bright);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.13em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  padding: 22px 0 28px;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 255, 255, 0.28);
  border-top: 1px solid var(--line-light);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 620px;
  text-align: right;
}

.image-dialog {
  width: min(1400px, calc(100vw - 50px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  color: white;
  background: #070b16;
  border: 1px solid rgba(85, 168, 255, 0.32);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
}

.image-dialog img {
  display: block;
  width: 100%;
}

.image-dialog button {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  color: white;
  background: rgba(8, 13, 28, 0.9);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 8%, rgba(47, 128, 237, 0.08), transparent 26%),
    var(--paper);
}

.legal-header {
  background: var(--night);
  border-bottom: 1px solid var(--line-light);
}

.legal-header .nav-shell {
  min-height: 76px;
  grid-template-columns: 1fr auto;
}

.back-link {
  justify-self: end;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
}

.back-link:hover {
  color: white;
}

.legal {
  width: min(800px, calc(100vw - 48px));
  min-height: calc(100vh - 230px);
  margin: 0 auto;
  padding: 105px 0 125px;
}

.legal .eyebrow {
  color: var(--muted);
}

.legal h1 {
  font-size: clamp(58px, 7vw, 86px);
}

.legal .updated {
  margin: 20px 0 48px;
  color: var(--blue);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal h2 {
  margin: 42px 0 14px;
  font: 650 24px/1.2 var(--display);
  letter-spacing: -0.03em;
}

.legal h3 {
  margin: 27px 0 10px;
  font: 650 18px/1.3 var(--display);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal ul,
.legal ol {
  padding-left: 20px;
}

.legal a {
  color: var(--blue);
}

.legal-note {
  padding: 23px;
  margin-top: 42px;
  background: #e8eef8;
  border-left: 3px solid var(--blue);
}

.legal-note p {
  margin: 5px 0 0;
}

.legal-page .footer-bottom {
  color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 1060px) {
  :root {
    --shell: min(900px, calc(100vw - 42px));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    color: white;
    background: rgba(18, 28, 53, 0.7);
    border: 1px solid var(--line-light);
    border-radius: 4px;
  }

  .nav-toggle i {
    width: 18px;
    border-top: 1px solid currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav.is-open {
    position: absolute;
    top: 81px;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px max(21px, calc((100vw - 900px) / 2));
    background: rgba(11, 18, 38, 0.98);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .primary-nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .app-frame-front {
    width: min(610px, 86%);
  }

  .statement-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-steps li {
    padding: 28px;
  }

  .feature-primary,
  .feature-card {
    grid-column: span 6;
  }

  .feature-wide {
    grid-column: span 12;
  }

  .privacy-layout,
  .requirements-layout {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 34px);
  }

  .site-header .nav-shell {
    min-height: 70px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .primary-nav.is-open {
    top: 69px;
    padding-inline: 17px;
  }

  .hero-layout {
    padding: 125px 0 75px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 69px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    padding: 20px 0;
  }

  .app-frame-front {
    width: 92%;
    transform: none;
  }

  .app-frame-back,
  .match-orbit,
  .confidence-visual {
    display: none;
  }

  .confidence-exact {
    right: -5px;
  }

  .capability-strip {
    grid-template-columns: 1fr 1fr;
  }

  .capability-strip > div {
    min-height: 106px;
    padding: 20px 13px 20px 20px;
    grid-template-columns: 27px 1fr;
  }

  .capability-strip > div:nth-child(2) {
    border-right: 0;
  }

  .capability-strip > div:nth-child(n+3) {
    border-top: 1px solid var(--line-light);
  }

  .capability-strip strong {
    font-size: 12px;
  }

  .section,
  .final-cta {
    padding: 88px 0;
  }

  .statement-copy h2,
  .section-heading h2,
  .tour-heading h2,
  .privacy-copy h2,
  .requirements-copy h2,
  .faq-heading h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .statement-copy p {
    font-size: 16px;
  }

  .section-heading,
  .privacy-layout,
  .requirements-layout,
  .faq-layout,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-steps li:last-child {
    border-bottom: 0;
  }

  .feature-primary,
  .feature-card,
  .feature-wide {
    min-height: auto;
    padding: 28px;
    grid-column: span 12;
  }

  .feature-primary {
    padding-bottom: 285px;
  }

  .feature-wide {
    grid-template-columns: 1fr;
  }

  .feature-index {
    margin-bottom: 68px;
  }

  .feature-card h3,
  .feature-primary h3 {
    font-size: 27px;
  }

  .match-diagram {
    top: auto;
    right: 50%;
    bottom: 35px;
    transform: translateX(50%) scale(0.8);
  }

  .feature-badge {
    top: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
  }

  .control-list div {
    grid-template-columns: 78px 1fr;
  }

  .tour-layout {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .tour-tabs {
    display: grid;
    border-top: 1px solid var(--line-light);
    border-right: 0;
    grid-template-columns: 1fr;
  }

  .tour-tab {
    min-height: 90px;
  }

  .tour-stage {
    padding-left: 0;
  }

  .tour-caption {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .privacy-visual {
    min-height: 410px;
    order: 2;
  }

  .local-core {
    width: 190px;
    height: 190px;
  }

  .blocked-route::before {
    width: 30px;
  }

  .route-two {
    right: 0;
  }

  .privacy-copy ul,
  .requirement-grid {
    grid-template-columns: 1fr;
  }

  .requirement-grid div {
    min-height: 100px;
    border-right: 0;
  }

  .faq {
    padding-top: 88px;
  }

  .final-cta h2 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .store-badge-large {
    justify-content: center;
  }

  .footer-links {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .legal {
    padding-top: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
