:root {
  --bg: #07061a;
  --bg-2: #100b2a;
  --panel: rgba(22, 16, 52, 0.82);
  --panel-border: rgba(140, 110, 255, 0.35);
  --text: #eef1ff;
  --muted: #a7a3c7;
  --purple: #7b5cff;
  --purple-2: #9b6dff;
  --cyan: #4ecbff;
  --yellow: #ffd23a;
  --yellow-2: #ff9f1a;
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Exo 2", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

main section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #120b2e 0%, var(--bg) 35%, #050412 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(700px 380px at 15% 10%, rgba(123, 92, 255, 0.22), transparent 60%),
    radial-gradient(640px 360px at 85% 20%, rgba(78, 203, 255, 0.14), transparent 55%),
    radial-gradient(700px 420px at 50% 80%, rgba(255, 159, 26, 0.08), transparent 60%);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 6, 24, 0.78);
  border-bottom: 1px solid rgba(140, 110, 255, 0.2);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  width: 150px;
  filter: drop-shadow(0 0 12px rgba(78, 203, 255, 0.25));
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--cyan);
}

.header-cta {
  margin-left: auto;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  background: rgba(22, 16, 52, 0.9);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: 0.25s;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-yellow {
  color: #2a1600;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
  box-shadow: 0 8px 24px rgba(255, 159, 26, 0.35);
}

.btn-purple {
  color: #fff;
  background: linear-gradient(180deg, var(--purple-2) 0%, #5a3fd6 100%);
  box-shadow: 0 8px 24px rgba(123, 92, 255, 0.35);
}

.cta-img {
  display: inline-block;
  transition: transform 0.3s var(--ease), filter 0.3s;
  filter: drop-shadow(0 10px 22px rgba(255, 159, 26, 0.35));
}

.cta-img img {
  width: min(280px, 80vw);
}

.cta-img:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Hero */
.hero {
  padding: 0 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.hero-logo {
  /* width: min(320px, 80vw); */
  animation: rise 0.8s var(--ease) both;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.hero-tagline {
  width: min(300px, 78vw);
  animation: rise 0.8s var(--ease) 0.08s both;
}

.hero-text {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
  animation: rise 0.8s var(--ease) 0.16s both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: rise 0.8s var(--ease) 0.22s both;
}

.hero-pills li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d8d2ff;
  background: rgba(123, 92, 255, 0.18);
  border: 1px solid rgba(155, 109, 255, 0.4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.25rem;
  animation: rise 0.8s var(--ease) 0.3s both;
}

.hero-stats div {
  display: grid;
  gap: 0.15rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--yellow);
}

.hero-stats span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-art {
  position: relative;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(123, 92, 255, 0.35));
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 203, 255, 0.22), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

/* Feature strip */
.feature-strip {
  padding: 1rem 0 2rem;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: 0 0 40px rgba(123, 92, 255, 0.12);
}

.feature-strip-grid article {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
}

.feature-strip-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(78, 203, 255, 0.35));
}

.feature-strip-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 4rem 0 1rem;
}

.section-title {
  margin: 0 0 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 24px rgba(123, 92, 255, 0.45);
}

.section-title span {
  color: var(--cyan);
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head-row .section-title {
  margin: 0;
  text-align: left;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* How to play */
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.35rem;
}

.how-card {
  width: min(210px, 42vw);
  display: grid;
  place-items: center;
  min-height: 260px;
  transition: transform 0.35s var(--ease);
}

.how-card img {
  width: 100%;
  height: 244px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

.how-card:hover {
  transform: translateY(-8px);
}

.how-card-score {
  display: grid;
  gap: 0.75rem;
  place-items: center;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: rgba(22, 16, 52, 0.75);
  border: 1px solid var(--panel-border);
  min-height: 220px;
}

.how-card-score p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.how-arrow {
  font-size: 2rem;
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(78, 203, 255, 0.6);
}

/* Showcase */
.showcase-grid,
.compete-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
}

.panel-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  min-height: 240px;
}

.panel-media img {
  width: min(280px, 80%);
  margin: 1rem auto;
}

.play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  color: #2a1600;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 159, 26, 0.45);
}

.shot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.shot-row figure {
  margin: 0;
  text-align: center;
}

.shot-row img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(140, 110, 255, 0.25);
}

.shot-row figcaption {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Leaderboard / Contest */
.lb-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lb-list li {
  display: grid;
  grid-template-columns: auto 42px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(140, 110, 255, 0.2);
}

.lb-list img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.lb-list strong {
  display: block;
  font-size: 0.95rem;
}

.lb-list span {
  color: var(--muted);
  font-size: 0.75rem;
}

.lb-list em {
  font-style: normal;
  font-weight: 700;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #1a1020;
}

.rank.gold { background: linear-gradient(180deg, #ffe27a, #f0b429); }
.rank.silver { background: linear-gradient(180deg, #e8eef8, #9aa7bd); }
.rank.bronze { background: linear-gradient(180deg, #ffc089, #d88a3a); }

.contest-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 160px;
  margin-bottom: 1rem;
}

.contest-art > img:first-child {
  width: min(200px, 70%);
}

.contest-trophy {
  position: absolute;
  right: 12%;
  top: 8%;
  width: 70px !important;
  animation: bob 3s ease-in-out infinite;
}

.prize-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.prize-row li {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.prize-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.prize-row span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Achievements */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-items: center;
}

.badge-grid img {
  width: min(150px, 100%);
  transition: transform 0.35s var(--ease), filter 0.35s;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.badge-grid li:hover img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 16px 28px rgba(255, 210, 58, 0.28));
}

/* Testimonials */
.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.slider-track {
  position: relative;
  min-height: 220px;
}

.quote-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.quote-card.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.12em;
}

.quote-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd8ff;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-card footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.quote-card footer strong {
  display: block;
}

.quote-card footer span {
  color: var(--muted);
  font-size: 0.8rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  background: rgba(22, 16, 52, 0.9);
  color: var(--cyan);
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.25s;
}

.slider-btn:hover {
  background: rgba(123, 92, 255, 0.25);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.faq-grid details {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-grid details[open] summary::after {
  content: "–";
}

.faq-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
  padding: 3rem 0;
}

.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background:
    radial-gradient(500px 180px at 20% 50%, rgba(123, 92, 255, 0.35), transparent 70%),
    linear-gradient(90deg, #2a1658, #17103a 55%, #241255);
  border: 1px solid rgba(155, 109, 255, 0.45);
  box-shadow: 0 0 40px rgba(123, 92, 255, 0.2);
}

.final-cta-inner > img {
  width: 130px;
}

.final-cta-text h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta-text p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(140, 110, 255, 0.2);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer-brand {
  flex-shrink: 0;
  /* display: inline-flex; */
  align-items: center;
  /* justify-content: center; */
  padding: 0.25rem;
  border-radius: 14px;
  background: transparent;
  border: 0px solid rgba(155, 109, 255, 0.12);
  /* box-shadow: none; */
}

.footer-brand img {
  width: 120px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.15rem;
  margin-left: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.footer-links a:hover,
.footer-contact:hover {
  color: var(--cyan);
  background: rgba(78, 203, 255, 0.09);
  border-color: rgba(78, 203, 255, 0.25);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 18px;
  background: rgba(22, 16, 52, 0.45);
  border: 1px solid rgba(155, 109, 255, 0.18);
}

.footer-social .social-row a,
.social-row a {
  min-height: 34px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(155, 109, 255, 0.22);
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.footer-social .social-row a svg,
.social-row a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social .social-row a:hover,
.social-row a:hover {
  color: #ffffff;
  background: rgba(78, 203, 255, 0.14);
  border-color: rgba(78, 203, 255, 0.55);
  transform: translateY(-1px);
}

.footer-social span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bt-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(140, 110, 255, 0.2);
  background: rgba(8, 6, 24, 0.75);
}

.bt-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.bt-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.bt-footer-brand {
  min-width: 170px;
  display: flex;
  align-items: center;
}

.bt-footer-brand img {
  width: 140px;
  height: auto;
  display: block;
}

.bt-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1.5rem;
  flex: 1;
}

.bt-footer-col h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.bt-footer-col a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.bt-footer-col a:hover {
  color: var(--cyan);
}

.bt-footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 210px;
}

.bt-footer-social span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.bt-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bt-social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(155, 109, 255, 0.18);
  color: var(--muted);
  transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bt-social-row a:hover {
  color: #ffffff;
  background: rgba(78, 203, 255, 0.18);
  border-color: rgba(78, 203, 255, 0.45);
  transform: translateY(-2px);
}

.bt-social-row a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bt-footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(140, 110, 255, 0.16);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  color: #8b87b5;
  font-size: 0.9rem;
}

.bt-footer-bottom a {
  color: var(--muted);
}

.bt-footer-bottom a:hover {
  color: var(--cyan);
}

@media (max-width: 720px) {
  .bt-footer-top,
  .bt-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .bt-footer-links {
    grid-template-columns: 1fr;
  }

  .bt-footer-social {
    width: 100%;
  }

  .bt-footer-bottom {
    justify-content: flex-start;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .showcase-grid,
  .compete-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .shot-row figure:nth-child(4),
  .shot-row figure:nth-child(5) {
    display: none;
  }

  .how-arrow {
    display: none;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: grid;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: 14px;
    background: rgba(12, 8, 32, 0.97);
    border: 1px solid var(--panel-border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: 0.25s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: rgba(123, 92, 255, 0.15);
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-text {
    max-width: 34ch;
  }

  .hero-pills,
  .hero-stats {
    justify-content: center;
  }

  .footer-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
    margin-left: 0;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .social-row {
    justify-content: center;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
