:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.78);
  --primary: #2563eb;
  --primary-deep: #1d4ed8;
  --text: #050505;
  --text-soft: #374151;
  --text-muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 20px 50px rgba(37, 99, 235, 0.08);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.2) 0%,
      rgba(37, 99, 235, 0.14) 22%,
      rgba(37, 99, 235, 0.08) 42%,
      rgba(37, 99, 235, 0.035) 60%,
      rgba(37, 99, 235, 0) 72%
    );
  filter: blur(10px);
  mix-blend-mode: multiply;
  will-change: transform, opacity;
  transition: opacity 200ms ease;
}

body.has-cursor-glow.is-gated .cursor-glow {
  opacity: 1;
}

body.is-page-enter .home-stage,
body.is-page-enter .thank-you-shell {
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.02);
}

body.is-page-ready .home-stage,
body.is-page-ready .thank-you-shell {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

body.is-leaving .home-stage,
body.is-leaving .thank-you-shell {
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.02);
}

body.is-page-enter .ambient-scene,
body.is-leaving .ambient-scene {
  opacity: 0.45;
  filter: blur(10px);
}

body.is-page-ready .ambient-scene {
  opacity: 1;
  filter: blur(0);
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.45), rgba(248, 250, 252, 0.9) 45%, rgba(241, 245, 249, 0.96) 100%);
  backdrop-filter: blur(18px);
  transition:
    opacity 900ms ease,
    visibility 900ms ease,
    transform 900ms ease,
    filter 900ms ease;
}

.intro-screen__panel {
  width: min(100%, 32rem);
  padding: 2rem;
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.intro-screen__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.2);
}

.intro-screen__eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-screen__title {
  margin: 0.9rem 0 0;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.intro-screen__text {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.intro-screen__button {
  margin-top: 1.6rem;
  padding: 1rem 1.8rem;
  min-width: 170px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
}

.home-stage {
  position: relative;
  z-index: 1;
  transition:
    filter 900ms ease,
    transform 900ms ease,
    opacity 900ms ease;
}

body.is-gated .home-stage {
  filter: blur(18px);
  transform: scale(1.015);
}

body.is-started .intro-screen {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  filter: blur(12px);
}

body.is-started .home-stage {
  filter: blur(0);
  transform: scale(1);
}

.ambient-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 700ms ease,
    filter 700ms ease;
}

.ambient-video-frame {
  position: absolute;
  inset: -8%;
  overflow: hidden;
}

.ambient-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.24);
  filter: blur(30px) saturate(1.08) brightness(1.04);
  opacity: 0.58;
}

.ambient-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(248, 250, 252, 0) 30%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.6), rgba(248, 250, 252, 0.3) 28%, rgba(248, 250, 252, 0.44) 100%);
}

.ambient-glow,
.ambient-grid,
.ambient-ribbon {
  position: absolute;
}

.ambient-glow {
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.85;
}

.ambient-glow-left {
  top: 6rem;
  left: -12rem;
  width: 34rem;
  height: 34rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(37, 99, 235, 0.2) 28%, rgba(37, 99, 235, 0) 72%);
  animation: floatGlow 14s ease-in-out infinite alternate;
}

.ambient-glow-right {
  right: -14rem;
  bottom: 8rem;
  width: 42rem;
  height: 22rem;
  background:
    radial-gradient(circle at left center, rgba(239, 246, 255, 0.92) 0%, rgba(96, 165, 250, 0.24) 18%, rgba(37, 99, 235, 0) 70%);
  animation: floatGlowReverse 16s ease-in-out infinite alternate;
}

.ambient-grid {
  top: 2rem;
  right: 8%;
  width: min(42vw, 34rem);
  height: 30rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: auto, 2.25rem 2.25rem, 2.25rem 2.25rem;
  transform: perspective(1200px) rotateX(64deg) rotateY(-16deg) rotateZ(10deg);
  transform-origin: top right;
  opacity: 0.42;
  filter: blur(0.1px);
  animation: driftGrid 20s ease-in-out infinite alternate;
}

.ambient-ribbon {
  left: -26%;
  width: 152%;
  bottom: 11rem;
  height: 14rem;
  transform: rotate(-4deg);
  animation: ribbonSweep 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.ribbon-core,
.ribbon-spectrum {
  position: absolute;
  inset: 0 -12%;
  border-radius: 999px;
  will-change: transform, opacity, filter;
}

.ribbon-core {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.44) 12%,
      rgba(255, 255, 255, 0.9) 24%,
      rgba(255, 255, 255, 1) 36%,
      rgba(255, 255, 255, 0.94) 49%,
      rgba(255, 255, 255, 0.46) 63%,
      rgba(255, 255, 255, 0.08) 74%,
      rgba(255, 255, 255, 0) 88%
    );
  filter: blur(12px);
  opacity: 1;
  animation: ribbonCoreDrift 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.ribbon-spectrum {
  background:
    linear-gradient(
      90deg,
      rgba(147, 197, 253, 0) 0%,
      rgba(219, 234, 254, 0.1) 10%,
      rgba(191, 219, 254, 0.2) 22%,
      rgba(147, 197, 253, 0.62) 36%,
      rgba(59, 130, 246, 0.98) 48%,
      rgba(96, 165, 250, 0.88) 58%,
      rgba(186, 230, 253, 0.58) 70%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(147, 197, 253, 0) 100%
    );
  filter: blur(18px);
  opacity: 0.92;
  mix-blend-mode: screen;
  animation: ribbonSpectrumDrift 21s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.ambient-ribbon::before {
  content: "";
  position: absolute;
  inset: 1rem -8% 2rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.98), transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.32), transparent 18%),
    radial-gradient(circle at 78% 56%, rgba(219, 234, 254, 0.8), transparent 18%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.03) 18%,
      rgba(96, 165, 250, 0.26) 46%,
      rgba(191, 219, 254, 0.16) 64%,
      rgba(37, 99, 235, 0) 100%
    );
  filter: blur(22px);
  opacity: 0.98;
  animation: ribbonHighlightDrift 19s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.ambient-ribbon::after {
  content: "";
  position: absolute;
  inset: 2.2rem 2% 2.8rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.74) 24%,
      rgba(255, 255, 255, 0.24) 47%,
      rgba(255, 255, 255, 0.68) 72%,
      rgba(255, 255, 255, 0) 100%
    );
  filter: blur(8px);
  opacity: 0.8;
  animation: ribbonSheenDrift 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  padding: 1.25rem 0 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-cta,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.nav-cta {
  padding: 0.85rem 1.3rem;
}

.nav-cta:hover,
.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: 5.5rem 0 4rem;
  position: relative;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.95;
}

.hero-lead {
  margin: 1.4rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-text,
.hero-subheadline,
.step-card p,
.result-note,
.panel-label,
.speaker small,
.form-note,
.form-feedback {
  color: var(--text-soft);
}

.hero-text,
.hero-subheadline {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-text {
  margin: 1rem 0 0;
}

.hero-subheadline {
  margin: 0.75rem 0 0;
}

.waitlist-form {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 0.55rem;
  background: var(--surface-muted);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  width: min(100%, 560px);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0 1rem;
}

.waitlist-form input::placeholder {
  color: #94a3b8;
}

.waitlist-form button {
  padding: 1rem 1.4rem;
  min-width: 160px;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card,
.step-card,
.result-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.hero-panel-card {
  width: min(100%, 430px);
  padding: 1.5rem;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-panel-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% 14%;
  height: 9rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.72) 28%,
    rgba(191, 219, 254, 0.56) 46%,
    rgba(59, 130, 246, 0.48) 62%,
    rgba(255, 255, 255, 0) 88%
  );
  filter: blur(22px);
  opacity: 0.6;
  transform: rotate(-10deg);
}

.panel-header,
.result-summary,
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-pill,
.panel-meta,
.speaker-tag,
.speaker-tag.muted,
.step-number {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-pill {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  padding: 0.45rem 0.75rem;
}

.panel-meta,
.speaker-tag.muted {
  background: #eff6ff;
  color: #4b5563;
  padding: 0.45rem 0.75rem;
}

.debate-topic {
  margin-top: 1.5rem;
}

.panel-label {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.debate-topic h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.debate-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.speaker {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.speaker-active {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
  border-color: rgba(37, 99, 235, 0.18);
}

.speaker strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.speaker small {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.5;
}

.speaker-tag {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  padding: 0.35rem 0.65rem;
}

.versus-mark {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-block {
  padding: 2.5rem 0;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading.centered {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.step-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.step-number {
  padding: 0.45rem 0.75rem;
  background: #eff6ff;
  color: var(--primary);
}

.step-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  line-height: 1.7;
}

.result-section {
  display: grid;
  justify-items: center;
}

.result-card {
  width: min(100%, 720px);
  padding: 1.65rem;
  border-radius: 30px;
}

.result-summary h3 {
  margin: 0.35rem 0 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.result-amount {
  padding: 0.9rem 1.15rem;
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.score-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.score-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.score-item strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.result-note {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 1.7;
}

.trust-section {
  text-align: center;
}

.trust-section p {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: var(--bg);
}

.thank-you-shell {
  width: min(100% - 2rem, 560px);
  transition:
    filter 900ms ease,
    transform 900ms ease,
    opacity 900ms ease;
}

.thank-you-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
  backdrop-filter: blur(18px);
}

.thank-you-card h1 {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.thank-you-card p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}

.thank-you-card a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.footer-content {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-soft);
  font-size: 0.98rem;
}

.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;
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4rem, 2rem, 0) scale(1.08);
  }
}

@keyframes floatGlowReverse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3rem, -1.5rem, 0) scale(1.06);
  }
}

@keyframes driftGrid {
  0% {
    transform: perspective(1200px) rotateX(64deg) rotateY(-16deg) rotateZ(10deg) translate3d(0, 0, 0);
  }
  100% {
    transform: perspective(1200px) rotateX(66deg) rotateY(-12deg) rotateZ(8deg) translate3d(-1rem, 1rem, 0);
  }
}

@keyframes ribbonSweep {
  0% {
    transform: rotate(-5deg) translate3d(-1.5%, 0.25rem, 0) scaleX(1.01);
  }
  100% {
    transform: rotate(-2.5deg) translate3d(1.5%, 1rem, 0) scaleX(1.04);
  }
}

@keyframes ribbonCoreDrift {
  0% {
    transform: translate3d(-2.5%, -0.25rem, 0) scaleX(1.02);
    opacity: 0.92;
    filter: blur(12px);
  }
  100% {
    transform: translate3d(2.5%, 0.2rem, 0) scaleX(1.08);
    opacity: 1;
    filter: blur(10px);
  }
}

@keyframes ribbonSpectrumDrift {
  0% {
    transform: translate3d(2%, 0.35rem, 0) scaleX(1.04);
    opacity: 0.82;
    filter: blur(19px);
  }
  100% {
    transform: translate3d(-2%, -0.35rem, 0) scaleX(1.1);
    opacity: 0.96;
    filter: blur(16px);
  }
}

@keyframes ribbonHighlightDrift {
  0% {
    transform: translate3d(-2%, 0, 0) scaleX(1.03);
  }
  100% {
    transform: translate3d(2%, -0.2rem, 0) scaleX(1.08);
  }
}

@keyframes ribbonSheenDrift {
  0% {
    transform: translate3d(1.5%, 0, 0) scaleX(1.01);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(-1.5%, 0.15rem, 0) scaleX(1.06);
    opacity: 0.86;
  }
}

@media (max-width: 980px) {
  .ambient-grid {
    right: -2rem;
    width: 28rem;
    opacity: 0.28;
  }

  .ambient-ribbon {
    left: -28%;
    width: 156%;
    bottom: 22rem;
    height: 10rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 4rem;
  }

  .hero-panel {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .intro-screen__panel {
    padding: 1.6rem;
    border-radius: 26px;
  }

  .ambient-glow-left {
    top: 10rem;
    left: -16rem;
    width: 28rem;
    height: 28rem;
  }

  .ambient-glow-right {
    right: -18rem;
    bottom: 20rem;
    width: 32rem;
    height: 16rem;
  }

  .ambient-grid {
    top: 6rem;
    right: -6rem;
    width: 22rem;
    height: 20rem;
  }

  .ambient-ribbon {
    left: -38%;
    width: 176%;
    bottom: 25rem;
    height: 7.2rem;
    transform: rotate(-6deg);
  }

  .site-header {
    padding-top: 0.9rem;
  }

  .navbar {
    padding: 0.9rem 1rem;
    border-radius: 24px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .nav-cta {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 3.3rem 0 2.5rem;
  }

  .waitlist-form {
    flex-direction: column;
    border-radius: 24px;
  }

  .waitlist-form input {
    min-height: 54px;
    padding: 0 1rem;
  }

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

  .debate-versus,
  .steps-grid,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .versus-mark {
    justify-self: center;
  }

  .result-summary,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}
