/* ============================================================
   LP1 — OnBuzz Viral Landing Page
   style.css
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #000000;
  --bg-alt:      #07090D;
  --green:       #00ff88;
  --cyan:        #25D0FF;
  --red:         #ff0033;
  --orange:      #ff7a00;
  --white:       #F5F7FF;
  --muted:       rgba(245, 247, 255, 0.55);
  --dim:         rgba(245, 247, 255, 0.35);
  --border:      rgba(0, 255, 136, 0.2);
  --border-cyan: rgba(37, 208, 255, 0.2);
  --border-hard: rgba(0, 255, 136, 0.5);

  --glow-green:  0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.15);
  --glow-cyan:   0 0 20px rgba(37, 208, 255, 0.4), 0 0 40px rgba(37, 208, 255, 0.15);
  --glow-btn:    0 0 12px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.25);

  --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, "Courier New", monospace;
  --font-display: "Oxanium", "JetBrains Mono", sans-serif;

  --size-hero:    clamp(2rem, 8vw, 4.5rem);
  --size-section: clamp(1.25rem, 4vw, 2rem);
  --size-body:    0.9rem;
  --size-label:   0.7rem;
  --size-badge:   0.65rem;
}

/* ── 2. Reset + Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-mono);
}

/* ── 3. Scanlines + Vignette ──────────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* ── 4. Typography Utilities ──────────────────────────────── */
.accent-green  { color: var(--green); }
.accent-cyan   { color: var(--cyan); }
.accent-red    { color: var(--red); }
.accent-orange { color: var(--orange); }
.dim           { color: var(--dim); }

.caret::after {
  content: "▋";
  color: var(--green);
  animation: caret-blink 1s steps(2, start) infinite;
  margin-left: 2px;
}

/* ── 5. Button System ─────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  white-space: nowrap;
}

.btn--primary {
  border-color: var(--green);
  color: var(--green);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--green);
  color: #000;
  outline: none;
}
.btn--primary:active { transform: scale(0.97); }

.btn--glow {
  animation: btn-pulse-glow 2.5s ease-in-out infinite;
}
.btn--glow:hover { animation: none; box-shadow: var(--glow-btn); }

.btn--outline {
  border-color: var(--border);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--green {
  border-color: var(--border);
  color: var(--green);
}
.btn--green:hover {
  border-color: var(--green);
  box-shadow: var(--glow-green);
}

.btn--cyan {
  border-color: var(--border-cyan);
  color: var(--cyan);
}
.btn--cyan:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  animation: none;
  pointer-events: none;
}

/* ── 6. @Keyframes ────────────────────────────────────────── */
@keyframes caret-blink {
  to { visibility: hidden; }
}

@keyframes glitch-in {
  0%   { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  10%  { clip-path: inset(15% 0 55% 0); transform: translate(-3px, 0); filter: hue-rotate(90deg); }
  20%  { clip-path: inset(65% 0 15% 0); transform: translate(3px, 0); }
  30%  { clip-path: inset(35% 0 35% 0); transform: translate(-2px, 1px); }
  40%  { clip-path: inset(0 0 0 0); transform: translate(0, 0); filter: none; }
  60%  { clip-path: inset(10% 0 70% 0); transform: translate(2px, 0); }
  80%  { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); filter: none; }
}

@keyframes glitch-before {
  0%   { clip-path: inset(0 0 0 0); transform: translate(2px, -1px); opacity: 0; }
  15%  { clip-path: inset(20% 0 50% 0); opacity: 0.7; }
  30%  { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); }
  50%  { clip-path: inset(0 0 0 0); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes glitch-after {
  0%   { clip-path: inset(0 0 0 0); transform: translate(-2px, 1px); opacity: 0; }
  20%  { clip-path: inset(40% 0 40% 0); opacity: 0.6; }
  40%  { clip-path: inset(5% 0 80% 0); transform: translate(2px, -1px); }
  60%  { clip-path: inset(0 0 0 0); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: var(--glow-btn); }
  50%       { box-shadow: 0 0 25px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.4); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  3%        { opacity: 0.6; }
  6%        { opacity: 1; }
  50%       { opacity: 0.92; }
  52%       { opacity: 1; }
}

@keyframes reveal-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes card-border-pulse {
  0%, 100% { border-color: var(--border); }
  50%       { border-color: var(--border-hard); }
}

@keyframes scan-move {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ── 7. Section Layout ────────────────────────────────────── */
.section {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vh, 64px);
  position: relative;
  min-height: 100vh;
}

.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.section__label {
  font-size: var(--size-badge);
  letter-spacing: 0.24em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
}

.section__title {
  font-family: var(--font-mono);
  font-size: var(--size-section);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

/* ── 8. Reveal Animations ─────────────────────────────────── */
.reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-target.is-visible .game-card:nth-child(2) {
  transition-delay: 0.12s;
}

/* ── 9. S1 — Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 6vw, 80px);
}

.hero__content {
  max-width: 720px;
  width: 100%;
  text-align: left;
  z-index: 10;
  position: relative;
}

.hero__eyebrow {
  font-size: var(--size-label);
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__label       { color: var(--green); font-weight: 600; }
.hero__label--dim  { color: var(--dim); }
.hero__sep         { color: var(--dim); }

.hero__headline {
  font-family: var(--font-mono);
  font-size: var(--size-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  position: relative;
}

/* Dual-layer glitch via pseudo-elements + data-text */
.hero__headline.is-glitching {
  animation: glitch-in 220ms steps(6, end) forwards;
}

.hero__headline.is-glitching::before,
.hero__headline.is-glitching::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero__headline.is-glitching::before {
  color: var(--cyan);
  animation: glitch-before 220ms steps(6, end) forwards;
}

.hero__headline.is-glitching::after {
  color: var(--red);
  animation: glitch-after 220ms steps(6, end) forwards;
}

.hero__sub {
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 40px;
  letter-spacing: 0.04em;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}

.hero__secondary-cta {
  font-size: var(--size-label);
  color: var(--dim);
  letter-spacing: 0.18em;
  cursor: default;
  animation: flicker 3s infinite;
}

.hero__terminal {
  border-left: 2px solid var(--border);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__boot-line {
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ── 10. S2 — Mockup Section ──────────────────────────────── */
.mockup-section { background: var(--bg-alt); }

.mockup-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
}

/* Phone frame */
.phone-frame {
  width: 240px;
  height: 440px;
  border: 2px solid var(--border);
  border-radius: 28px;
  background: var(--bg);
  position: relative;
  box-shadow: var(--glow-green);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-frame__notch {
  width: 80px;
  height: 12px;
  background: var(--bg-alt);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  flex-shrink: 0;
  z-index: 2;
}

.phone-frame__screen {
  padding: 8px 12px 16px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-terminal {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--green);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
}

.game-terminal__header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 8px;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--green);
}

.game-terminal__header .dim { color: var(--dim); }

.game-terminal__status {
  font-size: 0.55rem;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  color: var(--dim);
  animation: flicker 2s infinite;
}

.game-terminal__grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.task-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 5px;
  border: 1px solid transparent;
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  transition: border-color 0.3s, color 0.3s;
}

.task-row--locked  { color: var(--dim); }
.task-row--active  { border-color: var(--border); color: var(--green); animation: card-border-pulse 1.8s infinite; }
.task-row--passed  { color: var(--green); }
.task-row--failed  { color: var(--red); }

.task-row__num  { color: var(--dim); flex-shrink: 0; width: 14px; }
.task-row__name { flex: 1; }

.task-row__status {
  flex-shrink: 0;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.task-row__status.running {
  color: var(--green);
  animation: flicker 1.2s infinite;
}

.task-row--failed .task-row__status { color: var(--red); }
.task-row--passed .task-row__status { color: var(--green); }

/* Progress track (right column) */
.mockup-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}

.progress-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.progress-step__bar {
  height: 3px;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 7px;
}

.progress-step__fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 6px var(--green);
}

.progress-step--dead .progress-step__fill {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.progress-step__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.progress-step__name {
  font-size: var(--size-badge);
  color: var(--dim);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.progress-step__rate {
  font-size: var(--size-badge);
  letter-spacing: 0.12em;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── 11. S3 — Result Card ─────────────────────────────────── */
.failure-section { background: var(--bg); }

.result-card {
  font-family: var(--font-mono);
  border: 1px solid var(--green);
  background: var(--bg);
  padding: clamp(20px, 4vw, 28px);
  max-width: 480px;
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--green);
  box-shadow: var(--glow-green);
}

.result-card__header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: var(--size-label);
  letter-spacing: 0.18em;
}

.result-card__verdict {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.result-card__verdict.denied  { color: var(--red); }
.result-card__verdict.granted { color: var(--green); }

.result-card__rows {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-card__row {
  display: flex;
  gap: 12px;
}

.result-card__row .k {
  width: 90px;
  flex-shrink: 0;
  color: var(--dim);
  font-size: 0.72rem;
}

.result-card__row .v {
  font-size: 0.72rem;
}

.result-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.result-card__metric-label {
  display: block;
  font-size: var(--size-badge);
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 4px;
}

.result-card__metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.result-card__bar {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.04em;
  word-break: break-all;
  margin: 12px 0;
  min-height: 1.2em;
}

.result-card__footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  text-align: center;
  font-size: var(--size-badge);
  letter-spacing: 0.14em;
  color: var(--dim);
  line-height: 1.8;
}

.failure-taunt {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--red);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── 12. S4 — Share Card Mockup ───────────────────────────── */
.share-section { background: var(--bg-alt); }

.share-card-mockup {
  font-family: var(--font-mono);
  border: 1px solid var(--green);
  background: var(--bg);
  padding: clamp(20px, 4vw, 28px);
  max-width: 460px;
  width: 100%;
  font-size: 0.8rem;
  color: var(--green);
  box-shadow: var(--glow-green);
}

.share-card-mockup__header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 14px;
  font-size: var(--size-label);
  letter-spacing: 0.18em;
}

.share-card-mockup__verdict {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.share-card-mockup__verdict.denied { color: var(--red); }

.share-card-mockup__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.share-row {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
}

.share-row .k {
  width: 110px;
  flex-shrink: 0;
  color: var(--dim);
}

.share-card-mockup__footer {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  text-align: center;
  font-size: var(--size-badge);
  letter-spacing: 0.14em;
  color: var(--dim);
}

.share-hint {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.share-footnote {
  font-size: var(--size-badge);
  color: var(--dim);
  letter-spacing: 0.1em;
  margin-top: -8px;
}

/* ── 13. S5 — Game Cards ──────────────────────────────────── */
.games-section { background: var(--bg); }

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 880px;
}

.game-card {
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-card--green:hover {
  border-color: var(--green);
  box-shadow: var(--glow-green);
  transform: translateY(-3px);
}

.game-card--cyan:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.game-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: var(--size-badge);
  letter-spacing: 0.14em;
  color: #000;
  background: var(--green);
  padding: 3px 8px;
  font-weight: 700;
}

.game-card__badge--cyan { background: var(--cyan); }

.game-card__eyebrow {
  font-size: var(--size-badge);
  letter-spacing: 0.2em;
  color: var(--dim);
}

.game-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  letter-spacing: 0.06em;
}

.game-card__title--cyan { color: var(--cyan); }

.game-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}

.game-card__sub {
  font-size: 0.82rem;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.game-card__copy {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.game-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ── 14. S6 — OnBuzz Reveal ───────────────────────────────── */
.onbuzz-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.onbuzz-section__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

.onbuzz-section__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.onbuzz-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.onbuzz-logo {
  max-width: 220px;
  height: auto;
  opacity: 1;
}

.onbuzz-section__body {
  font-family: var(--font-mono);
  font-size: var(--size-body);
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: 0.03em;
  max-width: 560px;
}

.onbuzz-section__positioning {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── 15. S7 — Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  padding: clamp(40px, 8vh, 64px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__mascot {
  max-width: 80px;
  height: auto;
  opacity: 1;
  margin-bottom: -4px;
}

.footer__logo {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
}

.footer__tagline {
  font-size: var(--size-badge);
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: var(--size-badge);
  letter-spacing: 0.14em;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.18s;
}

.footer__link:hover { color: var(--green); }

.footer__sep {
  color: var(--dim);
  font-size: var(--size-badge);
}

.footer__copy {
  font-size: var(--size-badge);
  color: var(--dim);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ── 16. Media Queries ────────────────────────────────────── */
@media (max-width: 768px) {
  .mockup-layout {
    flex-direction: column;
    align-items: center;
  }

  .phone-frame {
    width: 200px;
    height: 380px;
  }

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

  .hero__cta-group {
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .result-card__metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__eyebrow {
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero__terminal {
    display: none;
  }

  .result-card {
    font-size: 0.72rem;
  }

  .result-card__metric-value {
    font-size: 1.3rem;
  }

  .result-card__row .k {
    width: 76px;
  }

  .share-card-mockup {
    font-size: 0.72rem;
  }

  .share-row .k {
    width: 90px;
  }

  .phone-frame {
    width: 180px;
    height: 340px;
  }

  .onbuzz-logo {
    max-width: 140px;
  }

  .section {
    padding: 60px 16px;
    min-height: unset;
  }

  .hero {
    padding: 80px 16px 60px;
    min-height: 100dvh;
  }

  .result-card__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .game-card__img {
    height: 130px;
  }
}

/* ── 17. Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .scanlines,
  .vignette {
    display: none;
  }

  #matrix-rain {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
