@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/Baloo2-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/Baloo2-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #061820;
  --color-bg-deep: #040f16;
  --color-surface: #0c2430;
  --color-surface-elevated: #123040;
  --color-foreground: #f4fbf7;
  --color-muted-fg: #9bb5bf;
  --color-border: rgba(124, 255, 46, 0.18);
  --color-lime: #7cff2e;
  --color-lime-bright: #a8ff3d;
  --color-lime-deep: #3db00a;
  --color-gold: #ffd54a;
  --color-gold-deep: #e6a812;
  --color-blue: #3b82f6;
  --color-blue-deep: #1d4ed8;
  --color-purple: #8b5cf6;
  --color-purple-deep: #6d28d9;
  --color-cream: #f5efe0;
  --color-tile-a: #7c3aed;
  --color-tile-b: #e11d48;
  --color-tile-c: #f59e0b;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-btn: 18px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Baloo 2", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 68rem;
  --nav-h: 4.25rem;
  --glow-lime: 0 0 40px rgba(124, 255, 46, 0.35), 0 0 80px rgba(124, 255, 46, 0.15);
  --shadow-tile: 0 8px 0 rgba(0, 0, 0, 0.35), 0 16px 28px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-foreground);
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(124, 255, 46, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(59, 130, 246, 0.08), transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
  background-attachment: fixed;
  min-height: 100dvh;
}

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

a {
  color: var(--color-lime-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-gold);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.play-badge:focus-visible {
  outline: 3px solid var(--color-lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-lime);
  color: #06200a;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 24, 32, 0.82);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-foreground);
  text-decoration: none;
}

.brand:hover {
  color: var(--color-lime-bright);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: linear-gradient(160deg, #fff8e7, var(--color-cream));
  color: var(--color-tile-a);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow:
    0 4px 0 #c4b89a,
    0 0 16px rgba(124, 255, 46, 0.35);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-muted-fg);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 0.35rem;
  cursor: pointer;
  transition: color 180ms ease-out;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-lime-bright);
}

.nav-cta {
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-lime-bright), var(--color-lime));
  color: #06200a !important;
  box-shadow: 0 4px 0 var(--color-lime-deep);
}

.nav-cta:hover {
  color: #06200a !important;
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 0.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-foreground);
  font-family: var(--font-display);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 180ms ease-out, filter 180ms ease-out, box-shadow 180ms ease-out;
}

.btn:active {
  transform: translateY(3px);
}

.btn-play {
  background: linear-gradient(180deg, var(--color-lime-bright), var(--color-lime));
  color: #06200a;
  box-shadow:
    0 6px 0 var(--color-lime-deep),
    0 12px 28px rgba(124, 255, 46, 0.35);
}

.btn-play:hover {
  color: #06200a;
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-levels {
  background: linear-gradient(180deg, #60a5fa, var(--color-blue));
  box-shadow: 0 6px 0 var(--color-blue-deep), 0 12px 24px rgba(59, 130, 246, 0.3);
}

.btn-levels:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(124, 255, 46, 0.28), transparent 42%),
    radial-gradient(circle at 50% 70%, rgba(124, 255, 46, 0.1), transparent 50%);
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero-letters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  place-items: center;
  opacity: 0.06;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 9rem);
  color: #fff;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  width: 100%;
  text-align: center;
}

.brand-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.title-gold {
  background: linear-gradient(180deg, #fff6c2 0%, var(--color-gold) 45%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(255, 213, 74, 0.35));
}

.title-ice {
  color: #fff;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.45),
    0 0 24px rgba(124, 255, 46, 0.35);
}

.lede {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--color-muted-fg);
}

.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.6rem, 2vw, 1.25rem);
  margin: 0 auto 2rem;
  min-height: 7.5rem;
}

.tile {
  width: clamp(4.2rem, 12vw, 6rem);
  height: clamp(4.2rem, 12vw, 6rem);
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, #fffdf8, var(--color-cream) 55%, #e8dfc8);
  box-shadow: var(--shadow-tile);
  position: relative;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.tile > span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.85rem);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.tile-a {
  transform: rotate(-12deg);
  box-shadow: var(--shadow-tile), 0 0 28px rgba(124, 58, 237, 0.45);
}
.tile-a > span { color: var(--color-tile-a); }

.tile-b {
  transform: translateY(-10px) rotate(2deg);
  width: clamp(4.8rem, 13vw, 6.8rem);
  height: clamp(4.8rem, 13vw, 6.8rem);
  box-shadow: var(--shadow-tile), 0 0 32px rgba(225, 29, 72, 0.4);
}
.tile-b > span { color: var(--color-tile-b); font-size: clamp(2.3rem, 7vw, 3.2rem); }

.tile-c {
  transform: rotate(12deg);
  box-shadow: var(--shadow-tile), 0 0 28px rgba(245, 158, 11, 0.4);
}
.tile-c > span { color: var(--color-tile-c); }

.float-a { animation: float-tile 5.2s ease-in-out infinite; }
.float-b { animation: float-tile 5.8s ease-in-out infinite 0.4s; }
.float-c { animation: float-tile 5.4s ease-in-out infinite 0.8s; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

/* —— Sections —— */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  text-align: center;
}

.section .section-lede {
  margin: 0 auto 2rem;
  max-width: 40rem;
  color: var(--color-muted-fg);
  text-align: center;
}

.play-showcase {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  align-items: center;
}

@media (min-width: 800px) {
  .play-showcase {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}

.match-stage {
  position: relative;
  min-height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 255, 46, 0.22), transparent 55%),
    var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.match-beam {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-lime-bright), transparent);
  box-shadow: 0 0 24px var(--color-lime), 0 0 48px rgba(124, 255, 46, 0.5);
  animation: beam-pulse 2.4s ease-in-out infinite;
}

.tile-match {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-tile), 0 0 36px rgba(124, 255, 46, 0.65);
}

.tile-d > span,
.tile-d-twin > span {
  color: #0ea5e9;
}

.complete-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 48, 64, 0.95), rgba(8, 28, 38, 0.98));
  border: 1px solid rgba(255, 213, 74, 0.25);
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.ribbon {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-lime-bright), var(--color-lime));
  color: #06200a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 0 var(--color-lime-deep);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0;
}

.stats div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.55rem 0.35rem;
}

.stats dt {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-gold);
}

.steps {
  display: grid;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem 1.45rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, var(--color-lime-bright), var(--color-lime));
  color: #06200a;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 4px 0 var(--color-lime-deep);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.step p {
  margin: 0;
  color: var(--color-muted-fg);
  font-size: 0.98rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: rgba(12, 36, 48, 0.75);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: rgba(124, 255, 46, 0.12);
  color: var(--color-lime-bright);
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.feature-list span {
  color: var(--color-muted-fg);
  font-size: 0.95rem;
}

/* —— Trust —— */
.trust-band {
  margin: 1rem 0 0;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(124, 255, 46, 0.12), transparent 50%),
    linear-gradient(135deg, #0a2a38, #0c2430 50%, #081c28);
  border-block: 1px solid var(--color-border);
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.trust-band h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.trust-band p {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  color: var(--color-muted-fg);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

.trust-points li {
  background: rgba(124, 255, 46, 0.1);
  border: 1px solid rgba(124, 255, 46, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-lime-bright);
}

.trust-action {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* —— CTA Banner —— */
.cta-banner {
  padding: 3.5rem 1.25rem 4rem;
}

.cta-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app-icon-stack {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
}

.stack-tile {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
}

.stack-purple {
  left: 0;
  top: 1.4rem;
  background: linear-gradient(145deg, #a78bfa, var(--color-tile-a));
  transform: rotate(-18deg);
}

.stack-red {
  right: 0;
  top: 1.1rem;
  background: linear-gradient(145deg, #fb7185, var(--color-tile-b));
  transform: rotate(16deg);
}

.stack-cream {
  left: 50%;
  top: 0.35rem;
  transform: translateX(-50%);
  background: linear-gradient(165deg, #fffdf8, var(--color-cream));
  display: grid;
  place-items: center;
  box-shadow:
    0 8px 0 #c4b89a,
    0 0 28px rgba(124, 255, 46, 0.45);
  z-index: 1;
}

.stack-cream span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-tile-a);
}

.cta-banner-copy {
  max-width: 28rem;
}

.download-brush {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.55rem 1.75rem 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: #06200a;
  background: linear-gradient(180deg, var(--color-lime-bright), var(--color-lime));
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  box-shadow: 0 0 32px rgba(124, 255, 46, 0.4);
  transform: rotate(-2deg);
}

.cta-banner-copy .section-lede {
  margin-bottom: 1.25rem;
  text-align: center;
}

.play-badge {
  display: inline-block;
  transition: transform 180ms ease-out;
  cursor: pointer;
}

.play-badge:hover {
  transform: translateY(-2px);
}

.note {
  margin: 1rem auto 0;
  color: var(--color-muted-fg);
  font-size: 0.9rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: rgba(4, 15, 22, 0.9);
  padding: 2rem 1.25rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--color-muted-fg);
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-muted-fg);
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--color-lime-bright);
}

/* —— Legal —— */
.legal-page {
  background: var(--color-bg);
}

.legal-wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.legal-wrap h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.legal-meta {
  margin: 0 0 1.5rem;
  color: var(--color-muted-fg);
  font-style: italic;
}

.legal-body h2 {
  margin: 1.75rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-lime-bright);
}

.legal-body p,
.legal-body li {
  color: var(--color-foreground);
}

.legal-body ul {
  padding-left: 1.2rem;
}

.legal-body li {
  margin: 0.35rem 0;
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float-tile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-a { animation-name: float-a; }
.float-b { animation-name: float-b; }
.float-c { animation-name: float-c; }

@keyframes float-a {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-12px); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(-10px) rotate(2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

@keyframes float-c {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.65; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem;
  }

  .nav-cta {
    text-align: center;
  }
}

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

  .hero-glow,
  .float-a,
  .float-b,
  .float-c,
  .match-beam,
  .btn,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
