:root {
  --bg: #070719;
  --bg-soft: #0d0d27;
  --panel: rgba(16, 17, 47, 0.82);
  --panel-strong: #111235;
  --line: rgba(116, 244, 255, 0.22);
  --text: #f8f5ff;
  --muted: #a9abc8;
  --pink: #ff4fc4;
  --pink-hot: #ff2ca8;
  --cyan: #42f2f5;
  --gold: #ffd336;
  --green: #69ff9e;
  --violet: #6c4cff;
  --shadow-pink: 0 0 8px rgba(255, 79, 196, .72), 0 0 24px rgba(255, 44, 168, .28);
  --shadow-cyan: 0 0 8px rgba(66, 242, 245, .72), 0 0 24px rgba(66, 242, 245, .24);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.018) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.018) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.018) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.018) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  opacity: .42;
  z-index: -3;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 144px); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--gold);
  color: #080817;
  font-weight: 900;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .12;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0,0,0,.35) 4px);
  mix-blend-mode: multiply;
}

.ambient {
  position: fixed;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .12;
  z-index: -2;
}
.ambient-one { background: var(--pink); top: -20vw; left: -12vw; }
.ambient-two { background: var(--cyan); right: -18vw; top: 36vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 25, .82);
  border-bottom: 1px solid rgba(66, 242, 245, .16);
  backdrop-filter: blur(18px);
}

.nav { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; width: 178px; text-decoration: none; filter: drop-shadow(0 0 10px rgba(255, 79, 196, .22)); }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  position: relative;
  color: #d9dbef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transition: width .2s ease;
}
.nav-links > a:hover::after, .nav-links > a:focus-visible::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--pink);
  color: white !important;
  background: rgba(255, 79, 196, .08);
  box-shadow: inset 0 0 18px rgba(255, 79, 196, .08);
}
.nav-cta:hover { background: var(--pink); color: #120919 !important; box-shadow: var(--shadow-pink); }
.menu-button { display: none; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
  padding-block: clamp(70px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.72); } }

h1, h2, h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", ui-sans-serif, sans-serif;
  font-weight: 900;
  letter-spacing: .025em;
  line-height: .96;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.8rem, 7.2vw, 7.4rem); text-wrap: balance; }
h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
h3 { font-size: clamp(2rem, 3.3vw, 3.6rem); }
.neon-pink { color: var(--pink); text-shadow: var(--shadow-pink); }
.neon-cyan { color: var(--cyan); text-shadow: var(--shadow-cyan); }

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #cfd0e5;
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 210px;
  padding: 15px 18px;
  border: 2px solid;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { border-color: var(--pink); background: var(--pink); color: #160a17; box-shadow: 5px 5px 0 #8f1767, var(--shadow-pink); }
.button-primary:hover { box-shadow: 2px 2px 0 #8f1767, 0 0 28px rgba(255,79,196,.48); }
.button-ghost { border-color: rgba(66,242,245,.5); color: var(--cyan); background: rgba(66,242,245,.04); }
.button-ghost:hover { border-color: var(--cyan); box-shadow: var(--shadow-cyan); background: rgba(66,242,245,.1); }
.button-cyan { border-color: var(--cyan); color: #06191c; background: var(--cyan); box-shadow: 5px 5px 0 #16828b, var(--shadow-cyan); }

.hero-stats { display: flex; gap: 30px; margin: 46px 0 0; padding: 0; list-style: none; }
.hero-stats li { min-width: 108px; padding-left: 13px; border-left: 3px solid rgba(66,242,245,.28); }
.hero-stats strong { display: block; color: var(--gold); font-family: ui-monospace, monospace; font-size: 1.35rem; line-height: 1; }
.hero-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; }

.hero-art {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,79,196,.18), rgba(66,242,245,.1));
  border: 1px solid rgba(66,242,245,.28);
  box-shadow: 14px 14px 0 rgba(255,79,196,.08), 0 0 70px rgba(66,242,245,.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.hero-art::before, .hero-art::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--pink);
  z-index: 3;
}
.hero-art::before { left: -5px; top: -5px; border-left: 3px solid; border-top: 3px solid; }
.hero-art::after { right: -5px; bottom: -5px; border-right: 3px solid; border-bottom: 3px solid; }
.cabinet-label, .cabinet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: var(--cyan);
  font-family: ui-monospace, monospace;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.logo-frame { position: relative; overflow: hidden; background: #111128; border: 1px solid rgba(255,255,255,.08); }
.logo-frame img { width: 100%; aspect-ratio: 2.014; object-fit: cover; }
.logo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.09) 45%, transparent 61%); transform: translateX(-120%); animation: screenSweep 6s ease-in-out infinite; }
@keyframes screenSweep { 0%, 55% { transform: translateX(-120%); } 80%,100% { transform: translateX(120%); } }
.screen-glow { position: absolute; inset: 8%; z-index: -1; box-shadow: 0 0 90px rgba(255,79,196,.48); }
.cabinet-footer { color: #b9bad1; }
.status-light { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.ticker { overflow: hidden; border-block: 1px solid rgba(66,242,245,.22); background: rgba(13,13,39,.84); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 13px 0; color: #eeeaff; font-family: ui-monospace, monospace; font-size: .72rem; font-weight: 900; letter-spacing: .14em; animation: ticker 24s linear infinite; }
.ticker-track i { color: var(--pink); font-style: normal; text-shadow: var(--shadow-pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(44px, 7vw, 76px); }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading > p { max-width: 480px; margin: 0 0 7px; color: var(--muted); font-size: 1.03rem; }

.game-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.game-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,21,57,.94), rgba(9,9,28,.96));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}
.game-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.game-card:hover::after { border-color: rgba(66,242,245,.46); box-shadow: inset 0 0 45px rgba(66,242,245,.05); }
.game-card-hang:hover::after { border-color: rgba(255,79,196,.48); box-shadow: inset 0 0 45px rgba(255,79,196,.06); }
.game-card-topline { display: flex; justify-content: space-between; padding: 14px 18px; color: #9295b5; border-bottom: 1px solid rgba(255,255,255,.08); font-family: ui-monospace, monospace; font-size: .66rem; font-weight: 900; letter-spacing: .13em; }
.live-tag { color: var(--green); }
.live-tag i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.game-visual { position: relative; height: 300px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); }
.squares-visual { background: radial-gradient(circle at 55% 45%, rgba(66,242,245,.16), transparent 48%), linear-gradient(135deg, #111339, #08081d); }
.squares-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(66,242,245,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(66,242,245,.04) 1px, transparent 1px); background-size: 26px 26px; }
.mini-board { position: absolute; width: 236px; height: 236px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-4deg); display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(3,1fr); gap: 7px; padding: 7px; border: 5px solid var(--cyan); box-shadow: var(--shadow-cyan), inset 0 0 30px rgba(66,242,245,.12); }
.box { position: relative; border: 4px solid rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.box::after { content: ""; position: absolute; width: 8px; height: 8px; right: -6px; bottom: -6px; border-radius: 50%; background: white; box-shadow: 0 0 8px white; }
.b1,.b5,.b8 { background: rgba(255,79,196,.35); border-color: var(--pink); box-shadow: inset 0 0 20px rgba(255,79,196,.35); }
.b3,.b4,.b9 { background: rgba(66,242,245,.3); border-color: var(--cyan); box-shadow: inset 0 0 20px rgba(66,242,245,.3); }
.score-chip, .timer-chip, .attempts { position: absolute; padding: 7px 10px; background: #09091c; border: 1px solid; font-family: ui-monospace, monospace; font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.score-chip-left { left: 18px; bottom: 18px; color: var(--pink); border-color: var(--pink); }
.score-chip-right { right: 18px; top: 18px; color: var(--cyan); border-color: var(--cyan); }

.hang-visual { background: radial-gradient(circle at 74% 20%, rgba(255,79,196,.18), transparent 38%), linear-gradient(145deg, #160d35, #08081b); }
.hang-visual::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.025) 40px); }
.rope { position: absolute; right: 19%; top: -4px; width: 6px; height: 190px; background: var(--gold); box-shadow: 0 0 14px rgba(255,211,54,.7); }
.rope::after { content: ""; position: absolute; left: 50%; bottom: -32px; width: 72px; height: 82px; border: 6px solid var(--pink); border-top: 0; border-radius: 0 0 50% 50%; transform: translateX(-50%); box-shadow: var(--shadow-pink); }
.word-line { position: absolute; left: 28px; bottom: 62px; display: flex; gap: 8px; }
.word-line span { display: grid; place-items: center; width: 46px; height: 58px; color: var(--cyan); background: rgba(66,242,245,.08); border: 2px solid rgba(66,242,245,.48); font-family: ui-monospace, monospace; font-size: 1.55rem; font-weight: 950; text-shadow: var(--shadow-cyan); }
.word-line span:last-child { color: var(--pink); border-color: var(--pink); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: .4; } }
.timer-chip { left: 28px; top: 30px; color: var(--gold); border-color: var(--gold); font-size: .82rem; }
.attempts { left: 28px; top: 83px; color: #c7c8dc; border-color: rgba(255,255,255,.18); }
.attempts b { color: var(--pink); }

.game-content { padding: 30px; }
.game-kicker { margin: 0 0 10px; color: var(--cyan); font-family: ui-monospace, monospace; font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.game-card-hang .game-kicker { color: var(--pink); }
.game-content h3 { font-size: clamp(2.6rem, 4vw, 4.4rem); }
.game-content > p:not(.game-kicker) { margin: 20px 0 0; color: #b8bad2; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-pills li { padding: 6px 9px; color: #cbcee5; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); font-family: ui-monospace, monospace; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.game-link { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; color: var(--cyan); border-top: 1px solid rgba(66,242,245,.18); font-family: ui-monospace, monospace; font-size: .8rem; font-weight: 950; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.game-card-hang .game-link { color: var(--pink); border-color: rgba(255,79,196,.2); }
.game-link b { font-size: 1.3rem; transition: transform .18s ease; }
.game-link:hover b { transform: translate(4px,-4px); }

.company-section { position: relative; overflow: hidden; background: linear-gradient(115deg, rgba(255,79,196,.065), transparent 42%), rgba(9,9,29,.76); border-block: 1px solid rgba(255,255,255,.07); }
.company-section::before { content: "OBEA"; position: absolute; right: -2vw; bottom: -8vw; color: rgba(255,255,255,.018); font-family: Impact, sans-serif; font-size: 34vw; line-height: .8; pointer-events: none; }
.company-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.company-copy .eyebrow { margin-bottom: 18px; }
.company-lead { margin: 32px 0 0; color: #e1e1ef; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.55; }
.company-copy > p:last-child { margin-top: 22px; color: var(--muted); }
.capability-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: rgba(66,242,245,.12); border: 1px solid rgba(66,242,245,.12); }
.capability-grid article { min-height: 225px; padding: 28px; background: rgba(12,13,38,.96); transition: background .2s ease; }
.capability-grid article:hover { background: rgba(22,22,59,.98); }
.capability-number { color: var(--pink); font-family: ui-monospace, monospace; font-size: .72rem; font-weight: 900; }
.capability-grid h3 { margin-top: 35px; font-family: ui-monospace, monospace; font-size: 1.05rem; line-height: 1.2; letter-spacing: .05em; }
.capability-grid p { margin: 16px 0 0; color: var(--muted); font-size: .88rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.process-grid li { min-height: 270px; padding: 28px 24px; background: rgba(11,12,34,.96); }
.process-grid li > span { display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--bg); background: var(--gold); font-family: ui-monospace, monospace; font-weight: 950; box-shadow: 4px 4px 0 #8e7110; }
.process-grid h3 { margin-top: 45px; font-family: ui-monospace, monospace; font-size: 1rem; line-height: 1.2; letter-spacing: .04em; }
.process-grid p { margin: 15px 0 0; color: var(--muted); font-size: .9rem; }

.cta-section { padding-bottom: clamp(80px, 10vw, 140px); }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(34px, 6vw, 70px); background: linear-gradient(115deg, rgba(255,79,196,.2), rgba(66,242,245,.08)), #101031; border: 1px solid rgba(255,79,196,.42); box-shadow: 12px 12px 0 rgba(66,242,245,.08); }
.cta-panel::before { content: ""; position: absolute; width: 230px; height: 230px; right: 25%; top: -150px; border: 40px solid rgba(255,211,54,.1); border-radius: 50%; }
.cta-panel h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.cta-panel p:not(.eyebrow) { margin: 18px 0 0; color: #c4c6dd; }
.cta-actions { position: relative; flex-direction: column; min-width: 260px; margin-top: 0; }

.site-footer { border-top: 1px solid rgba(66,242,245,.16); background: #070716; }
.footer-grid { display: grid; grid-template-columns: 210px 1fr auto; gap: 40px; align-items: center; padding-block: 44px; }
.footer-brand { width: 190px; }
.footer-grid > p { max-width: 440px; margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #d5d6e7; font-family: ui-monospace, monospace; font-size: .72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 17px; color: #747694; border-top: 1px solid rgba(255,255,255,.06); font-family: ui-monospace, monospace; font-size: .63rem; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(760px,100%); transform: none; }
  .company-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; flex-direction: row; }
  .footer-grid { grid-template-columns: 180px 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .nav { height: 74px; }
  .brand { width: 145px; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--cyan);
    border: 1px solid rgba(66,242,245,.35);
    background: transparent;
    font-family: ui-monospace, monospace;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .menu-button__icon { display: grid; gap: 3px; width: 16px; }
  .menu-button__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .nav-links {
    position: absolute;
    left: 0;
    top: 74px;
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: rgba(7,7,25,.98);
    border-bottom: 1px solid rgba(66,242,245,.2);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-cta { margin-top: 10px; border-bottom: 1px solid var(--pink) !important; }
  .hero { padding-block: 58px 75px; }
  h1 { font-size: clamp(3.45rem, 16vw, 5.4rem); }
  .hero-actions .button { width: 100%; }
  .hero-stats { gap: 15px; }
  .hero-stats li { min-width: 0; flex: 1; }
  .game-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .capability-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 220px; }
  .cta-actions { flex-direction: column; min-width: 0; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .hero-stats { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-stats span { font-size: .61rem; }
  .game-visual { height: 260px; }
  .mini-board { width: 200px; height: 200px; }
  .word-line { left: 18px; gap: 5px; }
  .word-line span { width: 38px; height: 50px; }
  .game-content { padding: 24px 20px; }
  .cta-panel { padding: 30px 22px; }
}

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