/* =========================================================
   LAND STATION — Company Profile
   Theme: Tokyo Neon Cyberpunk Midnight
   ========================================================= */

/* ---------- Particles Canvas ---------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #050616, rgba(255,45,149,0.06) 30%, rgba(0,240,255,0.06) 70%, #050616);
  border-top: 1px solid rgba(255,45,149,0.18);
  border-bottom: 1px solid rgba(0,240,255,0.18);
  padding-block: 13px;
  z-index: 10;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0;  background: linear-gradient(to right, #050616, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, #050616, transparent); }

.marquee-strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-strip--reverse .marquee-strip__track {
  animation-direction: reverse;
  animation-duration: 22s;
}

.marquee-strip--sm {
  border-top: 1px solid rgba(138,92,255,0.15);
  border-bottom: 1px solid rgba(138,92,255,0.15);
  background: linear-gradient(90deg, #050616, rgba(138,92,255,0.05) 50%, #050616);
  padding-block: 9px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip__item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-inline: 20px;
}

.marquee-strip--sm .marquee-strip__item {
  font-size: 0.65rem;
  color: var(--ink-mute);
}

.marquee-strip__sep {
  color: var(--neon-pink);
  font-size: 0.65rem;
  opacity: 0.7;
  padding-inline: 4px;
}

.marquee-strip--sm .marquee-strip__sep {
  color: var(--neon-violet);
}

/* Alternate item colors */
.marquee-strip__item:nth-child(4n+1) { color: var(--neon-cyan); }
.marquee-strip__item:nth-child(4n+3) { color: var(--ink-soft); }

/* ---------- Hero Meta HUD Bar ---------- */
.hero__meta-hud {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(138,143,199,0.6);
  z-index: 5;
  white-space: nowrap;
  border: 1px solid rgba(0,240,255,0.12);
  padding: 7px 18px;
  border-radius: 99px;
  background: rgba(5,6,22,0.5);
  backdrop-filter: blur(8px);
}

.meta-hud__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.meta-hud__dot--live {
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.meta-hud__item { display: flex; align-items: center; gap: 6px; }
.meta-hud__divider { opacity: 0.3; }
.meta-hud__slots { color: var(--neon-cyan); }

/* ---------- Extra Floaters Layer 2 ---------- */
.hero__floaters--2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floater2 {
  position: absolute;
  animation: floater2Drift var(--d2, 10s) ease-in-out infinite;
  animation-delay: var(--d2-delay, 0s);
  opacity: 0.7;
}

@keyframes floater2Drift {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  25%       { transform: translateY(-15px) scale(1.05) rotate(8deg); }
  75%       { transform: translateY(8px) scale(0.95) rotate(-5deg); }
}

/* Stars */
.floater2--star {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.floater2--s1 { top: 10%; left: 30%; background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); --d2: 5s; }
.floater2--s2 { top: 40%; right: 15%; background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); --d2: 7s; --d2-delay: 1s; }
.floater2--s3 { top: 70%; left: 45%; background: var(--neon-violet); box-shadow: 0 0 10px var(--neon-violet); --d2: 6s; --d2-delay: 2.5s; }

/* Diamonds */
.floater2--diamond {
  width: 14px; height: 14px;
  border: 1.5px solid var(--neon-cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(0,240,255,0.3);
}
.floater2--d1 { top: 20%; right: 35%; --d2: 8s; --d2-delay: 0.5s; }
.floater2--d2 { bottom: 20%; left: 30%; border-color: var(--neon-pink); box-shadow: 0 0 8px rgba(255,45,149,0.3); --d2: 11s; --d2-delay: 1.5s; }

/* Rings */
.floater2--ring {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(138,92,255,0.5);
  box-shadow: 0 0 8px rgba(138,92,255,0.2);
}
.floater2--r1 { top: 55%; right: 28%; --d2: 9s; }
.floater2--r2 { top: 15%; left: 55%; width: 18px; height: 18px; border-color: rgba(0,240,255,0.4); --d2: 12s; --d2-delay: 3s; }

/* Pixel squares */
.floater2--pixel {
  width: 8px; height: 8px;
  background: var(--neon-violet);
  box-shadow: 0 0 8px rgba(138,92,255,0.5);
}
.floater2--p1 { top: 30%; left: 20%; --d2: 7s; --d2-delay: 2s; }
.floater2--p2 { bottom: 30%; right: 20%; background: var(--neon-pink); box-shadow: 0 0 8px rgba(255,45,149,0.5); --d2: 9s; --d2-delay: 0.3s; }

/* ---------- Section neon decorations ---------- */
.section--alt,
.section {
  position: relative;
}

/* Ambient orb decorations for sections */
.section--alt::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--alt::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,149,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Make sure content is above pseudo decorations */
.section--alt .container,
.section .container {
  position: relative;
  z-index: 1;
}

/* Neon divider line */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-violet), var(--neon-cyan), var(--neon-pink), transparent);
  opacity: 0.25;
  margin: 0;
}

/* ---------- Stats section — richer background ---------- */
.section--dark {
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(138,92,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: statsBgPulse 8s ease-in-out infinite;
}

@keyframes statsBgPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

/* Stat hover effect */
.stat:hover .stat__number {
  filter: drop-shadow(0 0 16px rgba(255,45,149,0.7));
}

.stat:hover .stat__hud::before,
.stat:hover .stat__hud::after {
  box-shadow: 0 0 8px rgba(0,240,255,0.5);
}

/* ---------- Menu section extra decoration ---------- */
#menu {
  position: relative;
  overflow: hidden;
}

#menu::before {
  content: '';
  position: absolute;
  top: 0; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,149,0.06) 0%, transparent 60%);
  pointer-events: none;
}

#menu::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Contact section decoration ---------- */
#contact {
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,92,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Highlight cards — add left neon bar ---------- */
.highlight {
  position: relative;
}

.highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--neon-pink);
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: 0 0 8px var(--neon-pink);
}

.highlight:nth-child(2)::before { background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }
.highlight:nth-child(3)::before { background: var(--neon-violet); box-shadow: 0 0 8px var(--neon-violet); }

.highlight:hover::before { opacity: 1; }

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background-color: var(--bg-void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scanline overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 3px
  );
  pointer-events: none;
  z-index: 9997;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Skip link — accessible focus only */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--neon-pink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: var(--glow-pink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Dark backgrounds */
  --bg-void: #050616;
  --bg-dark: #0b0d24;
  --bg-alt: #0f1230;

  /* Text */
  --ink-soft: #e8eaff;
  --ink-mute: #8a8fc7;

  /* Neon accents */
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-violet: #8a5cff;

  /* Glow shadows */
  --glow-pink: 0 0 20px rgba(255, 45, 149, 0.5), 0 0 40px rgba(255, 45, 149, 0.25);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.25);
  --glow-violet: 0 0 20px rgba(138, 92, 255, 0.5);

  /* Compat vars */
  --color-bg: var(--bg-void);
  --color-bg-alt: var(--bg-alt);
  --color-bg-dark: #020210;
  --color-text: var(--ink-soft);
  --color-text-muted: var(--ink-mute);
  --color-text-invert: var(--ink-soft);
  --color-border: rgba(0, 240, 255, 0.12);
  --color-accent: var(--neon-pink);
  --color-accent-dark: #d4006e;
  --color-overlay: rgba(5, 6, 22, 0.7);

  /* Fonts */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Orbitron", "Share Tech Mono", monospace;
  --font-jp: "Zen Kaku Gothic New", "Yu Gothic", "Hiragino Kaku Gothic Pro", sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-y: clamp(64px, 10vw, 120px);
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;

  /* Effects */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. Utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.section {
  padding-block: var(--section-y);
  background-color: var(--bg-void);
}

.section--alt {
  background: linear-gradient(180deg, #0a0c22 0%, #0f1230 100%);
}

.section--dark {
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 45, 149, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
    #020210;
  color: var(--ink-soft);
}

.section-head {
  text-align: center;
  margin-bottom: var(--gap-lg);
  max-width: 720px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}

.eyebrow-jp {
  font-family: var(--font-jp);
  font-size: 0.85em;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--neon-violet);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink-soft);
  text-shadow: 0 0 40px rgba(138, 92, 255, 0.25);
}

.section-subtitle {
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-inline: auto;
}

.section-subtitle a {
  color: var(--neon-cyan);
}

.section-subtitle a:hover {
  color: var(--neon-pink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-violet));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 149, 0.35);
  border-color: transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
  background: linear-gradient(135deg, #ff4da8, #9f7aff);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: rgba(0, 240, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
}

.btn--dark:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--ink-soft);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--outline:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 16px rgba(255, 45, 149, 0.25);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 9998;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet), var(--neon-cyan));
  box-shadow: 0 0 8px rgba(255, 45, 149, 0.5);
  transition: width 0.1s linear;
  width: 0%;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #050616 0%, #0b0d24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader__logo img {
  height: 80px;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
  margin-bottom: 32px;
}

.loader__bar-wrap {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}

.loader__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet), var(--neon-cyan));
  border-radius: 99px;
  animation: loaderProgress 1.8s ease-out forwards;
  width: 0;
}

@keyframes loaderProgress {
  from { width: 0; }
  to   { width: 100%; }
}

.loader__text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.loader__jp {
  color: var(--neon-cyan);
  opacity: 0.7;
}

/* ---------- 4. Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 16px;
  background: rgba(5, 6, 22, 0);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.is-scrolled {
  background: rgba(5, 6, 22, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  padding-block: 10px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color var(--transition);
}

.navbar__brand img {
  width: auto;
  height: 80px;
  object-fit: contain;
  margin-block: -16px;
  display: block;
  transition: filter var(--transition);
}

.navbar.is-scrolled .navbar__brand img {
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(232, 234, 255, 0.75);
  position: relative;
  transition: color var(--transition);
}

.navbar__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  transition: width var(--transition);
  box-shadow: 0 0 8px rgba(255, 45, 149, 0.5);
}

.navbar__menu a:hover,
.navbar__menu a.is-active {
  color: var(--neon-cyan);
}

.navbar__menu a:hover::after,
.navbar__menu a.is-active::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.navbar__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: var(--transition);
}

.navbar__toggle:hover {
  background: rgba(0, 240, 255, 0.15);
}

.navbar__toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 45, 149, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(138, 92, 255, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #0d0a2e 0%, #050616 60%, #020210 100%);
  overflow: hidden;
}

/* Background elements wrapper */
.hero__bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Synthwave sun */
.hero__sun {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  width: 320px;
  height: 160px;
  border-radius: 320px 320px 0 0;
  background: linear-gradient(0deg, #ff6b35 0%, #ff2d95 35%, #8a5cff 65%, transparent 100%);
  opacity: 0.28;
  -webkit-mask: repeating-linear-gradient(
    to bottom,
    black 0px, black 8px,
    transparent 8px, transparent 14px
  );
  mask: repeating-linear-gradient(
    to bottom,
    black 0px, black 8px,
    transparent 8px, transparent 14px
  );
}

/* Perspective grid floor */
.hero__grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(72deg);
  transform-origin: bottom center;
  opacity: 0.25;
  animation: gridScroll 8s linear infinite;
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
}

@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--pink {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.32) 0%, transparent 70%);
  animation: orbDrift 12s ease-in-out infinite;
}

.hero__orb--cyan {
  width: 400px;
  height: 400px;
  top: 30%;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.22) 0%, transparent 70%);
  animation: orbDrift 15s ease-in-out infinite reverse;
}

.hero__orb--violet {
  width: 350px;
  height: 350px;
  bottom: 15%;
  right: 25%;
  background: radial-gradient(circle, rgba(138, 92, 255, 0.28) 0%, transparent 70%);
  animation: orbDrift 10s ease-in-out infinite 2s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* Beams */
.hero__beam {
  position: absolute;
  width: 2px;
  height: 60%;
  pointer-events: none;
  opacity: 0.15;
}

.hero__beam--1 {
  left: 20%;
  top: 0;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  transform: rotate(-15deg);
  animation: beamPulse 6s ease-in-out infinite;
}

.hero__beam--2 {
  left: 35%;
  top: 0;
  background: linear-gradient(to bottom, var(--neon-cyan), transparent);
  transform: rotate(-5deg);
  animation: beamPulse 8s ease-in-out infinite 1s;
}

.hero__beam--3 {
  right: 30%;
  top: 0;
  background: linear-gradient(to bottom, var(--neon-violet), transparent);
  transform: rotate(8deg);
  animation: beamPulse 7s ease-in-out infinite 2s;
}

.hero__beam--4 {
  right: 15%;
  top: 0;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  transform: rotate(18deg);
  animation: beamPulse 9s ease-in-out infinite 3s;
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.3; }
}

/* Glitch bars */
.hero__glitchbar {
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero__glitchbar[data-glitch="1"] {
  top: 25%;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 149, 0.5), transparent);
  animation: glitchBar 7s ease-in-out infinite;
}

.hero__glitchbar[data-glitch="2"] {
  top: 55%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
  animation: glitchBar 9s ease-in-out infinite 2s;
}

.hero__glitchbar[data-glitch="3"] {
  top: 80%;
  background: linear-gradient(90deg, transparent, rgba(138, 92, 255, 0.45), transparent);
  animation: glitchBar 11s ease-in-out infinite 4s;
}

@keyframes glitchBar {
  0%, 100% { transform: scaleX(1) translateX(0); opacity: 0.25; }
  45%, 55% { transform: scaleX(0.4) translateX(20%); opacity: 0.8; }
  50%       { transform: scaleX(1.2) translateX(-5%); opacity: 1; }
}

/* HUD corners */
.hero__hud-corners {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  z-index: 2;
}

.hud-corner {
  position: absolute;
  width: 28px;
  height: 28px;
}

.hud-corner--tl {
  top: 0; left: 0;
  border-top: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
  box-shadow: -2px -2px 8px rgba(0, 240, 255, 0.3);
}

.hud-corner--tr {
  top: 0; right: 0;
  border-top: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
  box-shadow: 2px -2px 8px rgba(0, 240, 255, 0.3);
}

.hud-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
  box-shadow: -2px 2px 8px rgba(0, 240, 255, 0.3);
}

.hud-corner--br {
  bottom: 0; right: 0;
  border-bottom: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
  box-shadow: 2px 2px 8px rgba(0, 240, 255, 0.3);
}

/* Sideline text */
.hero__sideline {
  position: absolute;
  top: 50%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(0, 240, 255, 0.28);
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.hero__sideline--left {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.hero__sideline--right {
  right: 20px;
  transform: translateY(-50%);
}

/* ---- 3D Arcade Machine ---- */
.hero__stage {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  perspective: 1000px;
  pointer-events: none;
  z-index: 3;
}

.arcade-machine {
  width: 280px;
  height: 440px;
  transform-style: preserve-3d;
  transform: rotateY(calc(-18deg + var(--ry, 0deg))) rotateX(calc(2deg + var(--rx, 0deg)));
  transition: transform 0.1s ease;
}

.arcade-machine__inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  animation: arcadeFloat 6s ease-in-out infinite;
}

@keyframes arcadeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* Faces */
.face {
  position: absolute;
  backface-visibility: hidden;
}

.face--front {
  width: 280px;
  height: 440px;
  top: 0; left: 0;
  background: linear-gradient(170deg, #1a0a2e, #0d0521);
  border: 1px solid rgba(138, 92, 255, 0.4);
  border-radius: 8px 8px 4px 4px;
  transform: translateZ(20px);
  box-shadow:
    0 0 30px rgba(138, 92, 255, 0.3),
    0 0 60px rgba(255, 45, 149, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  gap: 10px;
  z-index: 2;
}

.face--back {
  width: 280px;
  height: 440px;
  top: 0; left: 0;
  background: #0a0515;
  transform: translateZ(-20px) rotateY(180deg);
}

.face--left {
  width: 40px;
  height: 440px;
  top: 0; left: 0;
  background: linear-gradient(90deg, #0e061d, #1a0a2e);
  transform: rotateY(-90deg) translateZ(20px) translateX(-20px);
}

.face--right {
  width: 40px;
  height: 440px;
  top: 0; left: 240px;
  background: linear-gradient(90deg, #1a0a2e, #0e061d);
  transform: rotateY(90deg) translateZ(20px) translateX(20px);
}

.face--top {
  width: 280px;
  height: 40px;
  top: 0; left: 0;
  background: linear-gradient(180deg, #2a0f4a, #1a0a2e);
  border-radius: 8px 8px 0 0;
  transform: rotateX(90deg) translateZ(20px) translateY(-20px);
}

.face--bottom {
  width: 280px;
  height: 40px;
  top: 400px; left: 0;
  background: #0a0515;
  transform: rotateX(-90deg) translateZ(0px) translateY(20px);
}

/* Marquee header */
.face__marquee {
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 45, 149, 0.3);
}

/* Arcade screen */
.arcade-screen {
  width: 220px;
  height: 200px;
  background: #000814;
  border: 2px solid rgba(0, 240, 255, 0.5);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.35),
    inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.screen__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0, 0, 0, 0.15) 3px, rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 10;
}

.screen__demo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.screen__insert-coin {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  animation: neonFlicker 1.5s ease-in-out infinite;
}

/* Pixel demo */
.pixel-demo {
  position: relative;
  width: 160px;
  height: 90px;
}

.pixel-demo__player {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pixel-demo__enemy {
  position: absolute;
  width: 10px;
  height: 8px;
  background: var(--neon-pink);
  box-shadow: 0 0 6px var(--neon-pink);
  animation: enemyMove 3s ease-in-out infinite;
}

.pixel-demo__enemy--1 { top: 8px; left: 15%; }
.pixel-demo__enemy--2 { top: 8px; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
.pixel-demo__enemy--3 { top: 8px; right: 15%; animation-delay: 1s; }

@keyframes enemyMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%       { transform: translateX(8px) translateY(2px); }
  75%       { transform: translateX(-8px) translateY(2px); }
}

.pixel-demo__bullet {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
  animation: bulletFly 1.5s linear infinite;
}

@keyframes bulletFly {
  from { bottom: 16px; opacity: 1; }
  to   { bottom: 90px; opacity: 0; }
}

/* Arcade controls */
.arcade-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  border: 1px solid rgba(138, 92, 255, 0.2);
}

.arcade-joystick {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.joystick-ball {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.4), #2a1a4a);
  border: 1px solid rgba(138, 92, 255, 0.5);
  box-shadow: 0 0 8px rgba(138, 92, 255, 0.4);
}

.arcade-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 80px;
}

.arcade-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: btnPulse 2.5s ease-in-out infinite;
}

.arcade-btn--pink   { background: var(--neon-pink);   box-shadow: 0 0 8px rgba(255, 45, 149, 0.6); }
.arcade-btn--cyan   { background: var(--neon-cyan);   box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);  animation-delay: 0.3s; }
.arcade-btn--violet { background: var(--neon-violet); box-shadow: 0 0 8px rgba(138, 92, 255, 0.6); animation-delay: 0.6s; }

@keyframes btnPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%       { transform: scale(1.15); filter: brightness(1.4); }
}

/* ---- Floaters ---- */
.hero__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.floater {
  position: absolute;
  animation: floaterDrift var(--drift-duration, 8s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}

@keyframes floaterDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(10px) rotate(-3deg); }
}

/* Billiard ball */
.floater--ball {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  top: 18%;
  right: 24%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), #001a33 60%, #000d1a);
  border: 2px solid rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.floater--ball::after { content: "8"; }

/* Controller */
.floater--controller {
  width: 90px;
  height: 55px;
  top: 62%;
  left: 4%;
  background: linear-gradient(180deg, #1a0a2e, #0d0521);
  border: 1px solid rgba(138, 92, 255, 0.5);
  border-radius: 40% 40% 50% 50% / 30% 30% 70% 70%;
  box-shadow: 0 0 15px rgba(138, 92, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  color: var(--neon-violet);
}

.floater--controller::after { content: "CTRL"; }

/* D-pad */
.floater--dpad {
  width: 55px;
  height: 55px;
  top: 22%;
  left: 7%;
  background: rgba(138, 92, 255, 0.15);
  border: 1px solid rgba(138, 92, 255, 0.4);
  clip-path: polygon(33% 0%, 67% 0%, 67% 33%, 100% 33%, 100% 67%, 67% 67%, 67% 100%, 33% 100%, 33% 67%, 0% 67%, 0% 33%, 33% 33%);
  box-shadow: 0 0 15px rgba(138, 92, 255, 0.35);
}

/* Coin */
.floater--coin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  bottom: 30%;
  right: 4%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.2), rgba(255, 45, 149, 0.4));
  border: 2px solid var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 45, 149, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  animation: coinFlip 8s ease-in-out infinite;
}

.floater--coin::after { content: "¥"; }

@keyframes coinFlip {
  0%, 100% { transform: rotateY(0deg) translateY(0); }
  25%       { transform: rotateY(90deg) translateY(-10px); }
  50%       { transform: rotateY(180deg) translateY(0); }
  75%       { transform: rotateY(270deg) translateY(10px); }
}

/* RC car */
.floater--rc {
  width: 75px;
  height: 38px;
  bottom: 42%;
  left: 3%;
  background: linear-gradient(180deg, #1a0535, #0d0521);
  border: 1px solid rgba(255, 45, 149, 0.4);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--neon-pink);
}

.floater--rc::after { content: "RC"; }

/* Hero inner */
.hero__inner {
  position: relative;
  z-index: 5;
  padding-block: 120px 80px;
  max-width: 820px;
}

.hero__logo {
  width: auto;
  height: clamp(100px, 14vw, 160px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.35)) drop-shadow(0 0 40px rgba(138, 92, 255, 0.2));
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__eyebrow .eyebrow-jp {
  font-family: var(--font-jp);
  font-size: 0.82em;
  letter-spacing: 0.05em;
  opacity: 0.65;
  color: var(--neon-violet);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonFlicker 5s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.75; }
}

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(232, 234, 255, 0.72);
  max-width: 56ch;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 234, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  font-family: var(--font-mono);
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-cyan) 0%, transparent 100%);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.4); }
}

/* ---------- 6. About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__copy p {
  color: var(--ink-mute);
  margin-bottom: 16px;
}

.about__copy p:last-child {
  margin-bottom: 0;
}

.about__signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--neon-pink);
  opacity: 0.85;
}

.about__highlights {
  display: grid;
  gap: 16px;
}

.highlight {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: var(--radius-md);
  transition: var(--transition);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.highlight:hover {
  border-color: rgba(255, 45, 149, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 45, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.highlight__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255, 45, 149, 0.18), rgba(255, 45, 149, 0.04));
  border: 1px solid rgba(255, 45, 149, 0.3);
  color: var(--neon-pink);
  display: grid;
  place-items: center;
  transition: var(--transition);
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.15);
}

.highlight:nth-child(2) .highlight__icon {
  background: linear-gradient(150deg, rgba(0, 240, 255, 0.18), rgba(0, 240, 255, 0.04));
  border-color: rgba(0, 240, 255, 0.32);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.18);
}

.highlight:nth-child(3) .highlight__icon {
  background: linear-gradient(150deg, rgba(138, 92, 255, 0.18), rgba(138, 92, 255, 0.04));
  border-color: rgba(138, 92, 255, 0.32);
  color: var(--neon-violet);
  box-shadow: 0 0 12px rgba(138, 92, 255, 0.18);
}

.highlight:hover .highlight__icon {
  transform: rotate(6deg) scale(1.05);
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.4);
}

.highlight__icon svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 4px currentColor);
}

.highlight h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.highlight p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- 7. Menu ---------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background:
    linear-gradient(155deg, rgba(255, 45, 149, 0.05), rgba(0, 240, 255, 0.03) 50%, rgba(5, 6, 22, 0.85) 100%),
    rgba(11, 13, 36, 0.55);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.35);
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 240, 255, 0.45), transparent 35%, transparent 70%, rgba(255, 45, 149, 0.4));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.menu-card:hover {
  border-color: rgba(255, 45, 149, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 240, 255, 0.2),
    0 30px 60px -10px rgba(255, 45, 149, 0.3),
    0 0 30px rgba(255, 45, 149, 0.15);
}

.menu-card:hover::before { opacity: 1; }

/* Neon glow follow cursor */
.menu-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 149, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.menu-card:hover .menu-card__glow {
  opacity: 1;
}

/* Corner brackets */
.menu-card__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0.4;
}

.menu-card:hover .menu-card__corner {
  opacity: 1;
}

.menu-card__corner--tl { top: 8px;    left: 8px;  border-top: 1.5px solid var(--neon-cyan); border-left: 1.5px solid var(--neon-cyan); }
.menu-card__corner--tr { top: 8px;    right: 8px; border-top: 1.5px solid var(--neon-cyan); border-right: 1.5px solid var(--neon-cyan); }
.menu-card__corner--bl { bottom: 8px; left: 8px;  border-bottom: 1.5px solid var(--neon-cyan); border-left: 1.5px solid var(--neon-cyan); }
.menu-card__corner--br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--neon-cyan); border-right: 1.5px solid var(--neon-cyan); }

.menu-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 45, 149, 0.18), rgba(255, 45, 149, 0.04));
  border: 1px solid rgba(255, 45, 149, 0.3);
  color: var(--neon-pink);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(255, 45, 149, 0.18), inset 0 0 12px rgba(255, 45, 149, 0.08);
}

.menu-card:nth-child(2) .menu-card__icon {
  background: linear-gradient(150deg, rgba(0, 240, 255, 0.18), rgba(0, 240, 255, 0.04));
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2), inset 0 0 12px rgba(0, 240, 255, 0.08);
}
.menu-card:nth-child(3) .menu-card__icon {
  background: linear-gradient(150deg, rgba(138, 92, 255, 0.18), rgba(138, 92, 255, 0.04));
  border-color: rgba(138, 92, 255, 0.35);
  color: var(--neon-violet);
  box-shadow: 0 0 16px rgba(138, 92, 255, 0.2), inset 0 0 12px rgba(138, 92, 255, 0.08);
}
.menu-card:nth-child(4) .menu-card__icon {
  background: linear-gradient(150deg, rgba(255, 45, 149, 0.18), rgba(255, 45, 149, 0.04));
  border-color: rgba(255, 45, 149, 0.3);
  color: var(--neon-pink);
}

.menu-card:hover .menu-card__icon {
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.45), inset 0 0 16px rgba(255, 45, 149, 0.12);
  transform: translateZ(10px) scale(1.05);
}

.menu-card:nth-child(2):hover .menu-card__icon {
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.45), inset 0 0 16px rgba(0, 240, 255, 0.12);
}
.menu-card:nth-child(3):hover .menu-card__icon {
  box-shadow: 0 0 24px rgba(138, 92, 255, 0.45), inset 0 0 16px rgba(138, 92, 255, 0.12);
}

.menu-card__icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px currentColor);
}

.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

.menu-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.menu-card__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-mute);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  padding-bottom: 8px;
}

.menu-card__item:last-child {
  border-bottom: none;
}

.menu-card__item span:last-child {
  color: var(--neon-cyan);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  white-space: nowrap;
}

.menu__footer {
  text-align: center;
  margin-top: 48px;
}

/* ---------- 8. Gallery ---------- */
.gallery__feed {
  min-height: 200px;
}

/* ---------- 9. Stats ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 24px 16px;
}

.stat__hud {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  margin-bottom: 8px;
}

.stat__hud::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 1px solid var(--neon-cyan);
  border-left: 1px solid var(--neon-cyan);
}

.stat__hud::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--neon-cyan);
  border-right: 1px solid var(--neon-cyan);
}

.stat__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.4));
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-mono);
}

/* ---------- 10. Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact__list {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact__list li:hover {
  background: rgba(0, 240, 255, 0.04);
}

.contact__list > li > svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  flex-shrink: 0;
  color: var(--neon-cyan);
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(0, 240, 255, 0.15), rgba(0, 240, 255, 0.03));
  border: 1px solid rgba(0, 240, 255, 0.28);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
  margin-top: 2px;
}

.contact__list > li:nth-child(2) > svg {
  color: var(--neon-violet);
  background: linear-gradient(150deg, rgba(138, 92, 255, 0.15), rgba(138, 92, 255, 0.03));
  border-color: rgba(138, 92, 255, 0.3);
  box-shadow: 0 0 10px rgba(138, 92, 255, 0.15);
}

.contact__list > li:nth-child(4) > svg {
  color: var(--neon-pink);
  background: linear-gradient(150deg, rgba(255, 45, 149, 0.15), rgba(255, 45, 149, 0.03));
  border-color: rgba(255, 45, 149, 0.3);
  box-shadow: 0 0 10px rgba(255, 45, 149, 0.15);
}

.contact__list strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact__list span {
  color: var(--ink-mute);
  font-size: 0.95rem;
}

.contact__list a:hover {
  color: var(--neon-pink);
}

.contact__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact__panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.contact__panel:hover {
  border-color: rgba(255, 45, 149, 0.3);
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  background: var(--bg-dark);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.92) hue-rotate(180deg) saturate(1.3) brightness(0.8);
}

.contact__form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-mono);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(138, 143, 199, 0.5);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.form-status--success {
  background: rgba(0, 240, 100, 0.08);
  color: #00f064;
  border: 1px solid rgba(0, 240, 100, 0.25);
}

.form-status--error {
  background: rgba(255, 45, 149, 0.08);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 149, 0.25);
}

.contact__form.is-sending button[type="submit"] {
  opacity: 0.7;
  cursor: wait;
}

.btn__spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- 11. Footer ---------- */
.footer {
  background: #020210;
  color: var(--ink-mute);
  padding-block: 64px 24px;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), var(--neon-violet), transparent);
  margin-bottom: 64px;
  opacity: 0.6;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.footer__brand img {
  width: auto;
  height: 56px;
  margin-block: -8px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.footer__tagline {
  font-size: 0.95rem;
  max-width: 38ch;
  margin-bottom: 20px;
  color: var(--ink-mute);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 20px;
}

.footer__links {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

.footer__links a:hover {
  color: var(--neon-pink);
}

.footer__bottom {
  border-top: 1px solid rgba(0, 240, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(138, 143, 199, 0.5);
}

.footer__bottom a {
  color: var(--neon-cyan);
}

.footer__bottom a:hover {
  color: var(--neon-pink);
}

/* ---------- FAB Scroll Top ---------- */
.fab-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-violet));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--glow-pink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

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

.fab-top:hover {
  box-shadow: var(--glow-pink), 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* ---------- 12. Responsive ---------- */
/* Desktop only: hero with arcade machine on the right */
@media (min-width: 1100px) {
  .hero__inner {
    margin-right: 320px;
  }
}

/* Tablet landscape & below: hide arcade machine + sidelines */
@media (max-width: 1099px) {
  .hero__stage {
    display: none;
  }
  .hero__sideline {
    display: none;
  }

  .hero__inner {
    padding-block: 100px 64px;
    max-width: 720px;
  }

  /* Reduce floaters layer-2 density on tablet */
  .floater2--p1,
  .floater2--p2,
  .floater2--r2 {
    display: none;
  }
}

/* Tablet portrait */
@media (max-width: 960px) {
  :root {
    --section-y: clamp(56px, 9vw, 96px);
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .menu__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero__meta-hud {
    bottom: 64px;
    font-size: 0.55rem;
    gap: 8px;
    padding: 6px 14px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .hero__meta-hud .meta-hud__divider {
    display: none;
  }

  .hero__meta-hud .meta-hud__item:nth-child(3),
  .hero__meta-hud .meta-hud__item:nth-child(5) {
    display: none;
  }
}

/* ===== Mobile (<= 768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-y: clamp(48px, 12vw, 80px);
    --gap-lg: 32px;
  }

  /* Container with safe gutter on phones */
  .container {
    padding-inline: 18px;
  }

  /* --- Navbar / mobile drawer --- */
  .navbar { padding-block: 10px; }
  .navbar.is-scrolled { padding-block: 8px; }

  .navbar__inner {
    gap: 12px;
  }

  .navbar__brand img {
    height: 52px;
    margin-block: -10px;
  }

  .navbar__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    background: #0b0d24;
    border-left: 1px solid rgba(0, 240, 255, 0.15);
    padding: 96px 28px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }

  .navbar__menu.is-open { transform: translateX(0); }

  .navbar__menu a {
    color: var(--ink-soft) !important;
    font-size: 1.02rem;
    padding-block: 10px;
    width: 100%;
  }

  .navbar__cta { display: none; }
  .navbar__toggle { display: inline-flex; }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding-block: 88px 64px;
  }

  .hero__inner {
    padding-block: 24px 16px;
    max-width: 100%;
  }

  .hero__logo {
    height: 86px;
    margin-bottom: 18px;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    gap: 8px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .hero__lead {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 38ch;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  /* Decorative elements: tone down so they don't overlap text */
  .hero__sun {
    width: 220px;
    height: 110px;
    bottom: 8%;
    opacity: 0.18;
  }

  .hero__orb--pink   { width: 260px; height: 260px; top: -60px; right: -60px; filter: blur(60px); }
  .hero__orb--cyan   { width: 220px; height: 220px; top: 35%;   left: -60px; filter: blur(60px); }
  .hero__orb--violet { width: 220px; height: 220px; bottom: 8%; right: 10%;  filter: blur(60px); }

  .hero__beam { height: 50%; opacity: 0.12; }

  .floater--rc,
  .floater--controller,
  .floater--dpad,
  .floater--coin {
    display: none;
  }

  .floater--ball {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    top: 12%;
    right: 8%;
  }

  .hero__hud-corners {
    inset: 10px;
  }

  .hud-corner { width: 18px; height: 18px; }

  .hero__meta-hud { display: none; }
  .hero__scroll { display: none; }

  /* --- Marquee --- */
  .marquee-strip { padding-block: 10px; }
  .marquee-strip__item {
    font-size: 0.7rem;
    padding-inline: 14px;
    letter-spacing: 0.16em;
  }
  .marquee-strip--sm .marquee-strip__item { font-size: 0.6rem; }

  /* --- Section head --- */
  .section-head { margin-bottom: 28px; }
  .section-title {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  /* --- About --- */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlight {
    padding: 18px;
    gap: 14px;
  }
  .highlight__icon { width: 42px; height: 42px; }
  .highlight__icon svg { width: 20px; height: 20px; }
  .highlight h4 { font-size: 1rem; }

  /* --- Menu --- */
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card {
    padding: 22px 18px;
  }

  .menu-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
  .menu-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .menu-card__icon svg { width: 24px; height: 24px; }
  .menu-card__item { font-size: 0.85rem; }
  .menu-card__item span:last-child { font-size: 0.8rem; }

  .menu__footer { margin-top: 32px; }
  .menu__footer .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* --- Stats --- */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .stat { padding: 16px 8px; }
  .stat__hud { padding: 10px 14px; }
  .stat__number { font-size: clamp(2.2rem, 11vw, 3rem); }
  .stat__label { font-size: 0.68rem; letter-spacing: 0.14em; }

  /* --- Contact --- */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__list { gap: 12px; margin-bottom: 24px; }
  .contact__list li {
    padding: 10px 8px;
    gap: 12px;
  }
  .contact__list span { font-size: 0.88rem; }

  .contact__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .contact__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .contact__panel { padding: 22px 18px; }
  .contact__map { aspect-ratio: 4 / 3; margin-bottom: 18px; }
  .field input,
  .field textarea {
    font-size: 0.9rem;
    padding: 11px 14px;
  }
  .contact__form .btn { width: 100%; justify-content: center; }

  /* --- Footer --- */
  .footer { padding-block: 48px 20px; }
  .footer::before { margin-bottom: 40px; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
    text-align: left;
  }

  .footer__brand img { height: 44px; }
  .footer__tagline { max-width: 100%; }
  .footer h5 { margin-bottom: 14px; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    font-size: 0.78rem;
  }

  /* --- FAB --- */
  .fab-top {
    width: 44px; height: 44px;
    bottom: 18px; right: 18px;
  }
}

/* ===== Small phones (<= 480px) ===== */
@media (max-width: 480px) {
  :root {
    --section-y: 52px;
  }

  .container {
    padding-inline: 16px;
  }

  /* Navbar */
  .navbar__brand img {
    height: 44px;
    margin-block: -8px;
  }
  .navbar__toggle { width: 38px; height: 38px; }
  .navbar__toggle svg { width: 20px; height: 20px; }

  /* Hero */
  .hero {
    padding-block: 80px 56px;
  }
  .hero__logo {
    height: 76px;
    margin-bottom: 16px;
  }
  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .hero__title {
    font-size: clamp(1.7rem, 9.5vw, 2.2rem);
    margin-bottom: 16px;
  }
  .hero__lead {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .hero__cta { max-width: 100%; }
  .hero__cta .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .floater--ball { display: none; }

  /* Section heads */
  .section-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  /* Stats: keep 2-col but tighter */
  .stats__grid { gap: 12px; }
  .stat { padding: 14px 6px; }
  .stat__number { font-size: clamp(2rem, 12vw, 2.6rem); }

  /* Menu cards */
  .menu-card { padding: 20px 16px; }

  /* Footer brand smaller */
  .footer__brand img { height: 38px; }

  /* Decorative orbs / beams: turn off heavy ones */
  .floater2--s1,
  .floater2--s2,
  .floater2--s3,
  .floater2--d1,
  .floater2--d2,
  .floater2--r1 {
    display: none;
  }

  .hero__beam--3,
  .hero__beam--4 { display: none; }

  /* Section ambient orbs: shrink so they don't bleed */
  .section--alt::before,
  .section--alt::after,
  #menu::before,
  #menu::after,
  #contact::before {
    width: 200px;
    height: 200px;
  }

  .section--dark::before {
    width: 320px;
    height: 200px;
  }
}

/* ---------- 13. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .arcade-machine__inner   { animation: none; }
  .floater                 { animation: none; }
  .floater--coin           { animation: none; }
  .hero__grid-floor        { animation: none; }
  .hero__orb               { animation: none; }
  .hero__glitchbar         { animation: none; }
  .pixel-demo__enemy       { animation: none; }
  .pixel-demo__bullet      { animation: none; }
  .arcade-btn              { animation: none; }
  .loader__bar             { animation: none; width: 100%; }
  .hero__title em          { animation: none; }
  .screen__insert-coin     { animation: none; }
}
