body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 255, 255, 0.8) 0 1px,
      transparent 1.6px
    ),
    radial-gradient(
      circle at 28% 34%,
      rgba(184, 244, 61, 0.62) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 48% 14%,
      rgba(53, 199, 255, 0.72) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 72% 28%,
      rgba(255, 255, 255, 0.7) 0 1px,
      transparent 1.4px
    ),
    radial-gradient(
      circle at 86% 62%,
      rgba(124, 92, 255, 0.7) 0 1px,
      transparent 1.6px
    ),
    radial-gradient(
      circle at 58% 82%,
      rgba(255, 255, 255, 0.54) 0 1px,
      transparent 1.4px
    );
  background-size:
    240px 240px,
    310px 310px,
    380px 380px,
    290px 290px,
    350px 350px,
    420px 420px;
  opacity: 0.58;
  animation: star-twinkle 18s ease-in-out infinite;
}

body::after {
  background:
    radial-gradient(
      ellipse 46rem 11rem at 50% 26%,
      rgba(255, 255, 255, 0.08),
      transparent 70%
    ),
    radial-gradient(
      ellipse 36rem 18rem at 68% 18%,
      rgba(53, 199, 255, 0.12),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40rem 20rem at 28% 30%,
      rgba(124, 92, 255, 0.14),
      transparent 72%
    ),
    linear-gradient(
      116deg,
      transparent 8%,
      rgba(53, 199, 255, 0.08) 28%,
      rgba(233, 92, 255, 0.08) 46%,
      transparent 68%
    );
  mix-blend-mode: screen;
  opacity: 0.72;
}

.space-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.space-field span {
  position: absolute;
  width: 150px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.86),
    rgba(53, 199, 255, 0.38)
  );
  opacity: 0;
  transform: rotate(-32deg);
  animation: shooting-star 13s ease-in-out infinite;
}

.space-field span:nth-child(1) {
  top: 16%;
  left: 88%;
}

.space-field span:nth-child(2) {
  top: 46%;
  left: 96%;
  width: 110px;
  animation-delay: 5s;
  animation-duration: 16s;
}

.space-field span:nth-child(3) {
  top: 72%;
  left: 82%;
  width: 125px;
  animation-delay: 9s;
  animation-duration: 18s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.trust-badges,
.inline-actions {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 236px;
  height: 96px;
  min-width: max-content;
  flex: 0 0 auto;
}

.nav-links {
  gap: clamp(14px, 2.1vw, 28px);
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a,
.login-link,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.login-link:hover,
.site-footer a:hover {
  color: var(--lime);
}

.header-actions {
  gap: 12px;
}

.login-link {
  color: rgba(248, 251, 255, 0.76);
  font-weight: 800;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.header-cta,
.primary-btn {
  color: #101707;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  box-shadow: 0 14px 34px rgba(184, 244, 61, 0.24);
}

.header-cta {
  padding: 0 18px;
}

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.secondary-btn {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
}

.secondary-btn:hover {
  border-color: rgba(53, 199, 255, 0.42);
  box-shadow: var(--shadow-glow);
}

.hero,
.trust-strip,
.classroom-confidence,
.section,
.final-cta,
.site-footer {
  width: min(100% - 36px, var(--content));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(66px, 8vw, 112px) 0;
}

.hero::before {
  content: "";
  position: absolute;
  right: -16vw;
  top: 8vh;
  z-index: -1;
  width: min(62vw, 660px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 44% 46%,
      rgba(53, 199, 255, 0.24),
      transparent 58%
    ),
    radial-gradient(
      circle at 62% 40%,
      rgba(124, 92, 255, 0.18),
      transparent 60%
    );
  filter: blur(10px);
  animation: hero-glow-shift 14s ease-in-out infinite;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-actions,
.inline-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badges span,
.game-card span,
.roadmap-grid span,
.price-card > span,
.testimonial-grid span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
}

.trust-badges span {
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.trust-badges strong {
  color: var(--lime);
}

.hero-helper {
  width: fit-content;
  margin: 14px 0 0;
  color: rgba(248, 251, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.45;
}

.preview-card,
.text-panel,
.trust-strip article,
.trust-pillar-grid article,
.privacy-grid article,
.game-card,
.benefit-grid article,
.roadmap-grid article,
.testimonial-grid article,
.price-card,
.login-section,
.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(
      ellipse at 18% 0%,
      rgba(124, 92, 255, 0.2),
      transparent 17rem
    ),
    radial-gradient(
      ellipse at 90% 8%,
      rgba(53, 199, 255, 0.14),
      transparent 16rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.035)
    ),
    var(--panel);
  box-shadow: var(--shadow);
}

.preview-card::before,
.trust-strip article::before,
.trust-pillar-grid article::before,
.privacy-grid article::before,
.game-card::before,
.benefit-grid article::before,
.roadmap-grid article::before,
.price-card::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 34%,
    rgba(184, 244, 61, 0.08)
  );
  opacity: 0.75;
}

.preview-card > *,
.trust-strip article > *,
.trust-pillar-grid article > *,
.privacy-grid article > *,
.game-card > *,
.benefit-grid article > *,
.roadmap-grid article > *,
.price-card > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.preview-topbar,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.preview-topbar span,
.preview-footer strong {
  font-weight: 950;
}

.preview-topbar strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: #101707;
  background: var(--lime);
  font-size: 0.78rem;
}

.preview-stage {
  position: relative;
  min-height: 392px;
  margin: 0 20px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 48%,
      rgba(184, 244, 61, 0.16),
      transparent 12rem
    ),
    radial-gradient(
      circle at 30% 22%,
      rgba(124, 92, 255, 0.24),
      transparent 14rem
    ),
    #07111f;
  background-size:
    38px 38px,
    38px 38px,
    auto,
    auto,
    auto;
}

.preview-mascot {
  position: absolute;
  right: 24px;
  top: 54px;
  z-index: 2;
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.orbit-ring {
  position: absolute;
  inset: 22%;
  border: 10px solid rgba(53, 199, 255, 0.16);
  border-top-color: var(--lime);
  border-radius: 999px;
  box-shadow:
    inset 0 0 34px rgba(53, 199, 255, 0.1),
    0 0 34px rgba(184, 244, 61, 0.08);
  animation: slow-spin 18s linear infinite;
}

.answer-tile {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 126px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 15, 32, 0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.answer-tile span {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.answer-tile strong {
  color: var(--lime);
  font-size: 1.5rem;
}

.tile-a {
  top: 38px;
  left: 28px;
}

.tile-b {
  right: 28px;
  bottom: 78px;
}

.tile-c {
  left: 34px;
  bottom: 42px;
}

.preview-scoreboard,
.preview-status {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.preview-scoreboard {
  left: 24px;
  top: 18px;
  padding: 9px 12px;
}

.preview-scoreboard span,
.preview-status span {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-scoreboard strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.preview-status {
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
}

.preview-status span:first-child {
  color: var(--lime);
}

.player-signal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.head,
.body,
.arm {
  position: absolute;
  display: block;
  border: 5px solid rgba(255, 255, 255, 0.88);
}

.head {
  width: 68px;
  height: 68px;
  margin-top: -84px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd092, #ff9f9f);
}

.body {
  width: 118px;
  height: 88px;
  margin-top: 38px;
  border-radius: 36px 36px 22px 22px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.arm {
  width: 176px;
  height: 15px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  transform: rotate(-10deg);
}

.preview-footer span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.92rem;
}

.preview-footer a {
  color: var(--lime);
  font-weight: 950;
}

.section {
  padding: clamp(68px, 8vw, 116px) 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(-18px, -1.5vw, -6px);
  margin-bottom: clamp(34px, 5vw, 64px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(5, 8, 22, 0.46);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 11px 12px;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.trust-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 244, 61, 0.32);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow:
    var(--shadow),
    0 0 30px rgba(53, 199, 255, 0.1);
}

.strip-icon,
.privacy-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 244, 61, 0.26);
  border-radius: 15px;
  color: var(--lime);
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(53, 199, 255, 0.28),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.075);
  font-weight: 950;
  line-height: 1;
}

.trust-strip strong {
  color: rgba(248, 251, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.25;
}

.classroom-confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-bottom: clamp(18px, 3vw, 34px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(53, 199, 255, 0.18);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(
      ellipse 28rem 13rem at 0% 0%,
      rgba(53, 199, 255, 0.16),
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    ),
    rgba(6, 13, 27, 0.74);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.confidence-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.confidence-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.confidence-grid article {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.confidence-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 199, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(53, 199, 255, 0.1);
}

.confidence-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 244, 61, 0.22);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(184, 244, 61, 0.08);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.confidence-grid strong {
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.25;
}

.section-heading {
  margin-bottom: 30px;
}

.split-section,
.login-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.trust-section {
  display: grid;
  gap: 28px;
}

.trust-copy {
  max-width: 840px;
}

.trust-pillar-grid,
.story-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-pillar-grid article,
.story-step {
  padding: 24px;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.trust-pillar-grid article:hover,
.story-step:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 244, 61, 0.32);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow:
    var(--shadow),
    0 0 28px rgba(53, 199, 255, 0.1);
}

.story-timeline {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 12px 0;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(184, 244, 61, 0.46),
    rgba(53, 199, 255, 0.22)
  );
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-step::before {
  display: none;
}

.story-step span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(184, 244, 61, 0.28);
  border-radius: 999px;
  color: #101707;
  background: linear-gradient(135deg, var(--lime), var(--blue));
  font-weight: 950;
  box-shadow: 0 0 30px rgba(184, 244, 61, 0.14);
}

.story-step img,
.trust-pillar-grid img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.26));
}

.story-step h3,
.story-step p {
  margin-bottom: 0;
}

.story-step p {
  margin-top: 6px;
}

.privacy-section {
  display: grid;
  gap: 28px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(
      ellipse 30rem 14rem at 0% 0%,
      rgba(124, 92, 255, 0.14),
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.024)
    ),
    rgba(6, 13, 27, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.privacy-panel .section-heading {
  margin-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 10px;
}

.privacy-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-list div:last-child {
  border-bottom: 0;
}

.privacy-list strong {
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.35;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.privacy-grid article {
  min-height: 196px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.095);
  background:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(124, 92, 255, 0.12),
      transparent 13rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(10, 18, 36, 0.56);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.privacy-grid article::before {
  opacity: 0.38;
}

.privacy-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.26);
  background-color: rgba(255, 255, 255, 0.065);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(124, 92, 255, 0.08);
}

.privacy-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 13px;
}

.privacy-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.privacy-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.text-panel,
.login-section {
  padding: clamp(24px, 4vw, 36px);
}

.game-grid,
.game-showcase,
.game-support-grid,
.benefit-grid,
.benefit-list,
.roadmap-grid,
.roadmap-timeline,
.testimonial-grid,
.pricing-grid,
.vote-grid {
  display: grid;
  gap: 18px;
}

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

.game-showcase {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 1.15fr);
  align-items: stretch;
}

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

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

.game-card,
.benefit-grid article,
.roadmap-grid article,
.testimonial-grid article,
.price-card {
  padding: 22px;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.game-card:hover,
.benefit-grid article:hover,
.roadmap-grid article:hover,
.testimonial-grid article:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 244, 61, 0.32);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(124, 92, 255, 0.12),
    0 0 26px rgba(184, 244, 61, 0.08);
}

.game-card img {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.28));
}

.game-card span,
.roadmap-grid span,
.price-card > span {
  margin-bottom: 14px;
  color: #101707;
  background: var(--lime);
  padding: 8px 11px;
}

.game-card.featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.62fr);
  gap: 18px;
  align-items: end;
  min-height: 430px;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(
      ellipse at 12% 0%,
      rgba(184, 244, 61, 0.2),
      transparent 15rem
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(53, 199, 255, 0.18),
      transparent 15rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    var(--panel-strong);
}

.game-card.featured h3 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.game-card.featured small {
  display: block;
  max-width: 390px;
  margin: 0 0 18px;
  color: rgba(248, 251, 255, 0.68);
  font-weight: 800;
  line-height: 1.5;
}

.game-card.featured small + small {
  margin-top: -12px;
}

.bubble-visual {
  position: relative;
  justify-self: end;
  align-self: center;
  width: min(230px, 100%);
  aspect-ratio: 1;
}

.game-card.featured .bubble-main {
  position: absolute;
  inset: 16% 10% auto auto;
  width: 78%;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 0 24px rgba(53, 199, 255, 0.34))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
  animation: bubble-float 5.8s ease-in-out infinite;
}

.bubble-marker {
  position: absolute;
  right: 0;
  top: 8px;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.word-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.72);
  background: rgba(5, 8, 22, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
}

.word-a {
  left: 0;
  top: 22%;
}

.word-b {
  right: 8%;
  bottom: 8%;
}

.game-card.featured > img {
  justify-self: end;
  width: min(180px, 100%);
  height: auto;
  margin-bottom: 0;
}

.game-support-grid .game-card {
  display: grid;
  align-content: start;
  min-height: 206px;
}

.game-support-grid .game-card img {
  margin-bottom: 22px;
}

.game-library-grid .game-card {
  display: grid;
  align-content: start;
  min-height: 292px;
}

.game-library-grid .game-card img {
  margin-bottom: 16px;
}

.game-library-grid .game-card.game-bubble .bubble-visual {
  width: 74px;
  height: 74px;
}

.game-library-grid .game-more {
  grid-column: 1 / -1;
  min-height: 190px;
}

.game-letters {
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(255, 208, 146, 0.16),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.032)
    ),
    var(--panel);
}

.game-alien {
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(53, 199, 255, 0.2),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.032)
    ),
    var(--panel);
}

.game-quiz {
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(233, 92, 255, 0.18),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.032)
    ),
    var(--panel);
}

.game-mic {
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(184, 244, 61, 0.14),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.032)
    ),
    var(--panel);
}

.game-answer {
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(251, 191, 36, 0.18),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.032)
    ),
    var(--panel);
}

.game-more {
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(251, 191, 36, 0.22),
      transparent 7rem
    ),
    radial-gradient(
      circle at 18% 92%,
      rgba(53, 199, 255, 0.18),
      transparent 9rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.038)
    ),
    var(--panel);
}

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

.benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.benefit-copy {
  position: sticky;
  top: 110px;
}

.benefit-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.04rem;
}

.benefit-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out,
    box-shadow 220ms ease-out;
}

.benefit-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 244, 61, 0.26);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.benefit-list span {
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 950;
}

.benefit-list h3,
.benefit-list p {
  margin-bottom: 0;
}

.benefit-list p {
  margin-top: 6px;
}

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

.roadmap-grid article,
.highlighted {
  border-color: rgba(184, 244, 61, 0.28);
}

.roadmap-timeline {
  --roadmap-dot-size: 20px;
  --roadmap-dot-left: 22px;
  --roadmap-dot-center: calc(
    var(--roadmap-dot-left) + (var(--roadmap-dot-size) / 2)
  );
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 26px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: var(--roadmap-dot-center);
  right: calc((100% / 3) - var(--roadmap-dot-center) - 7%);
  top: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--blue), var(--pink));
  opacity: 0.62;
}

.roadmap-timeline article {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 46px 22px 0;
}

.roadmap-timeline article::before {
  content: "";
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  top: 18px;
  left: var(--roadmap-dot-left);
  width: var(--roadmap-dot-size);
  height: var(--roadmap-dot-size);
  border: 4px solid var(--page);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(184, 244, 61, 0.28);
}

.roadmap-timeline span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #101707;
  background: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
}

.roadmap-timeline h3,
.roadmap-timeline p {
  margin-bottom: 0;
}

.poll-section,
.feedback-section {
  display: grid;
  gap: 24px;
  padding-top: clamp(68px, 8vw, 116px);
  padding-bottom: clamp(68px, 8vw, 116px);
}

.poll-heading {
  max-width: 860px;
  margin-bottom: 8px;
}

.poll-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.04rem;
}

.feedback-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(
      ellipse 26rem 16rem at 12% 18%,
      rgba(124, 92, 255, 0.2),
      transparent 70%
    ),
    radial-gradient(
      ellipse 24rem 14rem at 88% 0%,
      rgba(53, 199, 255, 0.16),
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(8, 15, 32, 0.74);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feedback-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(184, 244, 61, 0.08),
    transparent 34%,
    rgba(53, 199, 255, 0.09)
  );
}

.feedback-panel > * {
  position: relative;
  z-index: 1;
}

.feedback-copy {
  max-width: 540px;
}

.feedback-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.landing-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.feedback-form-card {
  padding: clamp(20px, 3vw, 26px);
  background:
    radial-gradient(
      ellipse at 92% 0%,
      rgba(53, 199, 255, 0.12),
      transparent 16rem
    ),
    rgba(5, 8, 22, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.24);
}

.feedback-note {
  margin: -2px 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.landing-form label {
  display: grid;
  gap: 8px;
}

.landing-form label span {
  color: rgba(248, 251, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 850;
}

.landing-form em {
  color: var(--soft);
  font-style: normal;
  font-weight: 700;
}

.landing-form input,
.landing-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(5, 8, 22, 0.64);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 180ms ease-out,
    box-shadow 180ms ease-out,
    background 180ms ease-out;
}

.landing-form textarea {
  resize: vertical;
}

.landing-form input:focus,
.landing-form textarea:focus {
  border-color: rgba(184, 244, 61, 0.58);
  background: rgba(5, 8, 22, 0.82);
  box-shadow: 0 0 0 4px rgba(184, 244, 61, 0.08);
}

.landing-form .primary-btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.compact-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.form-success {
  min-height: 1.4em;
  margin: 0;
  color: var(--lime);
  font-weight: 850;
}

.vote-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
  margin-top: 4px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(
      ellipse 28rem 14rem at 100% 0%,
      rgba(53, 199, 255, 0.14),
      transparent 72%
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.vote-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.058),
      rgba(255, 255, 255, 0.026)
    ),
    rgba(10, 18, 36, 0.56);
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}

.vote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 42%,
    rgba(184, 244, 61, 0.07)
  );
  opacity: 0.72;
}

.vote-card > * {
  position: relative;
  z-index: 1;
}

.vote-card:hover,
.vote-card:has(input:focus-visible) {
  transform: translateY(-6px);
  border-color: rgba(184, 244, 61, 0.32);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(53, 199, 255, 0.1),
    0 0 24px rgba(184, 244, 61, 0.08);
}

.vote-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.vote-card.is-selected,
.vote-card:has(input:checked) {
  border-color: rgba(184, 244, 61, 0.72);
  background-color: rgba(184, 244, 61, 0.08);
  box-shadow:
    var(--shadow),
    0 0 38px rgba(184, 244, 61, 0.16);
}

.vote-card.is-locked {
  cursor: default;
}

.check-indicator {
  position: relative;
  top: auto;
  right: auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.check-indicator::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 3px solid #101707;
  border-bottom: 3px solid #101707;
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px);
}

.vote-card.is-selected .check-indicator,
.vote-card:has(input:checked) .check-indicator {
  border-color: rgba(184, 244, 61, 0.8);
  background: var(--lime);
  box-shadow: 0 0 18px rgba(184, 244, 61, 0.28);
}

.vote-card.is-selected .check-indicator::before,
.vote-card:has(input:checked) .check-indicator::before {
  opacity: 1;
}

.vote-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 244, 61, 0.26);
  border-radius: 16px;
  color: var(--lime);
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(53, 199, 255, 0.28),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.075);
}

.vote-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.26));
}

.vote-content {
  display: grid;
  gap: 8px;
}

.vote-content strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.2;
}

.vote-content small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.vote-card h3 {
  margin-bottom: 8px;
}

.vote-card p {
  margin-bottom: 0;
}

.vote-count {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 850;
}

.poll-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.poll-actions .primary-btn {
  border: 0;
  cursor: pointer;
}

.poll-actions .primary-btn:disabled {
  cursor: default;
  transform: none;
  background: rgba(184, 244, 61, 0.42);
  box-shadow: none;
}

.poll-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--lime);
  font-weight: 850;
}

.testimonial-grid {
  grid-template-columns: minmax(360px, 1.25fr) repeat(2, minmax(0, 0.875fr));
  align-items: stretch;
}

.testimonial-grid p {
  color: rgba(248, 251, 255, 0.86);
}

.testimonial-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(184, 244, 61, 0.26);
  border-radius: 999px;
  color: var(--lime);
  background:
    radial-gradient(
      circle at 68% 22%,
      rgba(53, 199, 255, 0.34),
      transparent 45%
    ),
    rgba(255, 255, 255, 0.075);
  font-size: 0.76rem;
  font-weight: 950;
}

.testimonial-featured {
  display: grid;
  align-content: center;
  min-height: 250px;
  border-color: rgba(53, 199, 255, 0.24);
  background:
    radial-gradient(
      ellipse at 12% 0%,
      rgba(53, 199, 255, 0.18),
      transparent 17rem
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(184, 244, 61, 0.12),
      transparent 15rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.034)
    ),
    var(--panel-strong);
}

.testimonial-featured p {
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.55;
}

.price-card {
  display: grid;
  align-content: start;
}

#pricing {
  margin-bottom: clamp(54px, 8vw, 104px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(184, 244, 61, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(
      ellipse 34rem 18rem at 12% 0%,
      rgba(184, 244, 61, 0.13),
      transparent 72%
    ),
    radial-gradient(
      ellipse 30rem 15rem at 100% 12%,
      rgba(53, 199, 255, 0.15),
      transparent 74%
    ),
    rgba(255, 255, 255, 0.035);
}

.price-card h3 {
  font-size: 2rem;
}

.price-card .primary-btn,
.price-card .secondary-btn {
  margin-top: 12px;
}

.pricing-trust-note {
  max-width: 820px;
  margin: 22px auto 0;
  padding: 11px 14px;
  border: 1px solid rgba(184, 244, 61, 0.18);
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.82);
  background: rgba(184, 244, 61, 0.07);
  text-align: center;
  font-weight: 850;
}

.login-section {
  margin-top: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 8, 22, 0.38);
  box-shadow: none;
}

.login-section + .final-cta {
  margin-top: clamp(44px, 7vw, 90px);
}

.login-actions {
  display: flex;
  justify-self: end;
  flex-wrap: wrap;
  gap: 12px;
}

.login-section .primary-btn {
  justify-self: end;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(42px, 7vw, 72px);
  text-align: center;
  border-color: rgba(184, 244, 61, 0.24);
  background:
    radial-gradient(
      ellipse 34rem 16rem at 50% 0%,
      rgba(184, 244, 61, 0.16),
      transparent 72%
    ),
    radial-gradient(
      ellipse 30rem 15rem at 100% 100%,
      rgba(233, 92, 255, 0.14),
      transparent 74%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.095),
      rgba(255, 255, 255, 0.034)
    ),
    var(--panel-strong);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: rgba(248, 251, 255, 0.62);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(248, 251, 255, 0.54);
  font-size: 0.88rem;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-showcase {
    grid-template-columns: 1fr;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero,
  .classroom-confidence,
  .privacy-panel,
  .benefits-section,
  .split-section,
  .feedback-panel,
  .login-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .benefit-grid,
  .trust-strip,
  .confidence-grid,
  .trust-pillar-grid,
  .game-support-grid,
  .roadmap-grid,
  .pricing-grid,
  .vote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vote-grid,
  .roadmap-timeline {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline::before {
    left: var(--roadmap-dot-center);
    right: auto;
    top: 64px;
    bottom: 64px;
    width: 2px;
    height: auto;
  }

  .roadmap-timeline article {
    padding: 22px 0 22px 74px;
  }

  .roadmap-timeline article::before {
    left: var(--roadmap-dot-left);
    top: 28px;
  }

  .benefit-copy {
    position: static;
  }

  .login-actions,
  .login-section .primary-btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .brand {
    width: 206px;
    height: 84px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .classroom-confidence,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, var(--content));
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .preview-stage {
    min-height: 330px;
    margin-inline: 14px;
  }

  .game-grid,
  .game-showcase,
  .game-support-grid,
  .benefit-grid,
  .privacy-grid,
  .trust-pillar-grid,
  .roadmap-grid,
  .pricing-grid,
  .testimonial-grid,
  .vote-grid {
    grid-template-columns: 1fr;
  }

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

  .game-card.featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .game-card.featured img {
    justify-self: start;
    width: 110px;
  }

  .bubble-visual {
    justify-self: start;
    width: 150px;
  }

  .bubble-marker {
    width: 44px;
    height: 44px;
  }

  .story-step {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .story-step img {
    display: none;
  }

  .vote-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .vote-icon,
  .vote-count {
    display: none;
  }

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

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 186px;
    height: 76px;
  }

  .header-actions,
  .hero-actions,
  .inline-actions,
  .login-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .login-link,
  .header-cta,
  .primary-btn,
  .secondary-btn {
    flex: 1;
  }

  .preview-topbar,
  .preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tile-a {
    left: 16px;
  }

  .tile-b {
    right: 16px;
  }

  .landing-form .primary-btn {
    width: 100%;
  }
}
