:root {
  color-scheme: light;
  --ink: #07122e;
  --ink-soft: #42506d;
  --muted: #64708a;
  --paper: #fbfbff;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(37, 45, 78, 0.14);
  --line-strong: rgba(37, 45, 78, 0.22);
  --purple: #6d50e8;
  --purple-dark: #241449;
  --navy: #06102d;
  --cyan: #28d9f2;
  --parent: #16866b;
  --parent-soft: #effbf7;
  --pro: #286ed8;
  --pro-soft: #f1f7ff;
  --teen: #7153e7;
  --teen-soft: #f7f3ff;
  --help: #df2548;
  --help-soft: #fff0f3;
  --shadow: 0 26px 72px rgba(26, 30, 62, 0.11);
  --shadow-soft: 0 16px 44px rgba(26, 30, 62, 0.08);
  --sans: "Aptos Display", "Trebuchet MS", Verdana, sans-serif;
  --serif: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --max: 1420px;
  --gutter: clamp(22px, 5vw, 72px);
  --header-h: 76px;
  --section-y: clamp(72px, 8vw, 118px);
  --section-y-tight: clamp(48px, 5vw, 76px);
  --fs-brand: clamp(4.9rem, 12vw, 12rem);
  --fs-hero: clamp(3.1rem, 4.6vw, 5rem);
  --fs-page: clamp(2.75rem, 4vw, 4.45rem);
  --fs-section: clamp(2.25rem, 3.1vw, 3.55rem);
  --fs-card: clamp(1.25rem, 1.35vw, 1.55rem);
  --fs-body: 1rem;
  --fs-body-lg: clamp(1.02rem, 1vw, 1.12rem);
  --fs-label: 0.82rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 2%, rgba(113, 83, 231, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(76, 199, 255, 0.07), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 var(--gutter);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: clamp(148px, 13vw, 190px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(20px, 2.3vw, 34px);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  color: var(--accent, var(--purple));
}

.top-actions,
.hero-actions,
.access-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-actions {
  gap: clamp(22px, 2.4vw, 34px);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.top-actions .nav-cta {
  flex: 0 0 auto;
}

.help-link {
  color: var(--help);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.primary-button,
.secondary-button,
.route-card a,
.help-grid a,
button.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.route-card a:hover,
.help-grid a:hover,
button.primary-button:hover {
  transform: translateY(-2px);
}

.nav-cta,
.primary-button,
button.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--accent, var(--purple)), color-mix(in srgb, var(--accent, var(--purple)) 82%, #18234d));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent, var(--purple)) 18%, transparent);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.secondary-button.inverse-button {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.danger-button,
.route-help a {
  background: var(--help) !important;
  box-shadow: 0 14px 30px rgba(223, 37, 72, 0.18) !important;
  color: #fff !important;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent, var(--purple));
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.014em;
}

h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 620;
  letter-spacing: 0;
}

p,
li {
  color: var(--ink-soft);
  font-size: var(--fs-body);
}

.page-hero,
.support-statement,
.route-section,
.split-proof,
.access-cta,
.subpage > .detail-section,
.subpage > .split-detail,
.subpage > .faq-section,
.subpage > .request-band,
.subpage > .comparison-section,
.subpage > .form-shell,
.footer {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
  padding-top: clamp(54px, 6.4vw, 88px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: var(--fs-page);
  line-height: 1.09;
}

.page-hero p:not(.eyebrow),
.hero-lede {
  max-width: 660px;
  color: #4d5a78;
  font-size: var(--fs-body-lg);
  line-height: 1.64;
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  padding: clamp(58px, 8vw, 116px) var(--gutter);
  background: var(--navy);
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 31, 0.88) 0%, rgba(5, 10, 31, 0.7) 38%, rgba(5, 10, 31, 0.18) 74%, rgba(5, 10, 31, 0.42) 100%),
    radial-gradient(circle at 18% 24%, rgba(109, 80, 232, 0.28), transparent 32rem),
    radial-gradient(circle at 78% 18%, rgba(40, 217, 242, 0.14), transparent 30rem);
  content: "";
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 31, 0.56));
  content: "";
  pointer-events: none;
}

.hero-media-plane {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.hero-media-plane video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.78;
  transform: scale(1.04);
  animation: heroMediaDrift 18s var(--ease-out) infinite alternate;
}

.home-hero-copy {
  width: min(720px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  color: #fff;
}

.hero-brand {
  margin: 0 0 clamp(14px, 1.8vw, 24px);
  color: #fff;
  font-family: var(--serif);
  font-size: var(--fs-brand);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.76;
  text-shadow: 0 28px 76px rgba(0, 0, 0, 0.36);
  animation: heroCopyReveal 720ms var(--ease-out) both;
}

.home-hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.05rem, 3.2vw, 3.65rem);
  line-height: 1.08;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
  animation: heroCopyReveal 720ms 90ms var(--ease-out) both;
}

.home-hero .hero-lede {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.22vw, 1.22rem);
  line-height: 1.58;
  animation: heroCopyReveal 720ms 170ms var(--ease-out) both;
}

.hero-actions {
  margin-top: 26px;
}

.home-hero .hero-actions {
  margin-top: 32px;
  animation: heroCopyReveal 720ms 250ms var(--ease-out) both;
}

.home-hero .primary-button {
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.home-hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-video-frame,
.split-proof-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: #101733;
  box-shadow: var(--shadow);
}

.split-proof-image {
  background: #101733 url("Assets/Trust%20Landscape%201400x900.png") center / cover no-repeat;
}

.hero-video-frame video,
.hero-video-frame img {
  display: block;
  width: 100%;
  min-height: 330px;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  object-position: center;
}

.support-statement {
  padding: clamp(24px, 3.2vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.support-statement p {
  max-width: 1050px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
  line-height: 1.22;
  text-align: center;
}

.route-section,
.split-proof,
.subpage > .detail-section,
.subpage > .faq-section,
.subpage > .comparison-section {
  padding-top: var(--section-y);
  padding-bottom: calc(var(--section-y) * 0.62);
}

.route-heading,
.section-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.route-heading .eyebrow {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  text-transform: none;
}

.route-heading h2,
.section-heading p {
  color: #5d6882;
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: 1.56;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.route-card {
  --route: var(--teen);
  --route-soft: var(--teen-soft);
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--route) 18%, var(--line));
  border-radius: 16px;
  background:
    radial-gradient(circle at 48% 0%, color-mix(in srgb, var(--route) 10%, transparent), transparent 14rem),
    linear-gradient(180deg, #fff 0%, var(--route-soft) 100%);
  padding: 10px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--route) 28%, var(--line));
  box-shadow: 0 22px 54px rgba(26, 30, 62, 0.11);
}

.route-parent {
  --route: var(--parent);
  --route-soft: var(--parent-soft);
}

.route-pro {
  --route: var(--pro);
  --route-soft: var(--pro-soft);
}

.route-help {
  --route: var(--help);
  --route-soft: var(--help-soft);
}

.route-media {
  min-height: 182px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
}

.route-media.audience-teen {
  background-image: url("Assets/Teen Audience 900x560.png");
}

.route-media.audience-parent {
  background-image: url("Assets/Parent Guardian 900x560.png");
}

.route-media.audience-pro {
  background-image: url("Assets/Professional 900x560.png");
}

.route-media.audience-help {
  background-image: url("Assets/Urgent Help 900x560.png");
}

.route-card span,
.route-card h3,
.route-card p,
.route-card a {
  margin-right: 18px;
  margin-left: 18px;
}

.route-card span {
  align-self: flex-start;
  margin-top: 24px;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--route) 24%, var(--line));
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--route);
  padding: 8px 13px;
  font-size: var(--fs-label);
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.15vw, 2.35rem);
  font-weight: 600;
  line-height: 1.08;
}

.route-help h3 {
  color: var(--help);
}

.route-card p {
  font-size: var(--fs-body);
  line-height: 1.52;
}

.route-card a {
  margin-top: auto;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--route) 24%, var(--line));
  background: #fff;
  color: var(--route);
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.split-proof h2,
.section-heading h2,
.split-detail h2,
.access-cta h2,
.request-band h2,
.urgent-callout h2,
.boundary-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: var(--fs-section);
  line-height: 1.1;
}

.split-proof p,
.split-detail p,
.access-cta p,
.request-band p,
.urgent-callout p,
.form-intro p {
  max-width: 680px;
  font-size: var(--fs-body-lg);
  line-height: 1.64;
}

.split-proof-image img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.split-proof-image figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 14px 18px;
  font-weight: 500;
}

.lifestyle-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(62px, 7vw, 104px) 0;
  border-top: 1px solid color-mix(in srgb, var(--accent, var(--purple)) 12%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent, var(--purple)) 12%, var(--line));
  background:
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--accent, var(--purple)) 12%, transparent), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--accent, var(--purple)) 7%, #fbfbff) 100%);
}

.lifestyle-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.lifestyle-inner.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

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

.lifestyle-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: var(--fs-section);
  line-height: 1.08;
}

.lifestyle-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #4d5a78;
  font-size: var(--fs-body-lg);
  line-height: 1.66;
}

.lifestyle-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: #f7f8ff;
  box-shadow: var(--shadow);
}

.lifestyle-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lifestyle-media.contain-media {
  background:
    radial-gradient(circle at 50% 42%, rgba(113, 83, 231, 0.16), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f7f5ff);
}

.lifestyle-media.contain-media img {
  object-fit: contain;
  padding: clamp(20px, 3vw, 38px);
}

.theme-teen-band {
  --accent: var(--purple);
}

.theme-parent-band {
  --accent: var(--parent);
}

.theme-pro-band,
.theme-school-band {
  --accent: var(--pro);
}

.theme-safety-band {
  --accent: var(--danger);
}

.theme-access-band,
.theme-brief-band,
.theme-research-band,
.theme-about-band {
  --accent: var(--purple);
}

.app-proof-band,
.boundary-section,
.help-section {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

.app-proof-band {
  background:
    radial-gradient(circle at 54% 0%, rgba(113, 83, 231, 0.24), transparent 34rem),
    linear-gradient(135deg, #241449, #06102d);
  padding: var(--section-y) 0;
  color: #fff;
}

.app-proof-inner,
.boundary-section > div,
.help-inner,
.help-section > div {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.app-proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.app-proof-copy h2,
.app-proof-copy p,
.boundary-section h2,
.boundary-section p,
.help-section h2,
.help-section p {
  color: #fff;
}

.app-media-stage {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(300px, 1fr);
  gap: 22px;
  min-width: 0;
  overflow: hidden;
}

.app-media-stage > video {
  display: block;
  width: 100%;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.screenshot-rail figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.screenshot-rail img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.screenshot-rail figcaption {
  padding: 16px 18px 18px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 620;
}

.boundary-section {
  display: grid;
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 55% 0%, rgba(113, 83, 231, 0.28), transparent 35rem),
    linear-gradient(135deg, #291653, #06102d);
  padding: var(--section-y) 0;
}

.boundary-section.home-boundary > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(40px, 6vw, 76px);
}

.boundary-list article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(22px, 3vw, 34px);
}

.boundary-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  object-fit: contain;
}

.boundary-list h3,
.boundary-list p {
  color: #fff;
}

.access-cta,
.split-detail,
.request-band,
.form-shell {
  border: 1px solid color-mix(in srgb, var(--accent, var(--purple)) 18%, var(--line));
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--accent, var(--purple)) 11%, transparent), transparent 24rem),
    rgba(255, 255, 255, 0.84);
}

.access-cta,
.request-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: var(--section-y-tight);
  margin-bottom: var(--section-y-tight);
  padding: clamp(34px, 5vw, 58px);
}

.split-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  margin-top: var(--section-y-tight);
  margin-bottom: var(--section-y-tight);
  padding: clamp(38px, 5.5vw, 72px);
}

.info-grid,
.check-grid,
.brief-grid,
.number-grid {
  display: grid;
  gap: 20px;
}

.info-grid.three,
.brief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid.four,
.check-grid,
.number-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.number-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid article,
.check-grid article,
.brief-grid article,
.number-grid article,
.faq-section details,
.red-resource-card,
.evidence-list article,
.form-intro,
.request-form {
  border: 1px solid color-mix(in srgb, var(--accent, var(--purple)) 16%, var(--line));
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(24px, 3vw, 34px);
}

.info-grid h3,
.check-grid h3,
.brief-grid h3,
.number-grid h3,
.evidence-list h3,
.red-resource-card h3,
.faq-section summary {
  margin-bottom: 12px;
  font-size: var(--fs-card);
  line-height: 1.16;
}

.info-grid p,
.check-grid p,
.brief-grid p,
.number-grid p,
.red-resource-card p,
.faq-section p,
.evidence-list p {
  margin-bottom: 0;
}

.number-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 9px;
  background: var(--accent, var(--purple));
  color: #fff;
  font-size: var(--fs-label);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent, var(--purple));
  font-weight: 700;
}

.check-list.compact {
  gap: 14px;
  margin-top: 18px;
}

.theme-parent {
  --accent: var(--parent);
}

.theme-pro {
  --accent: var(--pro);
}

.theme-teen,
.theme-access,
.theme-safety {
  --accent: var(--purple);
}

.theme-parent .info-grid article,
.theme-parent .faq-section details,
.theme-parent .split-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 251, 247, 0.78));
}

.theme-pro .info-grid article,
.theme-pro .check-grid article,
.theme-pro .faq-section details,
.theme-pro .split-detail,
.theme-pro .evidence-list article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.78));
}

.red-resource-card,
.urgent-callout,
.footer-help-strip {
  border-color: rgba(223, 37, 72, 0.24);
  background: var(--help-soft);
}

.red-resource-card h3,
.red-resource-card a,
.urgent-callout .eyebrow,
.footer-help-strip strong {
  color: var(--help);
}

.faq-section h2 {
  margin-bottom: 34px;
  font-size: var(--fs-section);
}

.faq-section details {
  max-width: 1000px;
  margin: 14px auto 0;
}

.faq-section summary {
  cursor: pointer;
}

.evidence-list {
  display: grid;
  gap: 18px;
}

.evidence-list article {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 28px;
}

.evidence-list img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.85fr 1.05fr 1.25fr;
}

.comparison-table > div + div {
  border-top: 1px solid var(--line);
}

.comparison-table span {
  padding: 18px 20px;
}

.comparison-table [role="columnheader"] {
  background: rgba(113, 83, 231, 0.08);
  color: var(--ink);
  font-weight: 620;
}

.help-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  background:
    radial-gradient(circle at 8% 0%, rgba(223, 37, 72, 0.25), transparent 24rem),
    linear-gradient(135deg, #2a1549, #06102d);
  padding: var(--section-y) var(--gutter);
}

.help-section > div {
  width: auto;
}

.help-grid {
  display: grid;
  gap: 16px;
}

.help-grid a {
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.help-grid a::after {
  content: "→";
  color: #ff7c8f;
  font-size: 1.5rem;
}

.urgent-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: var(--section-y-tight) auto;
  border: 1px solid rgba(223, 37, 72, 0.22);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 48px);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 82px);
  padding: clamp(38px, 5vw, 68px);
}

.request-form {
  display: grid;
  gap: 18px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 560;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
}

.request-form textarea {
  min-height: 150px;
  resize: vertical;
}

.request-form button {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.turnstile-shell {
  min-height: 65px;
}

.form-status,
.form-note {
  margin: 0;
  color: var(--muted);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--parent);
}

.footer {
  padding-top: var(--section-y-tight);
  padding-bottom: 32px;
}

.footer-help-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
  border: 1px solid rgba(223, 37, 72, 0.22);
  border-radius: 14px;
  padding: 18px 24px;
}

.footer-map {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: clamp(32px, 6vw, 84px);
  padding-bottom: 42px;
}

.footer h2,
.footer h3 {
  color: var(--purple);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 560;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin: 0;
  color: var(--purple);
}

.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.footer-wordmark span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer-wordmark b {
  display: block;
  width: clamp(13px, 1.7vw, 20px);
  height: clamp(13px, 1.7vw, 20px);
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--purple);
  color: transparent;
  line-height: 1;
}

.footer-wordmark p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  white-space: nowrap;
}

.footer-wordmark p img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.4%, -0.8%, 0);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-h: 107px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .page-hero,
  .split-proof,
  .lifestyle-inner,
  .lifestyle-inner.reverse,
  .app-proof-inner,
  .boundary-section.home-boundary > div:first-child,
  .help-section,
  .form-shell {
    grid-template-columns: 1fr;
  }

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

  .info-grid.four,
  .check-grid,
  .brief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --header-h: 91px;
    --section-y: 56px;
    --fs-brand: clamp(3.9rem, 23vw, 6.5rem);
    --fs-hero: clamp(2.45rem, 10.8vw, 3.18rem);
    --fs-page: clamp(2.35rem, 10.4vw, 3.05rem);
    --fs-section: clamp(2rem, 8.8vw, 2.75rem);
    --fs-card: clamp(1.2rem, 6.1vw, 1.42rem);
  }

  .topbar {
    min-height: 68px;
    padding-right: 16px;
    padding-left: 16px;
    gap: 12px;
  }

  .brand-logo {
    width: 134px;
  }

  .nav-links {
    gap: 20px;
    padding: 4px 0 10px;
    font-size: 0.9rem;
  }

  .top-actions {
    justify-content: flex-end;
  }

  .top-actions .nav-cta {
    display: none;
  }

  .top-actions .help-link {
    font-size: 0.9rem;
    font-weight: 650;
  }

  .page-hero {
    gap: 34px;
    padding-top: 38px;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-h));
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 31, 0.82) 0%, rgba(5, 10, 31, 0.66) 54%, rgba(5, 10, 31, 0.9) 100%),
      radial-gradient(circle at 50% 10%, rgba(109, 80, 232, 0.22), transparent 22rem);
  }

  .hero-media-plane video {
    object-position: 61% center;
    opacity: 0.7;
  }

  .home-hero-copy {
    margin-left: 0;
  }

  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 9.4vw, 2.85rem);
    line-height: 1.1;
  }

  .home-hero .hero-lede {
    max-width: 30rem;
  }

  .hero-actions,
  .access-cta,
  .request-band,
  .urgent-callout,
  .footer-bottom,
  .footer-help-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .nav-cta,
  .route-card a {
    width: 100%;
  }

  .hero-video-frame video,
  .hero-video-frame img {
    min-height: 280px;
  }

  .lifestyle-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .route-grid,
  .info-grid.three,
  .info-grid.four,
  .check-grid,
  .brief-grid,
  .number-grid,
  .boundary-list,
  .split-detail,
  .comparison-table > div,
  .access-cta,
  .request-band,
  .urgent-callout,
  .footer-map {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
  }

  .app-media-stage {
    grid-template-columns: 1fr;
  }

  .app-media-stage > video {
    height: 440px;
  }

  .screenshot-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .screenshot-rail figure {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .evidence-list article {
    grid-template-columns: 1fr;
  }

  .comparison-table span {
    padding: 14px 16px;
  }

  .footer-wordmark {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-wordmark b {
    font-size: clamp(4.35rem, 18vw, 5.4rem);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
