

:root {

  --abyss: #171721;
  --surface: #1e1e2a;
  --interactive: #272735;
  --light-band: #f4f2ef;

  --starlight: #ededf3;
  --silver: #c3c3cc;
  --lead: #70707d;
  --ink: #1f2226;
  --ink-muted: #5b5f66;
  --pure-white: #ffffff;

  --accent: #5266eb;
  --accent-hover: #4557d6;
  --ghost-blue: #cdddff;

  --font-display: "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-text: "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-caption: 0.75rem;
  --text-body-sm: 0.875rem;
  --text-body: 1rem;
  --text-subheading: 1.125rem;
  --text-heading-sm: 1.3125rem;
  --text-heading: 2rem;
  --text-heading-lg: 3.0625rem;
  --text-display: 4.0625rem;

  --r-pill: 32px;
  --r-pill-sm: 40px;
  --r-card: 16px;
  --r-container: 4px;

  --page-max: 1200px;
  --gutter: 24px;
  --section-gap: 120px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 900px) {
  :root {
    --text-display: 2.625rem;
    --text-heading-lg: 2.125rem;
    --text-heading: 1.625rem;
    --section-gap: 80px;
    --gutter: 20px;
  }
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--abyss);
  color: var(--starlight);
  font-family: var(--font-text);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.012em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--surface);
  color: var(--starlight);
  padding: 12px 20px;
  border-radius: var(--r-pill);
}
.skip-link:focus { left: 16px; }

.noscript, .boot-error {
  max-width: 640px;
  margin: 80px auto;
  padding: 24px;
  border: 1px solid var(--lead);
  border-radius: var(--r-container);
  color: var(--silver);
  font-size: var(--text-body-sm);
}
.boot-error code { color: var(--starlight); }

.wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-gap); }
.section--tight { padding-block: calc(var(--section-gap) * 0.6); }
.section--surface { background: var(--surface); }
.section--abyss { background: var(--abyss); }
.on-light {
  background: var(--light-band);
  color: var(--ink);
}
.on-light h1, .on-light h2, .on-light h3 { color: var(--ink); }

.eyebrow {
  font-size: var(--text-body-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.on-light .eyebrow { color: var(--ink-muted); }

.lede {
  font-size: var(--text-heading-sm);
  line-height: 1.45;
  color: var(--silver);
  max-width: 56ch;
}
.on-light .lede { color: var(--ink-muted); }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center h2 { max-width: 30ch; margin-inline: auto; }
.section-head--center .lede { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-heading-lg); }
.section-head .lede { margin-top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--text-body);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--pure-white);
}
.btn--primary:hover { background: var(--accent-hover); }

.btn--secondary {
  background: color-mix(in srgb, var(--ghost-blue) 16%, transparent);
  color: var(--starlight);
  border-radius: var(--r-pill-sm);
}
.btn--secondary:hover { background: color-mix(in srgb, var(--ghost-blue) 26%, transparent); }

.btn--ghost {
  background: transparent;
  color: var(--starlight);
  border-color: var(--lead);
}
.btn--ghost:hover { background: var(--interactive); }

.on-light .btn--ghost { color: var(--ink); border-color: rgba(31, 34, 38, 0.25); }
.on-light .btn--ghost:hover { background: rgba(31, 34, 38, 0.06); }

.btn--sm { padding: 9px 20px; font-size: var(--text-body-sm); border-radius: var(--r-pill-sm); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.announcement {
  background: var(--abyss);
  border-bottom: 1px solid rgba(112, 112, 125, 0.28);
  font-size: var(--text-body-sm);
  color: var(--silver);
  text-align: center;
  padding: 10px var(--gutter);
}
.announcement a { color: var(--starlight); text-decoration: underline; text-underline-offset: 3px; }
.announcement strong { font-weight: 500; color: var(--starlight); }

.site-header {
  position: absolute;
  inset-inline: 0;
  z-index: 20;
}
.site-header.is-stuck {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--abyss) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(112, 112, 125, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff 0%, var(--silver) 34%, #6f6f80 70%, #33333f 100%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  font-size: var(--text-body-sm);
}
.nav__links a { color: var(--starlight); opacity: 0.86; transition: opacity 140ms var(--ease); }
.nav__links a:hover { opacity: 1; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: var(--text-body-sm); color: var(--starlight); opacity: 0.86; }
.nav__login:hover { opacity: 1; }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 20px; height: 1px; background: var(--starlight); margin: 5px 0; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; order: 3; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px var(--gutter) 28px;
    background: var(--abyss);
    border-bottom: 1px solid rgba(112, 112, 125, 0.28);
  }
  .nav__links.is-open a { padding: 10px 0; font-size: var(--text-subheading); }
  .nav__login { display: none; }
}

.hero {
  position: relative;
  min-height: clamp(640px, 94vh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 62%;
  transform: scale(1.04);
}

.hero__bg--fallback {
  background:
    radial-gradient(120% 70% at 50% 104%, #59617f 0%, transparent 58%),
    radial-gradient(80% 44% at 24% 86%, #6a7290 0%, transparent 56%),
    radial-gradient(64% 40% at 82% 90%, #767d99 0%, transparent 58%),
    radial-gradient(150% 100% at 50% -6%, #343a56 0%, #22253a 42%, #16171f 100%);
}

.hero__bg--fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 100%, 0 74%, 9% 68%, 17% 72%, 26% 61%, 34% 66%, 43% 57%, 52% 64%, 61% 55%, 71% 63%, 80% 56%, 89% 65%, 100% 60%, 100% 100%);
  background: linear-gradient(180deg, rgba(38, 42, 62, 0.86) 0%, rgba(26, 28, 42, 0.96) 46%, #191a24 100%);
}

.hero__bg--fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 100%, 0 89%, 14% 82%, 27% 88%, 39% 79%, 51% 86%, 64% 78%, 78% 87%, 90% 81%, 100% 86%, 100% 100%);
  background: linear-gradient(180deg, #15161f 0%, #101119 100%);
  box-shadow: 0 -40px 90px 40px rgba(24, 26, 38, 0.55);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,10,20,0.62) 0%, rgba(6,10,20,0.22) 34%, rgba(6,10,20,0.30) 62%, rgba(23,23,33,0.94) 100%);
}

.hero__inner {
  text-align: center;
  padding-block: 200px 96px;
}

.hero h1 {
  font-size: var(--text-display);
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 16ch;
  margin-inline: auto;
}

.hero__sub {
  margin: 22px auto 0;
  max-width: 46ch;
  font-size: var(--text-heading-sm);
  line-height: 1.45;
  color: rgba(237, 237, 243, 0.82);
}

.hero__cta { margin-top: 36px; display: flex; justify-content: center; }

.email-cta {
  display: flex;
  align-items: stretch;
  max-width: 480px;
  width: 100%;
  border: 1px solid rgba(237, 237, 243, 0.32);
  border-radius: var(--r-pill);
  background: rgba(23, 23, 33, 0.34);
  backdrop-filter: blur(8px);
  padding: 5px 5px 5px 6px;
}
.email-cta input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--starlight);
  font: inherit;
  padding: 0 18px;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
}
.email-cta input::placeholder { color: rgba(237, 237, 243, 0.55); }
.email-cta input:focus { outline: none; }
.email-cta:focus-within { border-color: rgba(237, 237, 243, 0.62); }
.email-cta.is-invalid { border-color: #e2695f; }

.hero__error {
  margin-top: 10px;
  font-size: var(--text-body-sm);
  color: #f0a49c;
  min-height: 1.2em;
}
.hero__note {
  margin-top: 14px;
  font-size: var(--text-body-sm);
  color: rgba(237, 237, 243, 0.76);
}

.hero__legal {
  position: relative;
  border-top: 1px solid rgba(112, 112, 125, 0.3);
  background: rgba(19, 20, 28, 0.72);
  font-size: var(--text-caption);
  line-height: 1.5;
  color: rgba(195, 195, 204, 0.88);
  padding-block: 14px;
}

@media (max-width: 720px) {
  .hero { min-height: 620px; }
  .hero__inner { padding-block: 150px 72px; }
  .email-cta { flex-direction: column; gap: 8px; border-radius: 24px; padding: 10px; background: rgba(23,23,33,0.5); }
  .email-cta input { padding: 12px 14px; border-radius: 20px; background: rgba(255,255,255,0.05); }
  .email-cta .btn { width: 100%; }
}

.featurelist__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .featurelist__grid { grid-template-columns: 1fr; gap: 40px; }
}

.featurelist h2 { font-size: var(--text-heading-lg); max-width: 14ch; margin-bottom: 40px; }

.frow {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(112, 112, 125, 0.42);
  padding: 22px 0;
  cursor: pointer;
  transition: opacity 160ms var(--ease);
}
.frow__title {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: 400;
  color: var(--starlight);
}
.frow__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease);
}
.frow__body > div { overflow: hidden; }
.frow__body p {
  font-size: var(--text-body-sm);
  color: var(--silver);
  max-width: 46ch;
  padding-top: 10px;
}
.frow[aria-expanded="false"] { opacity: 0.62; }
.frow[aria-expanded="false"]:hover { opacity: 0.86; }
.frow[aria-expanded="true"] .frow__body { grid-template-rows: 1fr; }

.figure {
  position: relative;
  width: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--interactive);
  aspect-ratio: 4 / 3;
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--square { aspect-ratio: 1 / 1; }

.on-light .figure { background: #e7e9ec; }

.figure--orb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(38% 38% at 50% 50%, rgba(255,255,255,0.58) 0%, rgba(198,204,222,0.20) 44%, transparent 68%),
    radial-gradient(120% 100% at 50% 118%, rgba(255,255,255,0.05) 0%, transparent 58%);
}
.figure--arc::after {
  content: "";
  position: absolute; inset: -20%;
  background:
    conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(255,255,255,0.5) 70deg, transparent 150deg),
    radial-gradient(60% 60% at 50% 50%, transparent 52%, rgba(255,255,255,0.10) 54%, transparent 58%);
  filter: blur(6px);
}
.figure--mist::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(255,255,255,0.30) 0%, transparent 62%),
    radial-gradient(60% 70% at 78% 74%, rgba(205,221,255,0.26) 0%, transparent 64%),
    linear-gradient(160deg, rgba(255,255,255,0.06), transparent 60%);
}
.figure--grid::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.16) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 1px, transparent 1px 30px),
    radial-gradient(66% 66% at 46% 38%, rgba(255,255,255,0.18), transparent 72%);
  mask-image: radial-gradient(88% 88% at 48% 42%, #000 24%, transparent 82%);
}
.figure--ridge::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(96deg, rgba(255,255,255,0.13) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.10) 100%);
  mask-image: linear-gradient(180deg, transparent 8%, #000 55%, transparent 98%);
}
.figure--halo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(38% 38% at 50% 50%, transparent 58%, rgba(255,255,255,0.55) 60%, transparent 64%),
    radial-gradient(56% 56% at 50% 50%, transparent 70%, rgba(255,255,255,0.22) 72%, transparent 76%),
    radial-gradient(100% 80% at 50% 50%, rgba(205,221,255,0.10), transparent 70%);
}

.on-light .figure {
  background: linear-gradient(168deg, #eceef1 0%, #dfe2e7 100%);
}
.on-light .figure--orb::after {
  background:
    radial-gradient(38% 38% at 50% 50%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 42%, transparent 66%),
    radial-gradient(72% 72% at 50% 54%, rgba(90,98,120,0.20), transparent 70%);
}
.on-light .figure--mist::after {
  background:
    radial-gradient(70% 60% at 22% 30%, rgba(255,255,255,0.95) 0%, transparent 62%),
    radial-gradient(60% 70% at 78% 74%, rgba(120,132,168,0.24) 0%, transparent 64%);
}
.on-light .figure--halo::after {
  background:
    radial-gradient(38% 38% at 50% 50%, transparent 58%, rgba(88,96,120,0.42) 60%, transparent 64%),
    radial-gradient(56% 56% at 50% 50%, transparent 70%, rgba(88,96,120,0.20) 72%, transparent 76%);
}
.on-light .figure--arc::after {
  background:
    conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(96,104,128,0.38) 70deg, transparent 150deg);
}
.on-light .figure--grid::after {
  background:
    repeating-linear-gradient(0deg, rgba(70,78,98,0.16) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(70,78,98,0.16) 0 1px, transparent 1px 30px),
    radial-gradient(66% 66% at 46% 38%, rgba(70,78,98,0.10), transparent 72%);
}
.on-light .figure--ridge::after {
  background:
    repeating-linear-gradient(96deg, rgba(70,78,98,0.20) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, transparent 40%, rgba(70,78,98,0.14) 100%);
}

.logos { text-align: center; }
.logos h2 { font-size: var(--text-heading); max-width: 22ch; margin-inline: auto; }
.logos__wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
  margin-top: 48px;
  opacity: 0.72;
}
.logos__wall li {
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--starlight);
}

.quotes__stage {
  position: relative;
  background: var(--interactive);
  border-radius: var(--r-card);
  overflow: hidden;
}
.qslide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  min-height: 340px;
}
.qslide[hidden] { display: none; }
.qslide__body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.qslide__text {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 300;
  line-height: 1.25;
  color: var(--starlight);
  max-width: 24ch;
}
.qslide__who { font-size: var(--text-body-sm); color: var(--silver); }
.qslide__who strong { display: block; color: var(--starlight); font-weight: 500; }
.qslide__media { position: relative; }
.qslide__media .figure { height: 100%; border-radius: 0; aspect-ratio: auto; }

@media (max-width: 860px) {
  .qslide { grid-template-columns: 1fr; }
  .qslide__body { padding: 36px 24px; }
  .qslide__media { min-height: 220px; order: -1; }
}

.quotes__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}
.qdots { display: flex; gap: 8px; }
.qdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(237, 237, 243, 0.28);
  cursor: pointer;
  transition: width 200ms var(--ease), background-color 200ms var(--ease);
}
.qdot[aria-current="true"] { width: 26px; border-radius: 4px; background: var(--starlight); }

.qpause {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--lead);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
  color: var(--starlight);
}

.cardgrid { display: grid; gap: 24px; }
.cardgrid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cardgrid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) { .cardgrid[data-cols="2"], .cardgrid[data-cols="3"] { grid-template-columns: 1fr; } }

.card {
  border-radius: var(--r-card);
  background: var(--interactive);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background-color 160ms var(--ease);
}
.on-light .card { background: var(--pure-white); border: 1px solid rgba(31,34,38,0.07); }
.card__title {
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-weight: 500;
}
.card__text { font-size: var(--text-body-sm); color: var(--silver); }
.on-light .card__text { color: var(--ink-muted); }
.card .figure { margin-bottom: 2px; }
.card--linked:hover { background: color-mix(in srgb, var(--interactive) 70%, var(--starlight) 6%); }

.card__arrow {
  margin-top: auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--lead);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.split[data-flip="true"] .split__media { order: -1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split[data-flip="true"] .split__media { order: 0; }
}
.split h2 { font-size: var(--text-heading); max-width: 18ch; }
.split__list { margin-top: 28px; display: grid; gap: 0; }
.split__list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(112, 112, 125, 0.35);
  font-size: var(--text-body);
  color: var(--silver);
}
.split__list li strong { display: block; color: var(--starlight); font-weight: 500; margin-bottom: 4px; }
.on-light .split__list li { border-color: rgba(31,34,38,0.12); color: var(--ink-muted); }
.on-light .split__list li strong { color: var(--ink); }
.split .btn-row { margin-top: 32px; }

.stats h2 { font-size: var(--text-heading-lg); text-align: center; max-width: 20ch; margin-inline: auto; }
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
}
.stats__item {
  padding-inline: 24px;
  text-align: center;
  border-left: 1px solid rgba(112, 112, 125, 0.35);
}
.stats__item:first-child { border-left: 0; }
.stats__value {
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: 300;
  line-height: 1;
}
.stats__label { margin-top: 12px; font-size: var(--text-body-sm); color: var(--silver); }
@media (max-width: 780px) {
  .stats__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 0; }
  .stats__item:nth-child(odd) { border-left: 0; }
}

.bigquote { text-align: center; }
.bigquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 300;
  line-height: 1.3;
  max-width: 26ch;
  margin-inline: auto;
}
.bigquote figcaption { margin-top: 28px; font-size: var(--text-body-sm); color: var(--silver); }
.bigquote figcaption strong { display: block; color: var(--starlight); font-weight: 500; }

.finalcta { text-align: center; }
.finalcta h2 { font-size: var(--text-heading-lg); max-width: 16ch; margin-inline: auto; }
.finalcta .btn-row { justify-content: center; margin-top: 32px; }

.panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
  text-align: left;
}
@media (max-width: 780px) { .panels { grid-template-columns: 1fr; } }
.panel {
  background: var(--interactive);
  border-radius: var(--r-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel h3 { font-size: var(--text-heading-sm); font-weight: 400; }
.panel p { font-size: var(--text-body-sm); color: var(--silver); }
.panel .btn { align-self: flex-start; margin-top: 10px; }

.site-footer {
  background: var(--abyss);
  border-top: 1px solid rgba(112, 112, 125, 0.24);
  padding-block: 72px 48px;
  font-size: var(--text-body-sm);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 40px 24px;
}
@media (max-width: 1000px) { .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.footer__col h4 {
  font-size: var(--text-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--starlight);
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--silver); transition: color 140ms var(--ease); }
.footer__col a:hover { color: var(--starlight); }

.footer__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(112, 112, 125, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  color: var(--silver);
  font-size: var(--text-caption);
}

.footer__legal {
  margin-top: 32px;
  column-count: 2;
  column-gap: 40px;
  font-size: var(--text-caption);
  line-height: 1.6;
  color: rgba(195, 195, 204, 0.8);
}
.footer__legal p { margin-bottom: 14px; break-inside: avoid; }
@media (max-width: 780px) { .footer__legal { column-count: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { transform: none; }
}

.cards--banded { padding-bottom: 0; }
.cards--banded > .wrap > .section-head { margin-bottom: 44px; }
.cardband { padding-block: 64px 72px; }
.cardband .cardgrid { margin: 0; }

.cardgrid--plain { gap: 44px 24px; }
.cardgrid--plain .card {
  background: none;
  border: 0;
  padding: 0;
  gap: 16px;
}
.cardgrid--plain .card:hover { background: none; }
.cardgrid--plain .card .figure { border-radius: 12px; margin-bottom: 0; }
.cardgrid--plain .card__title {
  font-family: var(--font-text);
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cardgrid--plain .card__text {
  font-size: var(--text-body-sm);
  line-height: 1.45;
  max-width: 46ch;
}
.cardgrid--plain .card > * + * { margin-top: -4px; }
.cardgrid--plain .card .figure + * { margin-top: 0; }

.card--press { padding: 16px 16px 20px; gap: 22px; }
.card--press .figure { border-radius: 10px; aspect-ratio: 3 / 2; }
.card--press .card__title {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: 400;
  line-height: 1.25;
  padding-inline: 6px;
}
.card--press .card__arrow { margin-left: 6px; }
.card--press:hover .card__arrow { background: var(--interactive); border-color: var(--starlight); }

.quotes__stage { border-radius: var(--r-card); }
.qslide { grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr); min-height: 0; }
.qslide__body { padding: 48px 44px; gap: 20px; }
.qslide__text { font-size: var(--text-heading-sm); line-height: 1.4; max-width: 30ch; }
.qslide__media { min-height: 420px; }
@media (min-width: 861px) {
  .quotes__stage { aspect-ratio: 2 / 1; }
  .qslide { height: 100%; }
}
@media (max-width: 860px) {
  .qslide__media { min-height: 260px; }
}

.qdots--line { gap: 4px; }
.qdots--line .qdot {
  width: 64px;
  height: 2px;
  border-radius: 1px;
  background: rgba(237, 237, 243, 0.24);
  transition: background-color 220ms var(--ease);
}
.qdots--line .qdot[aria-current="true"] { width: 64px; background: var(--starlight); }

.acctpanel {
  background: linear-gradient(168deg, #24242f 0%, #1c1c26 100%);
  border: 1px solid rgba(112, 112, 125, 0.24);
  border-radius: var(--r-card);
  padding: 22px 22px 10px;
}
.acctpanel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(112, 112, 125, 0.28);
}
.acctpanel__label { font-size: var(--text-caption); letter-spacing: 0.06em; text-transform: uppercase; color: var(--silver); }
.acctpanel__total { font-family: var(--font-display); font-size: var(--text-heading-sm); font-weight: 400; font-variant-numeric: tabular-nums; }
.acctpanel__row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(112, 112, 125, 0.16);
}
.acctpanel__row:last-child { border-bottom: 0; }
.acctpanel__chip {
  width: 26px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(150deg, #3a3a4c 0%, #2a2a38 100%);
  border: 1px solid rgba(237, 237, 243, 0.14);
}
.acctpanel__name { font-size: var(--text-body-sm); color: var(--starlight); }
.acctpanel__meta { font-size: var(--text-caption); color: var(--silver); }
.acctpanel__amt { font-size: var(--text-body-sm); color: var(--starlight); font-variant-numeric: tabular-nums; }

.hero__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.hero__controls .email-cta { width: auto; max-width: none; flex: 0 1 auto; }
.hero__controls .email-cta input { flex: 0 1 auto; width: 280px; }
@media (max-width: 720px) {
  .hero__controls { flex-direction: column; width: 100%; }
  .hero__controls > * { width: 100%; }
  .hero__controls .email-cta input { width: 100%; }
}

.stats__value { letter-spacing: -0.01em; }

.figure--portrait { aspect-ratio: 4 / 5; }

.hero { min-height: clamp(580px, 47vw, 760px); }
.hero__bg { background-position: center 58%; }
.hero__inner { padding-block: 150px 120px; }

.hero__legal {
  border-top: 0;
  background: none;
  padding-block: 0 26px;
}
.hero__legal .wrap { display: flex; justify-content: center; }
.hero__legal p {
  background: rgba(23, 23, 33, 0.82);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  max-width: 110ch;
  text-align: center;
}
@media (max-width: 720px) {
  .hero__inner { padding-block: 132px 64px; }
  .hero__legal p { border-radius: 16px; text-align: left; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.phero {
  background: var(--abyss);
  padding-block: 150px 56px;
  border-bottom: 1px solid rgba(112, 112, 125, 0.2);
}
.phero h1 { font-size: var(--text-heading-lg); max-width: 20ch; }
.phero .lede { margin-top: 18px; }

.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: var(--text-body-sm); color: var(--silver);
  margin-bottom: 22px;
}
.crumbs a { color: var(--silver); }
.crumbs a:hover { color: var(--starlight); }

.pbody { padding-block: 72px 96px; }
.pblock + .pblock { margin-top: 64px; }
.pblock > h2 { font-size: var(--text-heading); max-width: 24ch; margin-bottom: 26px; }

.prose { max-width: 68ch; display: grid; gap: 16px; }
.prose p { color: var(--silver); line-height: 1.7; }
.prose a, .deflist a, .qa__a a { color: var(--starlight); text-decoration: underline; text-underline-offset: 3px; }

.deflist { max-width: 74ch; }
.deflist li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(112, 112, 125, 0.28);
}
.deflist li:first-child { border-top: 1px solid rgba(112, 112, 125, 0.28); }
.deflist strong { display: block; font-weight: 500; margin-bottom: 6px; }
.deflist span { color: var(--silver); font-size: var(--text-body-sm); line-height: 1.65; }

.steps { max-width: 74ch; counter-reset: s; }
.steps li {
  display: grid; grid-template-columns: 34px 1fr; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(112, 112, 125, 0.28);
}
.steps li:first-child { border-top: 1px solid rgba(112, 112, 125, 0.28); }
.step__n {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--lead);
  display: grid; place-items: center;
  font-size: var(--text-body-sm); color: var(--silver);
}
.steps strong { display: block; font-weight: 500; margin-bottom: 6px; }
.steps span { color: var(--silver); font-size: var(--text-body-sm); line-height: 1.65; }

.qalist { max-width: 78ch; border-top: 1px solid rgba(112, 112, 125, 0.28); }
.qa { border-bottom: 1px solid rgba(112, 112, 125, 0.28); }
.qa__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: var(--text-subheading); font-weight: 400;
  color: var(--starlight);
}
.qa__mk { position: relative; width: 14px; height: 14px; flex: none; }
.qa__mk::before, .qa__mk::after {
  content: ""; position: absolute; inset: 50% 0 auto 0;
  height: 1px; background: var(--starlight);
  transition: transform 200ms var(--ease);
}
.qa__mk::after { transform: rotate(90deg); }
.qa__q[aria-expanded="true"] .qa__mk::after { transform: rotate(0deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms var(--ease); }
.qa__a > div { overflow: hidden; }
.qa__a p { color: var(--silver); font-size: var(--text-body-sm); line-height: 1.7; padding-bottom: 22px; max-width: 62ch; }
.qa__q[aria-expanded="true"] + .qa__a { grid-template-rows: 1fr; }

.signup-sec { border-top: 1px solid rgba(112, 112, 125, 0.2); }
.signup { max-width: 620px; margin-inline: auto; text-align: center; }
.signup__title { font-size: var(--text-heading); margin-bottom: 16px; }
.signup .lede { margin-inline: auto; margin-bottom: 34px; }

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}
.field--wide, .signup-form .btn, .signup__note, .signup__legal { grid-column: 1 / -1; }
.field { position: relative; }

.inp {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(112, 112, 125, 0.5);
  border-radius: var(--r-pill);
  color: var(--starlight);
  font: inherit;
  transition: border-color 150ms var(--ease), background-color 150ms var(--ease);
}
.inp::placeholder { color: rgba(237, 237, 243, 0.45); }
.inp:focus { outline: none; border-color: rgba(237, 237, 243, 0.7); background: rgba(255, 255, 255, 0.07); }
.inp.err { border-color: #e2695f; }
.field__err { margin: 8px 0 0 18px; font-size: var(--text-caption); color: #f0a49c; }

.signup-form .btn--block { width: 100%; margin-top: 6px; }
.submit.busy { opacity: 0.65; pointer-events: none; }

.signup__note { font-size: var(--text-body-sm); color: var(--silver); text-align: center; margin-top: 4px; }
.signup__legal { font-size: var(--text-caption); color: rgba(195, 195, 204, 0.8); text-align: center; line-height: 1.6; }
.signup__legal a { color: var(--silver); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 620px) {
  .signup-form { grid-template-columns: 1fr; }
}

.midpage { padding-block: 190px 140px; text-align: center; }
.midpage h1 { font-size: var(--text-heading-lg); max-width: 18ch; margin-inline: auto; }
.midpage .lede { margin: 20px auto 0; text-align: center; }
.midpage__note { margin-top: 18px; font-size: var(--text-body-sm); color: var(--silver); }
.midpage__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  margin: 30px 0 8px; font-size: var(--text-body-sm);
}
.midpage__links a { color: var(--silver); }
.midpage__links a:hover { color: var(--starlight); }
.midpage .btn-row { justify-content: center; margin-top: 26px; }

.stats__caption, .acctpanel__caption {
  margin-top: 22px;
  font-size: var(--text-caption);
  color: rgba(195, 195, 204, 0.72);
  text-align: center;
}
.acctpanel__caption { text-align: left; margin-top: 12px; }
.frow__p { display: block; padding-top: 10px; font-size: var(--text-body-sm); color: var(--silver); max-width: 46ch; }

@media (max-width: 900px) {
  .phero { padding-block: 120px 44px; }
  .pbody { padding-block: 52px 72px; }
  .midpage { padding-block: 150px 100px; }
}

.proseband__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 64px;
}
@media (max-width: 860px) { .proseband__grid { grid-template-columns: 1fr; gap: 40px; } }
.proseband__col h3 {
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-weight: 500;
  margin-bottom: 14px;
}
.proseband__col p {
  color: var(--silver);
  font-size: var(--text-body-sm);
  line-height: 1.7;
  max-width: 54ch;
}
.proseband__col p + p { margin-top: 12px; }
.proseband__col a { color: var(--starlight); text-decoration: underline; text-underline-offset: 3px; }

.on-light .figure { background: linear-gradient(168deg, #e9ebef 0%, #d8dce3 100%); }
.on-light .figure--grid::after {
  background:
    repeating-linear-gradient(0deg, rgba(58,66,88,0.26) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(58,66,88,0.26) 0 1px, transparent 1px 26px),
    radial-gradient(62% 62% at 46% 38%, rgba(58,66,88,0.16), transparent 74%);
}
.on-light .figure--ridge::after {
  background:
    repeating-linear-gradient(96deg, rgba(58,66,88,0.30) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, transparent 34%, rgba(58,66,88,0.20) 100%);
}
.on-light .figure--orb::after {
  background:
    radial-gradient(36% 36% at 50% 50%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.30) 44%, transparent 66%),
    radial-gradient(74% 74% at 50% 54%, rgba(62,70,94,0.32), transparent 72%);
}
.on-light .figure--halo::after {
  background:
    radial-gradient(37% 37% at 50% 50%, transparent 57%, rgba(62,70,94,0.55) 60%, transparent 64%),
    radial-gradient(55% 55% at 50% 50%, transparent 69%, rgba(62,70,94,0.30) 72%, transparent 76%);
}
