:root {
  --blue-900: #053866;
  --blue-800: #07599f;
  --blue-700: #0865b5;
  --blue-100: #eaf4ff;
  --ink: #102033;
  --muted: #5c6b7d;
  --line: #d9e4ee;
  --paper: #f8fbfd;
  --white: #ffffff;
  --gold: #c8922e;
  --green: #0d7a63;
  --shadow: 0 24px 80px rgba(5, 56, 102, 0.16);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  transition-property:
    color,
    background-color,
    border-color,
    box-shadow,
    opacity,
    transform,
    filter;
  transition-duration: 220ms;
  transition-timing-function: var(--ease-smooth);
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #061c32;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

main {
  position: relative;
  z-index: 1;
  background: var(--white);
}

a {
  color: inherit;
  transition:
    color 240ms var(--ease-smooth),
    background-color 240ms var(--ease-smooth),
    border-color 240ms var(--ease-smooth),
    opacity 240ms var(--ease-smooth),
    transform 240ms var(--ease-smooth);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: #061c32;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 180px;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(0);
}

.header-links a:hover,
.header-links a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.26);
}

.header-links .social-link {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.button {
  text-decoration: none;
  transition:
    color 240ms var(--ease-smooth),
    background-color 240ms var(--ease-smooth),
    border-color 240ms var(--ease-smooth),
    box-shadow 240ms var(--ease-smooth),
    transform 240ms var(--ease-smooth);
}

.waitlist-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  overflow: hidden;
  min-height: 100svh;
  padding: calc(73px + clamp(34px, 6vw, 76px)) clamp(20px, 5vw, 72px) 96px;
  background:
    linear-gradient(115deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.94) 48%, rgba(234, 244, 255, 0.9) 100%),
    var(--paper);
}

.waitlist-intro {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.waitlist-intro .eyebrow,
.overview-promise .section-kicker,
.faq-shell .section-kicker {
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.2;
}

.waitlist-intro .eyebrow {
  white-space: nowrap;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-notes span {
  max-width: 100%;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--blue-900);
  border: 1px solid rgba(7, 89, 159, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 760;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue-800);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-900);
}

.signup-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 486px;
  align-items: center;
  isolation: isolate;
}

.signup-stage::before,
.signup-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.signup-stage::before {
  left: 0;
  right: -4%;
  bottom: 4%;
  z-index: 0;
  height: 52%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(5, 56, 102, 0.38) 0%, rgba(7, 89, 159, 0.22) 34%, rgba(7, 89, 159, 0) 72%);
  filter: blur(26px);
  opacity: 0.36;
  transform: translateY(18px) scale(0.94);
  animation: waitlist-glow-load 2.8s var(--ease-smooth) 180ms both;
}

.signup-stage::after {
  left: 8%;
  right: 8%;
  bottom: 15%;
  z-index: 0;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(6, 28, 50, 0.34) 0%, rgba(6, 28, 50, 0.16) 42%, rgba(6, 28, 50, 0) 78%);
  filter: blur(34px);
  opacity: 0.26;
  transform: translateY(10px) scale(0.98);
  animation: waitlist-glow-core 2.8s var(--ease-smooth) 280ms both;
}

.learn-more {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: inline-grid;
  min-width: 134px;
  justify-items: center;
  gap: 5px;
  color: var(--blue-900);
  text-decoration: none;
  transform: translateX(-50%);
  animation: cue-bounce 1.9s ease-in-out infinite;
}

.learn-more span {
  padding: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.learn-more svg {
  width: 22px;
  height: 22px;
  padding: 3px;
  color: var(--white);
  border-radius: 999px;
  background: var(--blue-800);
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

@keyframes waitlist-glow-load {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.84);
  }
  42% {
    opacity: 0.7;
    transform: translateY(12px) scale(1.03);
  }
  100% {
    opacity: 0.42;
    transform: translateY(18px) scale(0.98);
  }
}

@keyframes waitlist-glow-core {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  46% {
    opacity: 0.52;
    transform: translateY(6px) scale(1.04);
  }
  100% {
    opacity: 0.28;
    transform: translateY(12px) scale(1);
  }
}

.waitlist-intro,
.signup-stage,
.waitlist-form {
  min-width: 0;
}

.coin-mark {
  position: absolute;
  top: -11%;
  right: -7%;
  z-index: 3;
  width: min(420px, 33vw);
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-8deg);
}

.coin-mark img {
  width: 100%;
  filter: drop-shadow(0 28px 42px rgba(8, 101, 181, 0.22));
}

.section {
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.overview-section {
  min-height: 300svh;
  border-top: 0;
}

.overview-shell {
  position: sticky;
  top: 73px;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  min-height: calc(100svh - 73px);
  padding: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 101, 181, 0.28), rgba(8, 101, 181, 0) 32%),
    linear-gradient(135deg, #061c32 0%, #0a2742 54%, #053866 100%);
}

.overview-promise {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.overview-promise p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.48;
}

.overview-promise .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.promise-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: 22px;
  padding: 24px 0 30px;
}

.promise-heading::before,
.promise-heading::after {
  position: absolute;
  left: 0;
  width: min(100%, 560px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--white), var(--blue-100), rgba(255, 255, 255, 0));
}

.promise-heading::before {
  top: 0;
}

.promise-heading::after {
  bottom: 0;
}

.promise-heading span {
  display: block;
  color: var(--white);
  font-size: clamp(3.8rem, 6.35vw, 7rem);
  font-weight: 900;
  line-height: 0.84;
  will-change: opacity, transform, filter;
  transition:
    opacity 380ms var(--ease-smooth),
    transform 380ms var(--ease-smooth),
    filter 380ms var(--ease-smooth);
}

.promise-heading span.is-changing {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(14px);
}

.feature-panel-intro {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
}

.feature-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
  padding: clamp(24px, 3.1vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 1) 58%),
    var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.feature-list article div {
  display: grid;
  grid-template-columns: minmax(170px, 0.52fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-list article:last-child {
  padding-bottom: 0;
}

.feature-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  border-radius: 6px;
  background: #061c32;
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 0;
  color: var(--blue-900);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.18;
}

.feature-emphasis {
  position: relative;
  display: inline-block;
  color: inherit;
  background: none;
  text-decoration: none;
  transition: color 240ms var(--ease-smooth);
}

.feature-emphasis::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease-standard);
}

.feature-emphasis.is-active {
  color: var(--blue-800);
}

.feature-emphasis.is-active::after {
  transform: scaleX(1);
  transition: transform 420ms var(--ease-smooth);
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.35;
}

.overview-scroll-progress {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(18px, 2.4vw, 30px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 16px);
  height: 4px;
}

.overview-scroll-progress span {
  --segment-progress: 0;
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.overview-scroll-progress span::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  border-radius: inherit;
  transform: scaleX(var(--segment-progress));
  transform-origin: left center;
  transition: none;
}

.faq-section {
  position: relative;
  z-index: 2;
  background: var(--white);
}

.faq-shell {
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 48px);
  text-align: center;
}

.faq-shell h2 {
  width: min(100%, 1480px);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 2.85vw, 3.65rem);
  line-height: 1;
  white-space: nowrap;
}

.scroll-emphasis {
  --underline-progress: 0;
  position: relative;
  display: inline-block;
  transition: none;
}

.scroll-emphasis::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04em;
  height: 0.08em;
  content: "";
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(var(--underline-progress));
  transform-origin: left center;
  transition: none;
}

.emphasis-phrase {
  white-space: nowrap;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1040px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  text-align: left;
}

.faq-list article {
  position: relative;
  outline: 1px solid transparent;
  outline-offset: -1px;
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
  background: var(--paper);
  transform: translateY(0);
  transition:
    background-color 420ms var(--ease-smooth),
    outline-color 520ms var(--ease-smooth),
    box-shadow 520ms var(--ease-smooth),
    transform 520ms var(--ease-smooth);
}

.faq-list article::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.42)),
    radial-gradient(circle at 18% 8%, rgba(7, 89, 159, 0.14), transparent 40%);
  opacity: 0;
  transition:
    opacity 560ms var(--ease-smooth),
    transform 640ms var(--ease-smooth);
  transform: scale(0.985);
}

.faq-list article:hover,
.faq-list article:focus-within {
  z-index: 1;
  background: var(--white);
  outline-color: rgba(7, 89, 159, 0.16);
  box-shadow: 0 22px 64px rgba(5, 56, 102, 0.16);
  transform: translateY(-4px);
}

.faq-list article:hover::before,
.faq-list article:focus-within::before {
  opacity: 1;
  transform: scale(1);
  transition-duration: 640ms;
}

.faq-list article > * {
  position: relative;
  z-index: 1;
}

.faq-list h3 {
  color: var(--ink);
  transition: color 420ms var(--ease-smooth);
}

.faq-list article:hover h3,
.faq-list article:focus-within h3 {
  color: var(--blue-900);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.94) 48%, rgba(234, 244, 255, 0.96) 100%),
    var(--paper);
  border-top: 1px solid rgba(7, 89, 159, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.cta-shell {
  position: relative;
  display: grid;
  justify-items: center;
  isolation: isolate;
}

.cta-shell::before,
.cta-shell::after {
  position: absolute;
  content: "";
  pointer-events: none;
  opacity: 0;
}

.cta-shell::before {
  left: 14%;
  right: 14%;
  bottom: 8%;
  z-index: 0;
  height: 46%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(5, 56, 102, 0.34) 0%, rgba(7, 89, 159, 0.2) 34%, rgba(7, 89, 159, 0) 72%);
  filter: blur(26px);
  transform: translateY(26px) scale(0.9);
}

.cta-shell::after {
  left: 23%;
  right: 23%;
  bottom: 17%;
  z-index: 0;
  height: 30%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(6, 28, 50, 0.28) 0%, rgba(6, 28, 50, 0.14) 42%, rgba(6, 28, 50, 0) 78%);
  filter: blur(34px);
  transform: translateY(16px) scale(0.94);
}

.cta-section.is-glow-visible .cta-shell::before {
  animation: waitlist-glow-load 2.8s var(--ease-smooth) 80ms both;
}

.cta-section.is-glow-visible .cta-shell::after {
  animation: waitlist-glow-core 2.8s var(--ease-smooth) 180ms both;
}

.cta-shell .section-kicker {
  color: var(--blue-800);
}

.cta-shell h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  text-align: left;
}

.cta-shell p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-shell .waitlist-form {
  width: min(100%, 860px);
  justify-self: center;
  box-shadow: 0 30px 84px rgba(5, 56, 102, 0.14);
}

.waitlist-form {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  justify-self: end;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(7, 89, 159, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.signup-stage .waitlist-form {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.waitlist-form h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.waitlist-form p {
  color: var(--muted);
}

.form-eyebrow {
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.waitlist-form .form-eyebrow {
  color: var(--blue-900);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

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

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  transition:
    border-color 240ms var(--ease-smooth),
    box-shadow 240ms var(--ease-smooth),
    background-color 240ms var(--ease-smooth);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(280px, 1fr) minmax(240px, 0.85fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  padding: 28px clamp(20px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #061c32;
}

.site-footer img {
  width: 150px;
  margin-bottom: 12px;
}

.footer-brand a {
  display: inline-block;
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 230px;
  font-size: 1.08rem;
  line-height: 1.38;
}

.legal {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.48;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.copyright {
  justify-self: start;
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
}

.footer-social .social-link {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
}

.footer-social .social-link:hover,
.footer-social .social-link:focus-visible {
  color: var(--white);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transform: translateY(0);
  transition:
    color 240ms var(--ease-smooth),
    transform 240ms var(--ease-smooth);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  display: flex;
  width: min(calc(100% - 28px), 410px);
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(7, 89, 159, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 70px rgba(5, 56, 102, 0.18);
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-900);
  font-size: 0.78rem;
  line-height: 1.25;
}

.cookie-banner__copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.38;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.cookie-banner__accept,
.cookie-banner__dismiss {
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-banner__accept {
  min-height: 32px;
  padding: 0 11px;
  color: var(--white);
  background: var(--blue-800);
  font-size: 0.78rem;
}

.cookie-banner__dismiss {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue-900);
  background: var(--blue-100);
  font-size: 1.08rem;
  line-height: 1;
}

.cookie-banner__accept:hover,
.cookie-banner__accept:focus-visible {
  background: var(--blue-900);
}

.cookie-banner__dismiss:hover,
.cookie-banner__dismiss:focus-visible {
  color: var(--white);
  background: #061c32;
}

@media (min-width: 1600px) and (min-height: 760px) {
  .site-header {
    padding-right: 72px;
    padding-left: 72px;
  }

  .waitlist-hero {
    grid-template-columns: minmax(760px, 1.02fr) minmax(540px, 0.86fr);
    gap: clamp(62px, 6vw, 116px);
    padding: 52px 72px 104px;
  }

  .waitlist-intro {
    max-width: 880px;
  }

  h1 {
    max-width: 900px;
    font-size: clamp(5.2rem, 5.25vw, 6.5rem);
  }

  .hero-copy {
    max-width: 760px;
    font-size: 1.36rem;
    line-height: 1.32;
  }

  .hero-notes {
    max-width: 760px;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-notes span {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 1rem;
  }

  .signup-stage {
    min-height: 540px;
  }

  .waitlist-form {
    width: min(100%, 660px);
    justify-self: start;
    padding: 42px;
  }

  .waitlist-form h2 {
    font-size: clamp(2.7rem, 2.7vw, 3.35rem);
  }

  .waitlist-form p {
    font-size: 1.08rem;
  }

  .coin-mark {
    width: min(460px, 25vw);
  }
}

@media (max-width: 980px) {
  .waitlist-hero,
  .overview-shell,
  .cta-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .overview-promise {
    min-height: auto;
  }

  .overview-shell {
    position: static;
    min-height: auto;
    padding: clamp(54px, 8vw, 76px) clamp(20px, 5vw, 48px);
  }

  .overview-section {
    min-height: auto;
  }

  .waitlist-hero {
    gap: 22px;
    min-height: auto;
    padding: calc(61px + 42px) clamp(20px, 5vw, 48px) 54px;
  }

  .waitlist-intro .eyebrow {
    white-space: nowrap;
  }

  .signup-stage {
    min-height: 0;
    position: static;
  }

  .waitlist-form {
    width: 100%;
    justify-self: stretch;
  }

  .overview-scroll-progress {
    display: none;
  }

  .faq-shell,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-shell h2 {
    width: min(100%, 820px);
    white-space: normal;
  }

  .promise-heading {
    max-width: 720px;
  }

  .promise-heading span {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }

  .feature-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .feature-list article div {
    display: block;
    min-width: 0;
  }

  .feature-list p {
    margin-top: 5px;
  }

  .coin-mark {
    top: -14%;
    right: -4%;
    width: min(330px, 60vw);
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 132px;
  }

  .brand-wrap {
    gap: 7px;
  }

  .header-links {
    width: auto;
    justify-content: flex-end;
    gap: 14px;
  }

  .header-links a {
    font-size: 0.82rem;
  }

  .nav-divider,
  .header-links .social-link {
    display: none;
  }

  h1 {
    font-size: clamp(2.42rem, 12vw, 3.42rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .eyebrow,
  .section-kicker,
  .form-eyebrow {
    font-size: 0.72rem;
  }

  .waitlist-intro .eyebrow,
  .overview-promise .section-kicker,
  .faq-shell .section-kicker {
    font-size: clamp(0.82rem, 3.45vw, 0.98rem);
    line-height: 1.2;
  }

  .waitlist-intro .eyebrow {
    font-size: clamp(0.58rem, 2.6vw, 0.82rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .hero-notes span {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .learn-more {
    display: none;
  }

  .coin-mark {
    top: 116px;
    right: -42px;
    bottom: auto;
    display: block;
    width: 250px;
    opacity: 0.09;
    transform: rotate(-12deg);
  }

  .waitlist-form {
    padding: 22px;
  }

  .waitlist-form h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .feature-list article:last-child {
    grid-column: auto;
  }

  .overview-shell {
    gap: 30px;
    padding: 58px 18px;
  }

  .overview-promise p {
    font-size: 1.04rem;
  }

  .promise-heading {
    margin-bottom: 18px;
    padding: 18px 0 24px;
  }

  .promise-heading span {
    font-size: clamp(3.45rem, 15.8vw, 5.05rem);
  }

  .feature-panel {
    padding: 22px;
  }

  .faq-section {
    padding: 58px 18px;
  }

  .faq-shell h2 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9vw, 2.75rem);
    line-height: 0.98;
  }

  .faq-list article {
    padding: 18px;
  }

  .feature-panel-intro {
    font-size: 0.98rem;
  }

  .feature-list article {
    gap: 12px;
    padding: 14px 0;
  }

  .feature-list article > span {
    width: 36px;
    height: 36px;
    font-size: 0.74rem;
  }

  .feature-list strong {
    font-size: 1rem;
  }

  .feature-list p {
    font-size: 0.94rem;
  }

  .cta-section {
    padding: 56px 18px;
  }

  .site-footer {
    gap: 20px;
    padding: 30px 18px 24px;
  }

  .site-footer img {
    width: 138px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 1rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .copyright,
  .footer-social,
  .footer-legal-links {
    justify-self: center;
  }

  .footer-social {
    order: 1;
  }

  .footer-legal-links {
    order: 2;
  }

  .copyright {
    order: 3;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    display: grid;
    width: calc(100% - 28px);
    gap: 12px;
  }

  .cookie-banner__actions {
    justify-content: space-between;
  }

  .cookie-banner__accept {
    flex: 1 1 auto;
  }

}
