/* ManaCircle — coming soon
   Palette anchored on Base blue (#0052FF) over deep navy. */

:root {
  --base-blue: #0052ff;
  --base-blue-lit: #4d86ff;
  --base-blue-soft: #9dbaff;

  --ink-0: #080c18;   /* page floor */
  --ink-1: #080d1c;   /* page */
  --text-hi: #f2f5ff;
  --text-mid: #a8b3cf;
  --text-low: #6a7592;

  --line: rgba(120, 150, 220, 0.17);
  --line-soft: rgba(120, 150, 220, 0.10);
  --panel: rgba(20, 30, 60, 0.72);

  --ok: #2dbe82;
  --warn: #f0aa28;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell: min(1180px, 100% - 2 * clamp(20px, 5vw, 64px));
}

* { box-sizing: border-box; }

/* the first screen keeps the original full-viewport grid; content scrolls in below it */
.screen {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: minmax(0, 1fr);
}

html, body { height: 100%; }

body {
  margin: 0;
  position: relative;
  background-color: var(--ink-0);
  background-image:
    radial-gradient(58% 18% at 74% 27%, rgba(0, 82, 255, 0.16), transparent 72%),
    radial-gradient(52% 15% at 8% 51%, rgba(77, 134, 255, 0.11), transparent 72%),
    radial-gradient(64% 16% at 64% 73%, rgba(0, 82, 255, 0.13), transparent 72%);
  background-repeat: no-repeat;
  color: var(--text-hi);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- background ---------- */

.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, #12224f 0%, rgba(8, 13, 28, 0) 60%),
    linear-gradient(180deg, var(--ink-1) 0%, var(--ink-0) 100%);
}

/* perspective grid, faded out toward the edges */
.bg-grid {
  position: absolute;
  inset: -20% -10% -10%;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(72% 60% at 50% 42%, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 85%);
  -webkit-mask-image: radial-gradient(72% 60% at 50% 42%, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 85%);
  opacity: 0.75;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.glow-a {
  width: 46vmax;
  height: 46vmax;
  top: -14vmax;
  left: 50%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.55) 0%, rgba(0, 82, 255, 0) 70%);
  animation: drift-a 22s ease-in-out infinite alternate;
}

.glow-b {
  width: 34vmax;
  height: 34vmax;
  bottom: -16vmax;
  right: -6vmax;
  background: radial-gradient(circle, rgba(77, 134, 255, 0.32) 0%, rgba(77, 134, 255, 0) 70%);
  animation: drift-b 28s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate3d(-4%, 0, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.08); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to   { transform: translate3d(-6%, -4%, 0) scale(0.95); }
}

/* film grain so the gradients never band */
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- the circle ---------- */

.orbit-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit {
  width: min(132vmin, 1020px);
  height: min(132vmin, 1020px);
  overflow: visible;
}

.ring {
  fill: none;
  stroke: rgba(130, 170, 255, 0.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.ring-dashed {
  stroke: rgba(130, 170, 255, 0.14);
  stroke-dasharray: 3 9;
}

.member {
  fill: var(--base-blue-lit);
  filter: drop-shadow(0 0 7px rgba(0, 82, 255, 0.95));
}

.member-dim {
  fill: var(--base-blue-soft);
  opacity: 0.55;
  filter: none;
}

.spin { transform-box: view-box; transform-origin: 50% 50%; }
.spin-1 { animation: spin 26s linear infinite; }
.spin-2 { animation: spin 40s linear infinite reverse; }
.spin-3 { animation: spin 58s linear infinite; }
.spin-4 { animation: spin 84s linear infinite reverse; }

.offset-60  { rotate: 60deg; }
.offset-120 { rotate: 120deg; }
.offset-200 { rotate: 200deg; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- header ---------- */

.site-head,
.site-foot,
.stage {
  position: relative;
  z-index: 2;
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
}

.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(22px, 4vw, 38px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-hi);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--base-blue);
  box-shadow: 0 0 0 1px rgba(157, 186, 255, 0.45), 0 0 18px rgba(0, 82, 255, 0.7);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #eaf0ff;
}

.brand-name {
  font-size: 1.0625rem;
  font-weight: 600;
}
.brand-name span { color: var(--base-blue-soft); font-weight: 500; }

.chain-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 11px;
  border: 1px solid rgba(0, 82, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 82, 255, 0.1);
  color: #cddcff;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.chain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--base-blue-lit);
  box-shadow: 0 0 10px rgba(77, 134, 255, 1);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.8); }
}

/* ---------- hero ---------- */

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(32px, 8vh, 90px);
}

.headline {
  margin: 0;
  font-size: clamp(2.9rem, 12vw, 7.4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 100%;
}

.headline .line { display: block; }

.headline .accent {
  background: linear-gradient(100deg, #ffffff 0%, var(--base-blue-soft) 34%, var(--base-blue) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* keep the glyph descenders/gradient from clipping */
  padding-bottom: 0.06em;
}

.dots {
  display: inline-flex;
  gap: 0.11em;
  margin-left: 0.07em;
  vertical-align: baseline;
}

.dots i {
  width: 0.1em;
  height: 0.1em;
  border-radius: 50%;
  background: var(--base-blue);
  animation: bounce 1.5s ease-in-out infinite;
}
.dots i:nth-child(2) { animation-delay: 0.2s; }
.dots i:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { opacity: 0.28; transform: translateY(0); }
  30%           { opacity: 1;    transform: translateY(-0.14em); }
}

.sub {
  margin: clamp(20px, 3.5vh, 34px) 0 0;
  max-width: 33ch;
  color: var(--text-mid);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.65;
  text-wrap: balance;
}

.sub strong {
  color: var(--text-hi);
  font-weight: 600;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 100%;
  margin-top: clamp(30px, 5vh, 48px);
  padding: 9px 18px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 14, 32, 0.55);
  backdrop-filter: blur(8px);
}

.status-bar {
  position: relative;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: rgba(120, 150, 220, 0.18);
  overflow: hidden;
}

.status-fill {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--base-blue), var(--base-blue-soft));
  animation: crawl 3.6s ease-in-out infinite;
}

@keyframes crawl {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.status-text {
  color: var(--text-mid);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

/* ---------- footer ---------- */

.site-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: clamp(22px, 4vw, 38px);
  color: var(--text-low);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  text-align: center;
}

.foot-domain { color: var(--base-blue-soft); }
.foot-sep { color: rgba(120, 150, 220, 0.35); }

@media (max-width: 560px) {
  :root { --shell: min(1180px, 100% - 40px); }
  .chain-tag { font-size: 0.625rem; padding: 5px 10px 5px 8px; gap: 6px; }
  .brand-name { font-size: 1rem; }
  .status { padding: 8px 14px; }
  .status-bar { width: 40px; }
  .status-text { font-size: 0.6875rem; }
  .site-foot { font-size: 0.6875rem; }
  .foot-sep { display: none; }
  .site-foot { flex-direction: column; gap: 6px; }
}

/* ---------- motion off ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .dots i { opacity: 0.6; }
  .status-fill { width: 45%; transform: none; }
}

/* ==========================================================================
   Content sections — everything below the first screen.
   No JavaScript anywhere: the FAQ is <details>, the ladder is CSS widths.
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--base-blue-lit);
  outline-offset: 2px;
  border-radius: 4px;
}

.section {
  position: relative;
  z-index: 2;
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
  padding-block: clamp(54px, 9vw, 106px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.sec-head { max-width: 66ch; }

/* ---------- the blue band ---------- */

.section.band {
  border-top: 0;
  background: var(--base-blue);
  box-shadow: 0 0 0 100vmax var(--base-blue);
  clip-path: inset(0 -100vmax);
}

.band + .section { border-top: 0; }

.band .eyebrow { color: rgba(255, 255, 255, 0.66); }
.band h2       { color: #ffffff; }
.band .lede    { color: rgba(255, 255, 255, 0.88); }

.band .whys {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.3);
}
.band .why    { background: var(--base-blue); }
.band .why h3 { color: #ffffff; }
.band .why p  { color: rgba(255, 255, 255, 0.88); }

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.lede {
  margin: 16px 0 0;
  color: var(--text-mid);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.72;
}

.lede em,
.mode-sub em { font-style: italic; color: var(--text-hi); }

@media (min-width: 1000px) {
  .sec-head {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    column-gap: clamp(36px, 5vw, 76px);
    align-items: start;
  }
  .sec-head > .eyebrow { grid-area: 1 / 1; }
  .sec-head > h2      { grid-area: 2 / 1; }
  .sec-head > .lede   { grid-area: 1 / 2 / 3 / 3; margin-top: 3px; }

  /* a head with no lede (the FAQ) would otherwise wrap into an empty second column */
  .sec-head:not(:has(.lede)) { grid-template-columns: minmax(0, 1fr); }
}

.note {
  margin: 18px 0 0;
  max-width: 88ch;
  color: var(--text-low);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ---------- the circle board ---------- */

.board {
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.board-cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.board-title { color: var(--text-hi); }
.board-meta  { color: var(--text-low); }

.board-scroll { overflow-x: auto; }

.board table {
  border-collapse: collapse;
  width: 100%;
  min-width: 580px;
}

.board th {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-low);
}

.board td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.board tbody tr:last-child td { border-bottom: 0; }

.board td:first-child {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-hi);
  white-space: nowrap;
}

.board .num {
  text-align: right;
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-hi);
}

.board .dim { color: var(--text-low); }

.row-take td { background: rgba(0, 82, 255, 0.06); }
.row-warn td { background: rgba(240, 170, 40, 0.05); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}

.pill.ok   { background: rgba(45, 190, 130, 0.12); border-color: rgba(45, 190, 130, 0.3); color: #7fe0b4; }
.pill.ok::before { background: var(--ok); }

.pill.warn { background: rgba(240, 170, 40, 0.13); border-color: rgba(240, 170, 40, 0.34); color: #ffd489; }
.pill.warn::before { background: var(--warn); animation: pulse 2.4s ease-in-out infinite; }

.pill.take { background: rgba(0, 82, 255, 0.16); border-color: rgba(0, 82, 255, 0.45); color: #cddcff; }
.pill.take::before { background: var(--base-blue-lit); }

/* ---------- the two modes ---------- */

.modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mode {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.mode header { margin-bottom: 18px; }

.mode-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--base-blue-soft);
}

.mode h3 {
  margin: 9px 0 0;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.028em;
}

.mode p {
  margin: 0 0 18px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.72;
}

.mode p strong { color: var(--text-hi); font-weight: 600; }

.callout {
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 82, 255, 0.32);
  border-radius: 12px;
  background: rgba(0, 82, 255, 0.08);
}

.callout-tag {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--base-blue-soft);
}

.callout p { margin: 0; color: #cddcff; font-size: 0.9375rem; line-height: 1.68; }
.callout p strong { color: #ffffff; }

.mode-foot {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--text-low);
}
.mode-foot strong { color: var(--text-mid); font-weight: 600; }

/* ---------- faq ---------- */

.faq {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq details { border-bottom: 1px solid var(--line-soft); }
.faq details:last-child { border-bottom: 0; }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-hi);
}

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

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--mono);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--base-blue-soft);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { background: rgba(0, 82, 255, 0.06); }

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  max-width: 80ch;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.72;
}

/* ---------- page footer ---------- */

.page-foot {
  position: relative;
  z-index: 2;
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
  padding-block: clamp(40px, 6vw, 62px) 48px;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.foot-brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.foot-brand p {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 12px 0 0;
  max-width: 42ch;
  color: var(--text-low);
  font-size: 0.875rem;
  line-height: 1.65;
}

.foot-links { display: grid; gap: 10px; }
.foot-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  width: fit-content;
}
.foot-links a:hover { color: var(--text-hi); }

.foot-side { display: grid; gap: 12px; justify-items: start; }
.foot-social {
  color: var(--base-blue-soft);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.foot-rule { height: 1px; background: var(--line); margin: 34px 0 18px; }

.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-low);
}

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
}

@media (max-width: 560px) {
  .faq summary { font-size: 0.9375rem; }
  .foot-base { flex-direction: column; gap: 7px; }
}

/* ---------- how it works: a real sequence, so it gets numbers ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.step-k {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--base-blue-soft);
  font-variant-numeric: tabular-nums;
}

.step h3 {
  margin: 12px 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step p {
  margin: 9px 0 0;
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.68;
}

/* ---------- what we're building ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.card-rule {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--base-blue);
  box-shadow: 0 0 12px rgba(0, 82, 255, 0.8);
}

.card h3 {
  margin: 16px 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card p {
  margin: 9px 0 0;
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.68;
}

/* ---------- why base ---------- */

.whys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  overflow: hidden;
}

.why { padding: 26px 24px; background: #0a1024; }

.why h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.why p {
  margin: 10px 0 0;
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.68;
}

/* ---------- waitlist ---------- */

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

/* Honeypot. Off-screen rather than display:none, tab-skipped and hidden from
   assistive tech — a person never reaches it, so anything that fills it is a bot. */
.wl-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist {
  display: flex;
  gap: 10px;
  width: min(430px, 100%);
  margin: clamp(22px, 4vh, 32px) 0 0;
}

.wl-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 14, 32, 0.66);
  backdrop-filter: blur(8px);
  color: var(--text-hi);
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.3;
}

.wl-input::placeholder { color: var(--text-low); }

.wl-input:focus-visible {
  outline: 2px solid var(--base-blue-lit);
  outline-offset: 2px;
  border-color: transparent;
}

.wl-btn {
  flex: none;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  background: var(--base-blue);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(0, 82, 255, 0.45);
  transition: background-color 0.15s ease;
}

.wl-btn:hover { background: #1f6bff; }

.wl-btn:focus-visible {
  outline: 2px solid var(--base-blue-soft);
  outline-offset: 3px;
}

.wl-note {
  margin: 11px 0 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-low);
}

/* the closing section, between the FAQ and the footer */

.closing h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.closing .lede { max-width: 52ch; }
.closing .waitlist { width: min(560px, 100%); }

.waitlist-lg .wl-input,
.waitlist-lg .wl-btn { padding-block: 14px; font-size: 1rem; }

@media (max-width: 460px) {
  .waitlist { flex-direction: column; }
  .wl-btn { width: 100%; }
}

/* ---------- /thanks ---------- */
/* Lives here rather than inline on the page: the CSP is `style-src 'self'`
   with no 'unsafe-inline', so an inline <style> block is silently dropped. */

.done {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}

.done-card { width: min(46ch, 100%); }

.done .brand {
  justify-content: center;
  margin-bottom: clamp(28px, 6vh, 44px);
}

.done h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.done p {
  margin: 18px 0 0;
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.done .back {
  display: inline-block;
  margin-top: clamp(28px, 5vh, 40px);
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 14, 32, 0.6);
  color: var(--text-hi);
  text-decoration: none;
  font-size: 0.9375rem;
}

.done .back:hover {
  border-color: rgba(0, 82, 255, 0.5);
  color: #ffffff;
}

.done .meta {
  margin-top: clamp(30px, 6vh, 46px);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-low);
}
