:root {
  --ink: #f4f8ef;
  --muted: #aab7aa;
  --black: #030704;
  --panel: #09130b;
  --panel-2: #0c1b10;
  --lime: #9eff24;
  --green: #35e35e;
  --yellow: #ffe61f;
  --red: #ff334f;
  --blue: #34b8ff;
  --line: rgba(180, 255, 181, .14);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font: 800 21px/1 var(--display); letter-spacing: .5px; }
.brand img { width: 44px; height: 44px; border-radius: 12px; box-shadow: 0 0 24px rgba(111,255,49,.22); }
.brand b { color: var(--lime); }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { color: #c2cbc1; transition: color .2s ease; }
.nav-links > a:not(.nav-cta):hover { color: var(--lime); }
.nav-cta { padding: 13px 18px; color: #071008; background: var(--lime); border-radius: 5px; text-transform: uppercase; letter-spacing: .7px; }
.nav-cta span { margin-left: 12px; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: #fff; transition: .2s ease; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 50px;
  padding: 130px max(40px, calc((100vw - 1180px)/2)) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 48%, rgba(54,210,48,.12), transparent 32%),
    linear-gradient(115deg, #061008 0%, #020504 56%, #07130a 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(116,255,113,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,255,113,.11) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(500px) rotateX(55deg) scale(1.5) translateY(28%);
  mask-image: linear-gradient(to bottom, transparent, black 35%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: 3%; top: 18%; border: 1px solid rgba(115,255,55,.16); box-shadow: 0 0 130px rgba(48,229,70,.12) inset; }
.hero-glow-two { width: 300px; height: 300px; left: -180px; bottom: -120px; background: rgba(96,255,39,.08); filter: blur(80px); }
.hero-copy, .hero-art { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: #c5d1c2; font: 700 13px/1 var(--body); letter-spacing: 2.2px; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 36px; height: 2px; margin: 0 10px 4px 0; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.hero h1, .section h2 {
  margin: 0;
  font: 900 clamp(66px, 7.5vw, 112px)/.82 var(--display);
  letter-spacing: -2.6px;
  text-transform: uppercase;
}
.hero h1 em, .section h2 em { color: var(--lime); font-style: italic; }
.hero h1 strong { color: var(--yellow); font-weight: 900; }
.hero-lede { max-width: 580px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #071008; background: linear-gradient(100deg, var(--green), var(--lime)); box-shadow: 0 14px 42px rgba(104,255,38,.2); }
.button-primary:hover { box-shadow: 0 18px 52px rgba(104,255,38,.32); }
.button-icon { display: grid; place-items: center; width: 29px; height: 29px; color: var(--lime); background: #071008; border-radius: 50%; font-size: 10px; }
.text-link { color: #dbe4d9; font-size: 14px; font-weight: 700; }
.text-link span { color: var(--lime); margin-left: 8px; }
.hero-stats { display: flex; gap: 45px; margin-top: 54px; }
.hero-stats div { display: grid; border-left: 1px solid rgba(255,255,255,.18); padding-left: 15px; }
.hero-stats strong { color: var(--lime); font: 800 28px/1 var(--display); }
.hero-stats span { margin-top: 6px; color: #7f8e7f; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; }
.hero-art { justify-self: end; width: min(560px, 45vw); transform: rotate(2deg); }
.hero-frame { position: relative; overflow: hidden; border: 1px solid rgba(137,255,70,.52); border-radius: 34px; box-shadow: 0 30px 100px rgba(0,0,0,.65), 0 0 60px rgba(72,255,42,.12); }
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 50px rgba(0,0,0,.4); pointer-events: none; }
.hero-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.score-chip, .combo-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  padding: 13px 17px;
  background: rgba(5,13,7,.88);
  border: 1px solid rgba(115,255,65,.5);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.5), 0 0 20px rgba(91,255,44,.14);
  backdrop-filter: blur(10px);
}
.score-chip { top: 5%; left: -8%; }
.score-chip span { color: var(--green); font-size: 10px; letter-spacing: 1.7px; text-transform: uppercase; }
.score-chip strong { font: 800 25px/1.2 var(--display); }
.combo-chip { right: -4%; bottom: 9%; display: block; color: var(--yellow); font: 800 16px var(--display); letter-spacing: 1px; border-color: rgba(255,230,31,.55); }
.combo-chip span { margin-right: 6px; }
.slash-line { position: absolute; z-index: 4; width: 52%; height: 5px; top: 56%; left: 28%; transform: rotate(-37deg); background: #fff; border-radius: 50%; box-shadow: 0 0 10px #fff, 0 0 25px #80fff8, 0 0 55px #42e7df; pointer-events: none; }
.floating-veggie { position: absolute; z-index: 4; filter: drop-shadow(0 15px 14px rgba(0,0,0,.55)); animation: float 4.5s ease-in-out infinite; }
.veggie-potato { left: 45%; top: 18%; font-size: 52px; transform: rotate(-28deg); }
.veggie-carrot { right: 3%; top: 28%; font-size: 54px; animation-delay: -1.2s; }
.veggie-broccoli { left: 49%; bottom: 8%; font-size: 58px; animation-delay: -2.3s; }
@keyframes float { 50% { translate: 0 -16px; rotate: 5deg; } }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 10px; color: #839083; font-size: 10px; letter-spacing: 1.7px; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { position: relative; width: 1px; height: 30px; overflow: hidden; background: rgba(255,255,255,.16); }
.scroll-cue i::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--lime); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { to { top: 100%; } }

.ticker { overflow: hidden; padding: 18px 0; color: #071008; background: var(--lime); transform: rotate(-1deg) scale(1.01); }
.ticker-track { display: flex; width: max-content; gap: 28px; align-items: center; animation: ticker 30s linear infinite; font: 900 25px/1 var(--display); letter-spacing: 1px; }
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); line-height: 1.75; }
.section h2 { font-size: clamp(58px, 7vw, 96px); }
.gameplay { padding-top: 160px; }
.gameplay-layout { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; margin-top: 80px; }
.phone-stage { position: relative; min-height: 690px; display: grid; place-items: center; }
.phone-shell { position: relative; z-index: 2; width: 330px; padding: 10px; background: linear-gradient(145deg, #334039, #070b08 25%, #131a15 70%, #46584c); border: 1px solid #556159; border-radius: 48px; box-shadow: 0 40px 100px #000, 0 0 60px rgba(53,227,94,.13); transform: rotate(-4deg); }
.phone-shell::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(158,255,36,.26); border-radius: 42px; pointer-events: none; }
.phone-shell img { width: 100%; height: 630px; object-fit: cover; object-position: center; border-radius: 38px; }
.phone-speaker { position: absolute; z-index: 3; top: 20px; left: 50%; width: 82px; height: 21px; background: #050705; border-radius: 20px; transform: translateX(-50%); }
.orbit { position: absolute; border: 1px solid rgba(128,255,66,.13); border-radius: 50%; }
.orbit-one { width: 570px; height: 570px; }
.orbit-two { width: 720px; height: 720px; border-style: dashed; }
.impact { position: absolute; z-index: 4; color: var(--lime); font: 900 42px var(--display); text-shadow: 0 0 20px rgba(102,255,44,.55); }
.impact-one { top: 24%; right: 2%; transform: rotate(8deg); }
.impact-two { bottom: 19%; left: 4%; color: var(--yellow); transform: rotate(-8deg); }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--lime); font: 800 16px var(--display); letter-spacing: 1px; }
.step h3 { margin: 0 0 8px; font: 800 31px/1 var(--display); text-transform: uppercase; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; }
.step.danger .step-number, .step.danger h3 { color: var(--red); }

.features { width: 100%; max-width: none; padding: 120px max(40px, calc((100vw - 1180px)/2)); background: #071008; }
.feature-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 60px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 390px; overflow: hidden; padding: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: #0b160d; }
.feature-card::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(135deg, black, transparent 65%); }
.feature-icon { position: absolute; top: 30px; right: 32px; font-size: 34px; filter: drop-shadow(0 0 12px currentColor); }
.feature-index { position: relative; margin: 0 0 80px; color: #809080; font: 700 11px var(--body); letter-spacing: 1.7px; }
.feature-card h3 { position: relative; max-width: 390px; margin: 0 0 14px; font: 800 38px/.95 var(--display); text-transform: uppercase; }
.feature-card > p:not(.feature-index) { position: relative; z-index: 2; max-width: 390px; margin: 0; color: var(--muted); line-height: 1.6; }
.feature-green { background: linear-gradient(145deg, #0a1a0d, #071008); }
.feature-green h3, .feature-green .feature-icon { color: var(--green); }
.feature-yellow { background: linear-gradient(145deg, #1d1b07, #0b1008); }
.feature-yellow h3, .feature-yellow .feature-icon { color: var(--yellow); }
.feature-red { background: linear-gradient(145deg, #21090c, #100708); }
.feature-red h3, .feature-red .feature-icon { color: var(--red); }
.feature-blue { background: linear-gradient(145deg, #081824, #08100c); }
.feature-blue h3, .feature-blue .feature-icon { color: var(--blue); }
.card-art { position: absolute; right: 25px; bottom: 12px; display: flex; align-items: center; font-size: 80px; opacity: .72; transform: rotate(-9deg); }
.card-art i { width: 110px; height: 5px; margin: 0 -25px; background: white; border-radius: 50%; box-shadow: 0 0 12px white, 0 0 30px #68fff7; transform: rotate(-22deg); }
.combo-meter { position: absolute; right: 36px; bottom: 44px; display: flex; align-items: center; gap: 14px; color: var(--yellow); font: 800 30px var(--display); }
.combo-meter span { width: 180px; height: 15px; padding: 3px; border: 1px solid rgba(255,230,31,.4); border-radius: 20px; }
.combo-meter i { display: block; width: 76%; height: 100%; background: var(--yellow); border-radius: inherit; box-shadow: 0 0 15px rgba(255,230,31,.65); }
.bomb-art { position: absolute; right: 45px; bottom: 5px; font-size: 125px; filter: drop-shadow(0 0 22px rgba(255,40,56,.55)); transform: rotate(9deg); }
.score-art { position: absolute; right: 40px; bottom: 38px; display: grid; padding: 22px 30px; border: 1px solid rgba(52,184,255,.45); border-radius: 8px; background: rgba(6,19,27,.72); box-shadow: 0 0 30px rgba(52,184,255,.1); }
.score-art small { color: var(--blue); letter-spacing: 2px; }
.score-art strong { font: 800 44px var(--display); }

.challenge { display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: center; }
.challenge-media { position: relative; }
.challenge-media::before { content: ""; position: absolute; inset: 10% -8%; z-index: -1; background: rgba(255,36,59,.16); filter: blur(80px); }
.challenge-media img { border: 1px solid rgba(255,51,79,.36); border-radius: 16px; box-shadow: 0 35px 90px rgba(0,0,0,.55); }
.eyebrow-red span { background: var(--red); box-shadow: 0 0 10px var(--red); }
.challenge-copy h2 em { color: var(--red); }
.challenge-copy > p:not(.eyebrow) { max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.check-list { display: grid; gap: 15px; margin: 30px 0 34px; padding: 0; list-style: none; color: #dfe7dd; font-weight: 600; }
.check-list span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; color: #09130b; background: var(--red); border-radius: 50%; font-size: 12px; }
.button-outline { border: 1px solid var(--red); color: #fff; background: rgba(255,51,79,.06); box-shadow: inset 0 0 25px rgba(255,51,79,.06); }
.button-outline:hover { box-shadow: 0 0 35px rgba(255,51,79,.18); }

.screens { width: 100%; max-width: none; overflow: hidden; padding-left: max(40px, calc((100vw - 1180px)/2)); padding-right: 0; background: #071008; }
.screens-top { width: min(1180px, calc(100vw - 40px)); display: flex; align-items: end; justify-content: space-between; padding-right: max(40px, calc((100vw - 1180px)/2)); margin-bottom: 60px; }
.gallery-controls { display: flex; gap: 10px; }
.gallery-controls button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.16); background: transparent; cursor: pointer; font-size: 20px; transition: .2s; }
.gallery-controls button:hover { color: #071008; background: var(--lime); border-color: var(--lime); }
.gallery { display: flex; gap: 18px; overflow-x: auto; padding: 0 max(40px, calc((100vw - 1180px)/2)) 28px 0; scrollbar-width: none; scroll-snap-type: x mandatory; }
.gallery::-webkit-scrollbar { display: none; }
.gallery-card { flex: 0 0 315px; margin: 0; scroll-snap-align: start; }
.gallery-card img { width: 100%; height: 560px; object-fit: cover; object-position: top; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #030604; }
.gallery-wide { flex-basis: 455px; }
.gallery-wide img { object-position: center; }
.gallery-card figcaption { display: flex; justify-content: space-between; margin-top: 15px; color: #c6d0c4; font: 700 17px var(--display); text-transform: uppercase; letter-spacing: .8px; }
.gallery-card figcaption span { color: var(--lime); }

.download { width: min(1280px, calc(100% - 40px)); }
.download-card { position: relative; min-height: 550px; display: grid; grid-template-columns: 1fr .85fr; align-items: center; overflow: hidden; padding: 70px 80px; border: 1px solid rgba(158,255,36,.3); border-radius: 16px; background: linear-gradient(115deg, #102813, #071008 60%, #0c180e); box-shadow: inset 0 0 70px rgba(75,255,41,.06); }
.download-card::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(112,255,87,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(112,255,87,.15) 1px, transparent 1px); background-size: 55px 55px; }
.download-copy { position: relative; z-index: 2; }
.download-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.store-badge { display: inline-flex; align-items: center; gap: 13px; margin-top: 22px; padding: 12px 20px; color: #f7faf5; background: #050805; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; }
.play-mark { display: grid; place-items: center; width: 33px; height: 38px; color: var(--lime); font-size: 26px; }
.store-badge > span:last-child { display: grid; }
.store-badge small { font-size: 9px; letter-spacing: 1.5px; }
.store-badge strong { font-size: 21px; line-height: 1.1; }
.download-icon { position: relative; z-index: 2; justify-self: center; width: 330px; transform: rotate(5deg); }
.download-icon img { border-radius: 72px; box-shadow: 0 30px 80px #000, 0 0 70px rgba(117,255,41,.2); }
.download-burst { position: absolute; right: 4%; width: 550px; height: 550px; border: 1px solid rgba(158,255,36,.19); border-radius: 50%; box-shadow: 0 0 0 70px rgba(158,255,36,.025), 0 0 0 140px rgba(158,255,36,.018); }
.download-veg { position: absolute; font-size: 58px; filter: drop-shadow(0 10px 12px #000); animation: float 4s ease-in-out infinite; }
.veg-one { top: -50px; right: -45px; }
.veg-two { bottom: -30px; right: -55px; animation-delay: -1s; }
.veg-three { left: -65px; bottom: 20%; animation-delay: -2s; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; cursor: pointer; list-style: none; font: 700 23px var(--display); text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--lime); font-size: 28px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 640px; margin: -7px 0 27px; color: var(--muted); line-height: 1.7; }

footer { width: min(1180px, calc(100% - 40px)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px 40px; margin: 0 auto; padding: 42px 0; border-top: 1px solid rgba(255,255,255,.12); }
footer > p { margin: 0; color: #748174; font-size: 13px; }
.footer-links { display: flex; grid-column: 2; grid-row: 1; gap: 25px; color: #aab5a9; font-size: 13px; }
.footer-links a:hover { color: var(--lime); }
.copyright { grid-column: 2; text-align: right; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { min-height: 1000px; height: auto; max-height: none; grid-template-columns: 1fr; padding-top: 150px; text-align: center; }
  .hero-copy { max-width: 720px; margin: 0 auto; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { justify-self: center; width: min(620px, 80vw); margin-top: 20px; }
  .scroll-cue { display: none; }
  .veggie-potato { left: 5%; top: 33%; }
  .veggie-carrot { right: 5%; top: 38%; }
  .veggie-broccoli { left: 8%; bottom: 10%; }
  .gameplay-layout { grid-template-columns: 1fr; gap: 70px; }
  .steps { max-width: 720px; margin: 0 auto; }
  .feature-heading { display: block; }
  .challenge { gap: 45px; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .download-icon { width: 260px; margin-top: 70px; }
  .download-burst { right: 50%; bottom: -180px; transform: translateX(50%); }
  .faq { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 760px) {
  .site-header { left: 14px; right: 14px; width: auto; height: 76px; transform: none; }
  .brand { font-size: 18px; }
  .brand img { width: 38px; height: 38px; border-radius: 10px; }
  .menu-toggle { position: absolute; right: 0; display: block; z-index: 2; cursor: pointer; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; visibility: hidden; opacity: 0; background: rgba(3,7,4,.97); transition: .2s; font: 800 29px var(--display); text-transform: uppercase; }
  .menu-open .nav-links { visibility: visible; opacity: 1; }
  .nav-cta { margin-top: 12px; font-size: 17px; }
  .hero { min-height: auto; gap: 30px; padding: 125px 20px 90px; }
  .hero h1, .section h2 { letter-spacing: -1.4px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(43px, 13.2vw, 58px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-stats { width: 100%; justify-content: space-between; gap: 0; margin-top: 42px; }
  .hero-stats div { min-width: 30%; padding-left: 10px; }
  .hero-art { width: calc(100vw - 28px); margin-top: 25px; }
  .score-chip { left: 1%; }
  .combo-chip { right: 0; }
  .floating-veggie { display: none; }
  .ticker-track { font-size: 21px; }
  .section { width: calc(100% - 32px); padding: 90px 0; }
  .gameplay { padding-top: 120px; }
  .section h2 { font-size: clamp(54px, 17vw, 76px); }
  .gameplay-layout { margin-top: 55px; }
  .phone-stage { min-height: 600px; }
  .phone-shell { width: 280px; }
  .phone-shell img { height: 540px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 540px; height: 540px; }
  .impact-one { right: -2%; }
  .step { grid-template-columns: 45px 1fr; gap: 12px; }
  .features { padding: 90px 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 420px; padding: 28px; }
  .feature-index { margin-bottom: 75px; }
  .card-art { right: 4px; font-size: 63px; }
  .combo-meter { right: 25px; }
  .combo-meter span { width: 130px; }
  .bomb-art { font-size: 105px; right: 26px; }
  .score-art { right: 25px; }
  .challenge { grid-template-columns: 1fr; gap: 55px; }
  .screens { padding-left: 16px; }
  .screens-top { width: calc(100vw - 32px); display: block; padding-right: 16px; }
  .gallery-controls { margin-top: 30px; }
  .gallery { padding-right: 16px; }
  .gallery-card { flex-basis: 270px; }
  .gallery-card img { height: 480px; }
  .gallery-wide { flex-basis: 320px; }
  .download { width: calc(100% - 32px); }
  .download-card { min-height: 700px; padding: 55px 22px; }
  .download-icon { width: 220px; }
  .download-icon img { border-radius: 50px; }
  .download-veg { font-size: 46px; }
  .faq-list summary { font-size: 20px; }
  footer { width: calc(100% - 32px); grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  footer > p, .footer-links, .copyright { grid-column: 1; grid-row: auto; text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
