/* ═══════════════════════════════════════════════════════
   AKHROT — DESIGN SYSTEM v5
   Refined palette · softer gradients · cohesive rhythm
   ═══════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&display=swap');

:root {
  /* Refined palette — warmer blacks, organic walnut, mist neutrals */
  --bg: #060503;
  --bg-warm: #0c0a07;
  --bg-deep: #030201;
  --ink: #ece4d6;
  --ink-soft: #d8cebd;
  --ink-dim: rgba(236, 228, 214, 0.42);
  --ink-mid: rgba(236, 228, 214, 0.66);
  --ink-faint: rgba(236, 228, 214, 0.16);

  --walnut: #9c8a76;
  --walnut-soft: #b8a48d;
  --walnut-dark: #574535;
  --walnut-glow: rgba(156, 138, 118, 0.16);
  --walnut-amber: #c8a368;

  --shell: #3a2e22;
  --neural: #6ea1d4;
  --neural-glow: rgba(110, 161, 212, 0.18);

  /* Glass — more refined, less plastic */
  --glass-bg: rgba(12, 10, 8, 0.55);
  --glass-bg-light: rgba(18, 15, 12, 0.4);
  --glass-border: rgba(255, 252, 244, 0.05);
  --glass-blur: 24px;

  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  /* Easing — natural, Framer-quality */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Mask vars */
  --mask-x: 50%; --mask-y: 50%; --mask-r: 0px;

  /* Spacing rhythm — fluid */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.75rem, 1vw, 1rem);
  --space-md: clamp(1.5rem, 2.4vw, 2rem);
  --space-lg: clamp(3rem, 5vw, 4rem);
  --space-xl: clamp(5rem, 8vw, 6rem);
  --space-2xl: clamp(7rem, 12vw, 9rem);

  /* Durations */
  --dur-fast: 0.28s;
  --dur-base: 0.45s;
  --dur-slow: 0.85s;
  --dur-reveal: 1.4s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.loading { overflow: hidden; height: 100vh; }
a, button, input, textarea { cursor: none; }
@media (pointer: coarse) {
  body, a, button, input, textarea { cursor: auto; }
}
::selection { background: rgba(156, 138, 118, 0.3); color: var(--ink); }

/* ── Cursor (minimal, professional, no blur) ───────────── */
#cursor-dot {
  position: fixed; top: 0; left: 0; width: 5px; height: 5px;
  background: var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.3s ease, transform 0.3s var(--ease);
  will-change: transform;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1px solid rgba(236, 228, 214, 0.45);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.3s ease, border-radius 0.3s var(--ease), background 0.3s ease;
  will-change: transform;
}
#cursor-dot.hidden, #cursor-ring.hidden { opacity: 0 !important; }
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* Cursor states */
body.cur-hover #cursor-ring {
  width: 52px; height: 52px;
  border-color: rgba(236, 228, 214, 0.85);
  background: rgba(236, 228, 214, 0.04);
}
body.cur-hover #cursor-dot { opacity: 0; }

body.cur-text #cursor-ring {
  width: 2px; height: 22px;
  border-radius: 2px;
  background: rgba(236, 228, 214, 0.85);
  border-color: transparent;
}
body.cur-text #cursor-dot { opacity: 0; }

body.cur-press #cursor-ring {
  width: 28px; height: 28px;
  border-color: rgba(236, 228, 214, 0.95);
}
body.cur-press #cursor-dot { transform: translate(-50%, -50%) scale(1.4); }

/* ── Loader ────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 100000;
  background: radial-gradient(ellipse at center, var(--bg-warm), var(--bg-deep) 75%);
  display: flex; justify-content: center; align-items: center;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  width: 160px; height: auto; opacity: 0;
  filter: brightness(1.2);
  animation: lfade 1.6s var(--ease-out) forwards 0.15s;
}
.loader-tagline {
  font-size: 0.78rem; color: var(--ink-dim);
  letter-spacing: 0.12em; margin-top: 1.4rem;
  opacity: 0; animation: lfade 1.4s var(--ease-out) forwards 0.6s;
}
.loader-progress-bar {
  margin: 2rem auto 0; width: 140px; height: 1px;
  background: rgba(236, 228, 214, 0.08); border-radius: 1px;
  overflow: hidden;
}
.loader-progress-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--walnut), transparent);
  width: 40%;
  animation: lprogress 1.4s var(--ease-in-out) infinite;
}
@keyframes lfade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lprogress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ── Navbar ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 92%; max-width: 1400px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; z-index: 1000; opacity: 0;
  transition: opacity 0.8s var(--ease) 0.3s, transform 0.5s var(--ease);
}
body:not(.loading) #navbar { opacity: 1; }
.nav-pill {
  height: 54px; display: flex; align-items: center;
  border-radius: 54px;
}
.nav-main {
  flex: 1;
  background: linear-gradient(135deg, rgba(22, 19, 14, 0.55), rgba(16, 13, 10, 0.45));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 0 30px; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 22px; width: auto; opacity: 0.82; transition: opacity 0.35s var(--ease); }
.nav-logo:hover .logo-img { opacity: 1; }
.nav-links { display: flex; list-style: none; gap: 34px; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.015em;
  transition: color 0.35s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--walnut);
  transition: width 0.45s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  min-width: 132px;
  background: linear-gradient(135deg, rgba(156, 138, 118, 0.55), rgba(127, 108, 86, 0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  justify-content: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  border: 1px solid rgba(236, 228, 214, 0.08);
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(184, 164, 141, 0.75), rgba(156, 138, 118, 0.7));
}
.cta-link {
  color: #fff; text-decoration: none;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.14em;
}

/* ── Scroll Container ──────────────────────────────────── */
#scroll-container { height: 600vh; position: relative; }
#sticky-scene {
  position: sticky; top: 0; width: 100%;
  height: 100vh; overflow: hidden;
  background: var(--bg);
}

/* ── Video & Atmosphere ────────────────────────────────── */
#main-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1; opacity: 1;
}
#vignette {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 25%, rgba(6, 5, 4, 0.85) 90%),
    linear-gradient(180deg, rgba(6, 5, 4, 0.25) 0%, transparent 35%, transparent 65%, rgba(6, 5, 4, 0.4) 100%);
}
#grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  z-index: 3; pointer-events: none;
  opacity: 0.025;
  animation: grain 0.18s steps(1) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -1%); }
  75% { transform: translate(-1%, 2%); }
}

/* ── Reveal Layer ──────────────────────────────────────── */
#reveal-layer {
  position: absolute; inset: 0; z-index: 4;
  opacity: 0; pointer-events: none;
  -webkit-mask-image: radial-gradient(circle var(--mask-r) at var(--mask-x) var(--mask-y), black 40%, transparent 80%);
  mask-image: radial-gradient(circle var(--mask-r) at var(--mask-x) var(--mask-y), black 40%, transparent 80%);
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><rect width="80" height="80" fill="none" stroke="%234a8abf" stroke-width="0.3" stroke-dasharray="3,5"/><circle cx="40" cy="40" r="1" fill="%234a8abf" opacity="0.4"/></svg>'),
    rgba(5, 8, 12, 0.62);
  background-size: 40px 40px, 100% 100%;
  transition: opacity 1s var(--ease);
}
#reveal-layer::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle var(--mask-r) at var(--mask-x) var(--mask-y), rgba(91, 155, 213, 0.14) 0%, transparent 70%);
}
body.reveal-active #reveal-layer { opacity: 1; pointer-events: auto; }

/* ── Phase Containers ──────────────────────────────────── */
#cards-container { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.phase-container {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}
.phase-container.active { opacity: 1; visibility: visible; }
.phase-container.exit-forward,
.phase-container.exit-backward { opacity: 0; visibility: hidden; }

.phase-title {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  max-width: 50%;
}
.phase-title.align-left { left: 6%; }
.phase-title.align-right { right: 6%; align-items: flex-end; text-align: right; }
.eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--walnut);
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.title-main {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.018em;
}

.story-card {
  position: absolute; top: 50%;
  transform: translateY(-50%) scale(0.96);
  width: min(440px, 38vw);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  opacity: 0;
  filter: blur(3px);
  box-shadow:
    0 24px 60px -10px rgba(0, 0, 0, 0.6),
    0 8px 24px -8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  will-change: transform, opacity, filter;
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out),
    filter 1.1s var(--ease-out),
    box-shadow 0.5s var(--ease);
}
.story-card::before {
  content: ''; position: absolute;
  top: 0; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}
.story-card.align-left { left: 6%; }
.story-card.align-right { right: 6%; }
.story-card:hover {
  box-shadow:
    0 24px 60px -10px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(156, 138, 118, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.card-body { display: flex; flex-direction: column; gap: 0.95rem; }
.card-body p {
  font-size: 0.94rem;
  line-height: 1.72;
  font-weight: 400;
  color: var(--ink-mid);
}
.card-body p.dramatic {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
p.cue {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-top: 0.9rem;
  opacity: 0.7;
}

/* Phase states */
.phase-container.active .story-card {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  filter: blur(0);
  pointer-events: auto;
}
.phase-container.exit-forward .story-card {
  opacity: 0;
  transform: translateY(-50%) scale(1.18);
  filter: blur(6px);
  transition-duration: 0.45s;
}
.phase-container.exit-backward .story-card {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  filter: blur(4px);
  transition-duration: 0.45s;
}
.phase-container .seq {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.phase-container.active .eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.phase-container.active .title-main { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.phase-container.active .card-body p:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.phase-container.active .card-body p:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.phase-container.active .card-body p:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
.phase-container.active .card-body p:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.64s; }
.phase-container.active .card-body p:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.76s; }
.phase-container.active .card-body p:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.88s; }
.phase-container.active .card-body p:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }
.phase-container:not(.active) .seq {
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: opacity 0.3s, transform 0.3s !important;
  transition-delay: 0s !important;
}

/* ── Scroll Hint ───────────────────────────────────────── */
#scroll-hint {
  position: absolute; bottom: 2.4rem; left: 50%;
  transform: translateX(-50%); z-index: 7;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  opacity: 1; transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
#scroll-hint.hidden { opacity: 0; }
#scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--walnut));
  animation: sdrop 2.8s ease-in-out infinite;
}
@keyframes sdrop {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
#scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}

/* ═══ FOOTER ═══ */
#main-footer, .akhrot-footer {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  z-index: 10;
  border-top: 1px solid rgba(255, 252, 244, 0.04);
}
.footer-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 252, 244, 0.04);
  padding: 1.4rem 0;
}
.footer-ticker-track { display: flex; white-space: nowrap; }
.footer-ticker-inner {
  display: flex; gap: 3rem;
  align-items: center; padding-right: 3rem;
  flex-shrink: 0;
}
.ticker-item {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--walnut);
  flex-shrink: 0; opacity: 0.55;
}
.footer-logo-section {
  display: flex; justify-content: center; align-items: center;
  padding: 5.5rem 4vw; position: relative;
}
.footer-full-logo {
  width: 100%; max-width: 100%; height: auto;
  opacity: 0.07;
  filter: brightness(2.5) sepia(0.18) saturate(0.4);
  transition: opacity 0.8s var(--ease), filter 0.8s var(--ease);
  pointer-events: auto;
}
.footer-full-logo:hover { opacity: 0.16; filter: brightness(2.8) sepia(0.28) saturate(0.6); }
.footer-tagline-row { text-align: center; padding: 0 2rem 3rem; }
.footer-tagline-row p {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0.5;
}
.footer-bottom-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 5vw;
  border-top: 1px solid rgba(255, 252, 244, 0.04);
  font-size: 0.7rem;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.footer-status-pill { display: flex; align-items: center; gap: 0.5rem; }
.footer-status-dot, .status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
  animation: pulse-live 2.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (max-width: 768px) {
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-logo-section { padding: 4rem 6vw; }
}

/* ═══ SHARED PATTERNS ═══ */
#grid-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -10; pointer-events: none;
  opacity: 0.38; background: transparent; display: block;
}
.watermark-bg {
  position: absolute;
  font-family: 'Clash Display', sans-serif;
  font-size: 25vw; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(156, 138, 118, 0.04);
  pointer-events: none; user-select: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; z-index: 0;
}
.stagger-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.stagger-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ TITLE ANIMATION (FLIP LINK) ═══ */
.flip-link { position: relative; display: inline-flex; overflow: hidden; color: inherit; text-decoration: none; line-height: 0.9; vertical-align: bottom; }
.flip-link .char-wrapper { display: flex; }
.flip-link .char { display: inline-block; transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1); will-change: transform; }
.flip-link .char-front { transform: translateY(0); }
.flip-link .char-back { position: absolute; inset: 0; display: flex; }
.flip-link .char-back .char { transform: translateY(110%); }
.flip-link:hover .char-front .char { transform: translateY(-110%); }
.flip-link:hover .char-back .char { transform: translateY(0); }

/* ═══ WHAT PAGE ═══ */
.hs-hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hs-body { font-size: 1.1rem; color: var(--ink-mid); line-height: 1.78; }
.hs-quote {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500; font-size: 1.45rem;
  color: var(--walnut); line-height: 1.55;
  border-left: 2px solid var(--walnut-dark);
  padding-left: 1.4rem; margin: 1.5rem 0;
}
.hs-list-word {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.3; margin: 0.5rem;
  display: inline-block;
}
.hs-list-word.accent { color: var(--walnut); }
.hs-section-number {
  position: absolute; top: 10%; right: 5%;
  font-family: 'Clash Display', sans-serif;
  font-size: 15vw; font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none; user-select: none; z-index: 0;
}
.hs-divider-line {
  position: absolute; top: 0;
  left: 6vw; right: 6vw; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 138, 118, 0.3), transparent);
  opacity: 0; transition: opacity 1s var(--ease);
}
.hscroll-section.active .hs-divider-line { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.24s; }
.stagger-3 { transition-delay: 0.38s; }
.stagger-4 { transition-delay: 0.52s; }
.hscroll-section.active .stagger-in { opacity: 1; transform: translateY(0); }
.hscroll-bar {
  position: fixed; bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--walnut-dark), var(--walnut), var(--walnut-soft));
  z-index: 100; transition: none; will-change: width;
  display: flex; align-items: center; justify-content: flex-end;
  width: 0%;
}
.hscroll-bar-label {
  position: absolute; right: 10px; top: -25px;
  font-size: 0.7rem; color: var(--walnut);
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; white-space: nowrap;
}

/* ═══ COMMUNITY BENTO ═══ */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.4rem; margin-top: 4rem; }
.bento-card {
  background: linear-gradient(160deg, rgba(16, 13, 10, 0.5), rgba(10, 8, 6, 0.35));
  backdrop-filter: blur(40px) saturate(1.15);
  -webkit-backdrop-filter: blur(40px) saturate(1.15);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.4rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.8rem;
  transition: transform 0.55s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.45s var(--ease-out);
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(156, 138, 118, 0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.45);
  border-color: rgba(156, 138, 118, 0.18);
}
.bento-card:hover::before { opacity: 1; }
.bento-hero {
  grid-column: span 12; min-height: 380px;
  align-items: center; text-align: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(156, 138, 118, 0.1), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(110, 161, 212, 0.06), transparent 50%),
    linear-gradient(160deg, rgba(16, 13, 10, 0.55), rgba(10, 8, 6, 0.4));
}
.bento-feat { grid-column: span 7; min-height: 320px; }
.bento-feat-small { grid-column: span 5; min-height: 320px; }
.bento-sm { grid-column: span 4; min-height: 280px; }
.bento-wide { grid-column: span 8; min-height: 300px; }
.bento-tall { grid-column: span 4; min-height: 300px; }
.bento-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--walnut);
  border: 1px solid rgba(156, 138, 118, 0.18);
  padding: 6px 12px; border-radius: 40px;
  width: fit-content;
}
.live-indicator {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse-live 2s infinite;
}
.bento-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.9rem;
  line-height: 1.12; letter-spacing: -0.012em;
}
.bento-hero .bento-title {
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  letter-spacing: -0.018em;
}
.bento-desc {
  font-size: 0.98rem; color: var(--ink-dim);
  line-height: 1.65;
}
.bento-cta-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px; border-radius: 50px;
  color: var(--ink); font-size: 0.84rem;
  font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.bento-cta-btn:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: #000;
  box-shadow: 0 8px 30px rgba(156, 138, 118, 0.25);
}

@media (max-width: 1024px) {
  .bento-feat, .bento-feat-small, .bento-sm, .bento-wide, .bento-tall { grid-column: span 6; }
}
@media (max-width: 768px) {
  .bento-feat, .bento-feat-small, .bento-sm, .bento-wide, .bento-tall, .bento-hero { grid-column: span 12; }
}

/* ═══ WAITLIST ═══ */
.waitlist-card {
  position: relative; margin: 10rem auto 4rem;
  max-width: 500px;
  background: rgba(12, 10, 8, 0.5);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem; text-align: center;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out);
  transform-style: preserve-3d;
}
.waitlist-content { transform: translateZ(30px); }
.input-group { position: relative; margin-bottom: 2rem; text-align: left; }
.input-group input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(156, 138, 118, 0.28);
  padding: 10px 0; color: var(--ink);
  font-size: 1.05rem; outline: none;
  transition: border-color 0.35s var(--ease);
}
.input-group label {
  position: absolute; top: 10px; left: 0;
  color: var(--ink-dim); font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.35s var(--ease);
}
.input-group input:focus { border-bottom-color: var(--walnut); }
.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: -20px; font-size: 0.78rem;
  color: var(--walnut);
  letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
}
.success-message {
  margin-top: 2rem; color: var(--walnut);
  animation: slideUp 0.5s var(--ease-out) forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ PAGE SHARED ═══ */
.page-wrapper {
  min-height: 100vh; padding-top: 140px;
  background: var(--bg); position: relative;
  overflow-x: hidden;
}
.page-container {
  width: 90%; max-width: 1100px;
  margin: 0 auto; padding-bottom: 8rem;
}
.page-eyebrow {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--walnut);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.page-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600; line-height: 1.06;
  color: var(--ink);
  margin-bottom: 3rem;
  letter-spacing: -0.022em;
}
.page-body p {
  font-size: 1.04rem; line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.7rem;
}
.page-body p.accent {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500; font-size: 1.18rem;
  color: var(--ink); line-height: 1.5;
}
.page-body .list-wrap { margin: 1.5rem 0 1.5rem 0.5rem; }
.page-body .list-wrap span {
  display: block; font-size: 1.04rem;
  color: var(--ink); font-weight: 500; line-height: 2;
}
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ GAME PAGES ═══ */

/* What — Scroll-driven */
.reveal-scroll { position: relative; }
.reveal-block { min-height: 80vh; display: flex; align-items: center; padding: 4rem 0; }
.reveal-block .block-text { max-width: 600px; }
.reveal-block .block-text h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.reveal-block .block-text p {
  font-size: 1rem; line-height: 1.8;
  color: var(--ink-mid); margin-bottom: 1.2rem;
}
.reveal-block .block-text p.highlight {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500; font-size: 1.14rem;
  color: var(--ink);
}
.reveal-block.right-align { justify-content: flex-end; }
.block-visual {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 40%; opacity: 0.13;
  pointer-events: none;
}
.block-visual.left { left: 0; right: auto; }

/* Why — Parallax */
.parallax-section {
  min-height: 100vh; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  text-align: center; perspective: 800px;
}
.parallax-layer { transition: transform 0.7s var(--ease-out); }
.massive-text {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700; line-height: 1.04;
  color: var(--ink); margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.sub-text {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--ink-mid); line-height: 1.6;
  max-width: 600px;
}

/* Waitlist 2.5D form */
.form-scene { perspective: 1200px; min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.form-card-3d {
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out);
  max-width: 520px; width: 100%; padding: 3.4rem;
}
.form-card-3d:hover { transform: rotateY(0) rotateX(0); }
.form-card-3d::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(156, 138, 118, 0.13), transparent 50%, rgba(110, 161, 212, 0.08));
  z-index: -1; filter: blur(1px);
}
.waitlist-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.35rem 1.15rem;
  color: var(--ink); font-family: inherit;
  font-size: 0.98rem; outline: none;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder { color: var(--ink-dim); }
.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: var(--walnut);
  transform: translateZ(8px);
}
.submit-btn {
  margin-top: 0.5rem;
  background: var(--walnut-dark); color: #fff;
  border: none; padding: 1.05rem 2.4rem;
  border-radius: 54px;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.4s var(--ease);
}
.submit-btn:hover {
  background: var(--walnut);
  box-shadow: 0 12px 36px var(--walnut-glow);
  transform: scale(1.02);
}

/* Community cards */
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2rem; margin-top: 4rem; }
.community-card { padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; transition: transform 0.45s var(--ease-out); }
.community-card:hover { transform: translateY(-8px); }
.community-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.55rem; color: var(--ink);
  font-weight: 600; margin-bottom: 1rem;
  letter-spacing: -0.012em;
}
.community-card p { font-size: 0.94rem; color: var(--ink-dim); line-height: 1.7; }
.outline-btn {
  display: inline-block; background: transparent;
  border: 1px solid var(--walnut-dark);
  color: var(--ink); padding: 0.88rem 2rem;
  border-radius: 54px; text-decoration: none;
  font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.4s var(--ease);
  text-align: center;
}
.outline-btn:hover { background: var(--walnut-dark); color: #fff; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.info-card { padding: 2.5rem; transition: transform 0.45s var(--ease-out), border-color 0.35s; }
.info-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.1); }
.info-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.3rem; color: var(--ink);
  font-weight: 500; margin-bottom: 1rem;
}
.info-card p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.62; }

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { width: 96%; top: 14px; gap: 10px; }
  .nav-pill { height: 48px; }
  .nav-links { display: none; }
  .nav-main { padding: 0 20px; }
  .nav-cta { min-width: 110px; }
  .phase-title {
    max-width: 90%; top: 18%;
    transform: none; text-align: center !important;
    left: 5% !important; right: 5% !important;
    align-items: center !important;
  }
  .title-main { font-size: clamp(2rem, 7vw, 3rem); }
  .story-card {
    left: 5% !important; right: 5% !important;
    top: auto !important; bottom: 14%;
    transform: translateY(0) scale(0.96);
    width: 90vw; padding: 2rem 1.5rem;
  }
  .phase-container.active .story-card { transform: translateY(0) scale(1); }
  .phase-container.exit-forward .story-card { transform: translateY(0) scale(1.1); }
  .phase-container.exit-backward .story-card { transform: translateY(0) scale(0.92); }
  .community-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .form-card-3d { transform: none !important; }
  /* Decorative oversized watermark is positioned against the viewport, so
     body's overflow-x:hidden can't clip it — constrain it directly to avoid
     a phantom horizontal scroll that stretched the centered page headings. */
  .watermark-bg { max-width: 100vw; overflow: hidden; }
  .page-wrapper { padding-top: 112px; }
  .page-container { width: 88%; }
  .page-heading { font-size: clamp(1.95rem, 7.5vw, 2.7rem); margin-bottom: 2rem; }
}

/* ── Phones: homepage cinematic phases ──────────────────────
   On the homepage each scroll phase stacks a fixed title and a fixed glass
   story-card over the video. The ≤900px rules pin the title near the top and
   the card to the bottom — fine on tall tablets, but on a short phone the
   longer phases (6–7 paragraphs) grow upward, collide with the title, and
   clip off the top edge. Below 600px we shrink the typography, cap the card
   height, and let it scroll internally so every phase is fully readable. */
@media (max-width: 600px) {
  .phase-title {
    top: 86px; bottom: auto;
    max-width: 90%; left: 5%; right: 5%;
    transform: none; text-align: center; align-items: center;
  }
  .eyebrow { font-size: 0.58rem; margin-bottom: 0.7rem; }
  .title-main { font-size: clamp(1.55rem, 6vw, 2.1rem); line-height: 1.06; }
  .story-card {
    top: auto; bottom: 3.5%;
    left: 4%; right: 4%; width: auto;
    max-height: 58vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.25rem 1.2rem;
    transform: translateY(0) scale(0.97);
  }
  .phase-container.active .story-card { transform: translateY(0) scale(1); }
  .phase-container.exit-forward .story-card { transform: translateY(0) scale(1.08); }
  .phase-container.exit-backward .story-card { transform: translateY(0) scale(0.94); }
  .card-body { gap: 0.5rem; }
  .card-body p { font-size: 0.8rem; line-height: 1.5; }
  .card-body p.dramatic { font-size: 0.92rem; line-height: 1.35; }
  p.cue { margin-top: 0.6rem; }
}

/* ── Mobile nav (hamburger + slide-down panel) ─────────────
   Built at runtime from the existing nav links by script.js — no markup
   changes. The desktop .nav-links are hidden ≤900px; this restores
   navigation on phones/tablets. */
.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 900px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 42px; height: 42px; margin-left: auto;
    background: transparent; border: 0; padding: 9px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.6px;
    background: var(--ink); border-radius: 2px;
    transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .mobile-menu {
    display: block;
    position: fixed; top: 72px; left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: min(92%, 440px); z-index: 999;
    background: linear-gradient(160deg, rgba(20, 17, 13, 0.92), rgba(12, 10, 8, 0.9));
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    padding: 0.5rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.38s var(--ease), transform 0.5s var(--ease), visibility 0.38s;
  }
  .mobile-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
  .mobile-menu li { border-bottom: 1px solid rgba(255, 252, 244, 0.05); }
  .mobile-menu li:last-child { border-bottom: 0; }
  .mobile-menu a {
    display: block; padding: 1.05rem 1.15rem;
    color: var(--ink-soft); text-decoration: none;
    font-size: 1rem; letter-spacing: 0.01em; border-radius: 12px;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--ink); background: rgba(255, 255, 255, 0.035); }
  .mobile-menu a.active { color: var(--walnut-soft); }
  .mobile-menu a.mm-cta {
    margin-top: 0.45rem; text-align: center; color: #fff; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.82rem;
    background: linear-gradient(135deg, rgba(156, 138, 118, 0.55), rgba(127, 108, 86, 0.5));
  }
  .mobile-menu a.mm-cta:hover { background: linear-gradient(135deg, rgba(184, 164, 141, 0.75), rgba(156, 138, 118, 0.7)); }
  body.menu-open { overflow: hidden; }
}


/* ═══ GLITCH HOVER (toned down) ═══ */
[data-pixel] { position: relative; transition: filter 0.35s var(--ease); }
[data-pixel]:hover { filter: url(#pixelate); animation: glitch-flicker 0.15s steps(2) 2; }
[data-pixel="soft"]:hover { filter: url(#pixelate-soft); }
@keyframes glitch-flicker {
  0% { opacity: 1; } 50% { opacity: 0.92; } 100% { opacity: 1; }
}
.glitch-text { position: relative; }

/* CRT Scanline (very subtle) */
.crt-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 99990;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.01) 3px, rgba(0, 0, 0, 0.01) 6px);
  mix-blend-mode: multiply;
  opacity: 0.25;
}

/* ═══ HSCROLL ═══ */
.hscroll-outer { position: relative; background: var(--bg); }
.hscroll-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hscroll-track { display: flex; height: 100vh; will-change: transform; gap: 0; }
.hscroll-section { flex-shrink: 0; height: 100vh; display: flex; align-items: center; padding: 0 6vw; position: relative; }
.hscroll-section.w-narrow { width: 80vw; }
.hscroll-section.w-mid { width: 100vw; }
.hscroll-section.w-wide { width: 110vw; }
.hscroll-section.w-hero { width: 120vw; justify-content: center; }
.hscroll-content { max-width: 650px; position: relative; z-index: 2; }
.hscroll-content.centered { text-align: center; margin: 0 auto; }
.hscroll-divider {
  width: 1px; height: 30vh;
  background: linear-gradient(to bottom, transparent, var(--walnut-dark), transparent);
  flex-shrink: 0; margin: 0 2vw; align-self: center;
}
#pixel-canvas { position: fixed; inset: 0; z-index: 9; pointer-events: none; }
#particle-field, #pixel-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.has-particles .page-wrapper { position: relative; z-index: 1; }
.has-particles #main-footer { position: relative; z-index: 1; }

/* ═══ COMMUNITY MOSAIC ═══ */
.community-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.4rem; margin-top: 4rem; }
.mosaic-card {
  border-radius: var(--radius-lg); padding: 2.4rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.mosaic-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(156, 138, 118, 0.05), transparent 60%);
  pointer-events: none; opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.mosaic-card:hover::before { opacity: 1; }
.mosaic-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.42); }
.mosaic-card.span-7 { grid-column: span 7; }
.mosaic-card.span-5 { grid-column: span 5; }
.mosaic-card.span-4 { grid-column: span 4; }
.mosaic-card.span-8 { grid-column: span 8; }
.mosaic-card.span-6 { grid-column: span 6; }
.mosaic-card.span-12 { grid-column: span 12; }
.mosaic-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem; color: var(--ink);
  font-weight: 600; margin-bottom: 1rem;
  letter-spacing: -0.012em;
}
.mosaic-card p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.7; }
.mosaic-card .card-tag {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--walnut);
  margin-bottom: 1rem; display: block;
}
@media (max-width: 900px) {
  .mosaic-card.span-7, .mosaic-card.span-5, .mosaic-card.span-4,
  .mosaic-card.span-8, .mosaic-card.span-6 { grid-column: span 12; }
}

/* ═══ LOADING BAR ═══ */
.loader-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--walnut-dark), var(--walnut));
  width: 0%; transition: width 3s linear;
  border-radius: 0 2px 2px 0;
}

/* ═══ ABOUT — Pac-Man Bento Playground ═══ */
/* see about-world.css for full implementation */

/* Accessibility — 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;
  }
}
