:root {
  --ink: #06100d;
  --ink-soft: #0a1713;
  --panel: #0d1d18;
  --panel-2: #122720;
  --olive: #8e9f57;
  --olive-bright: #bbcc70;
  --sand: #d8c79c;
  --cream: #f4efd9;
  --muted: #a7b5ad;
  --cyan: #1fe0d4;
  --cyan-soft: #9dfbf3;
  --pink: #ff5b8f;
  --gold: #f4c95d;
  --line: rgba(216, 199, 156, 0.17);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 12%, rgba(31, 224, 212, 0.055), transparent 25rem),
    radial-gradient(circle at 89% 34%, rgba(142, 159, 87, 0.09), transparent 30rem),
    var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cyan-soft);
  border-radius: 6px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 64px));
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 239, 217, .13);
  transform: translateX(-50%);
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand strong, .footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: .95;
  letter-spacing: .14em;
}

.brand small, .footer-brand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: rotate(-7deg);
}

.brand-mark span { border-radius: 2px; background: var(--cyan); }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(3) { background: var(--pink); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: #c7d0cb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cyan-soft); }

.nav-status {
  padding: 9px 14px;
  border: 1px solid rgba(244, 201, 93, .45);
  color: var(--gold);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 170px max(32px, calc((100vw - 1440px) / 2)) 100px;
  display: grid;
  grid-template-columns: minmax(430px, .86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 56px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, .98) 0%, rgba(6, 16, 13, .79) 47%, rgba(6, 16, 13, .22) 75%, rgba(6, 16, 13, .38) 100%),
    linear-gradient(180deg, #07120f 0%, #0d1c15 60%, #06100d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: -8%;
  width: 61%;
  height: 100%;
  background: repeating-linear-gradient(112deg, transparent 0 84px, rgba(216,199,156,.04) 84px 85px);
  transform: skewX(-5deg);
}

.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

.paint-orb {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .11;
}
.paint-orb--cyan { right: 23%; top: 13%; background: var(--cyan); }
.paint-orb--pink { right: -7%; bottom: 0; background: var(--pink); }

.hero-copy { max-width: 650px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: var(--olive-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 2px; background: var(--olive-bright); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: clamp(72px, 7.7vw, 126px);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h1 span { display: block; color: var(--cream); }
h1 strong { display: block; color: transparent; -webkit-text-stroke: 2px var(--cyan); text-shadow: 12px 12px 0 rgba(255, 91, 143, .13); }

.hero-deck {
  margin: 32px 0 11px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-intro { max-width: 600px; color: #b5c1ba; font-size: 17px; line-height: 1.75; }

.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.coming-soon-button {
  min-width: 220px;
  min-height: 66px;
  padding: 12px 23px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(31, 224, 212, .6);
  border-radius: 4px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(31,224,212,.16), rgba(31,224,212,.04));
  box-shadow: 0 0 40px rgba(31, 224, 212, .08), inset 0 0 24px rgba(31, 224, 212, .03);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.coming-soon-button small { display: block; margin-bottom: 1px; color: var(--cyan-soft); font-family: var(--font-body); font-size: 8px; letter-spacing: .22em; }
.button-pip { width: 11px; height: 11px; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 0 5px rgba(31,224,212,.1); }

.text-link { color: #d8e0dc; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-underline-offset: 6px; }
.text-link span { color: var(--pink); margin-left: 6px; }

.hero-facts {
  margin: 49px 0 0;
  padding: 30px 0 0;
  display: flex;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.hero-facts li { min-width: 145px; padding-right: 35px; display: flex; align-items: center; gap: 12px; }
.hero-facts li + li { padding-left: 35px; border-left: 1px solid var(--line); }
.hero-facts strong { color: var(--cream); font-family: var(--font-display); font-size: 35px; line-height: 1; }
.hero-facts span { max-width: 70px; color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.25; letter-spacing: .09em; text-transform: uppercase; }

.hero-visual { position: relative; min-width: 0; margin: 0; transform: rotate(1.2deg); }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px 20px 18px -26px;
  border: 1px solid rgba(142, 159, 87, .34);
  transform: rotate(-2.2deg);
}
.visual-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(216, 199, 156, .3);
  background: #5f7453;
  clip-path: polygon(3% 0, 100% 0, 100% 95%, 96% 100%, 0 100%, 0 5%);
  box-shadow: 0 35px 80px rgba(0,0,0,.45);
}
.visual-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.capture-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 11px;
  color: #dffcf8;
  background: rgba(3, 14, 21, .84);
  border-left: 3px solid var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.visual-topline {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 4%;
  right: 4%;
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  color: #dbe5df;
  background: rgba(3, 14, 21, .88);
  border-bottom: 2px solid var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}
.visual-sky { position: absolute; inset: 0 0 41%; background: linear-gradient(180deg, #84b5bd 0%, #a7c5b0 100%); }
.visual-horizon { position: absolute; left: 0; right: 0; bottom: 30%; height: 36%; background: linear-gradient(165deg, #819768 0 22%, #6f835b 22% 49%, #839369 49%); }
.visual-trench { position: absolute; z-index: 2; bottom: -12%; width: 66%; height: 58%; background: linear-gradient(180deg, #42553f, #23352f); border-top: 9px solid #9a865f; }
.visual-trench--left { left: -18%; transform: rotate(16deg); }
.visual-trench--right { right: -23%; transform: rotate(-15deg); }
.visual-ramp { position: absolute; z-index: 3; bottom: 15%; left: 30%; width: 43%; height: 12%; background: #715d3e; border: 6px solid #44382a; transform: perspective(200px) rotateX(52deg) rotate(-7deg); }
.visual-tower { position: absolute; z-index: 1; top: 21%; right: 18%; width: 94px; height: 130px; background: #555b4a; border: 6px solid #3a4137; box-shadow: 16px 0 0 #454d40; }
.tower-window { position: absolute; top: 19px; left: 18px; right: 18px; height: 31px; background: #172724; border: 4px solid #3a4137; }
.tower-leg { position: absolute; top: 100%; width: 12px; height: 70px; background: #3a4137; }
.tower-leg--one { left: 10px; } .tower-leg--two { right: 10px; }

.visual-bot { position: absolute; z-index: 4; width: 22px; height: 49px; border-radius: 6px 6px 3px 3px; background: #e8587f; box-shadow: 0 8px 12px rgba(0,0,0,.25); }
.visual-bot::before { content: ""; position: absolute; left: 3px; top: -15px; width: 17px; height: 17px; border-radius: 50%; background: #fb7698; box-shadow: inset 0 -5px 0 rgba(0,0,0,.18); }
.visual-bot::after { content: ""; position: absolute; top: 12px; left: 16px; width: 32px; height: 7px; border-radius: 3px; background: #142521; transform: rotate(-7deg); transform-origin: left; }
.visual-bot span { position: absolute; left: 3px; right: 3px; top: -11px; height: 6px; border-radius: 5px; background: #152623; }
.bot-one { left: 23%; bottom: 40%; transform: scale(.82); }
.bot-two { left: 51%; bottom: 37%; transform: scale(.67); }
.bot-three { right: 19%; bottom: 47%; transform: scale(.52); }

.visual-splat { position: absolute; z-index: 5; width: 22px; height: 17px; border-radius: 48% 52% 44% 56%; background: var(--cyan); box-shadow: 16px -8px 0 -6px var(--cyan), -12px 11px 0 -6px var(--cyan), 20px 10px 0 -7px var(--cyan); }
.splat-one { left: 44%; top: 54%; transform: rotate(14deg); }
.splat-two { right: 9%; top: 35%; background: var(--pink); box-shadow: 14px -8px 0 -6px var(--pink), -12px 9px 0 -7px var(--pink); transform: scale(.7); }

.visual-crosshair { position: absolute; z-index: 7; left: 50%; top: 47%; width: 34px; height: 34px; transform: translate(-50%,-50%); }
.visual-crosshair::before, .visual-crosshair::after { content: ""; position: absolute; background: white; box-shadow: 0 0 3px rgba(0,0,0,.5); }
.visual-crosshair::before { width: 3px; height: 10px; left: 16px; top: 0; box-shadow: 0 24px 0 white; }
.visual-crosshair::after { height: 3px; width: 10px; top: 16px; left: 0; box-shadow: 24px 0 0 white; }

.visual-marker { position: absolute; z-index: 6; right: 9%; bottom: -2%; width: 200px; height: 175px; filter: drop-shadow(-12px 14px 15px rgba(0,0,0,.36)); }
.marker-body { position: absolute; right: 35px; bottom: 18px; width: 104px; height: 70px; background: #071928; border: 6px solid #102f47; transform: skewY(7deg); }
.marker-hopper { position: absolute; right: 50px; bottom: 90px; width: 70px; height: 62px; border-radius: 48% 48% 38% 38%; background: var(--cyan); border: 7px solid #073c4a; box-shadow: inset 0 -12px 0 rgba(0,0,0,.13); }
.marker-hopper::before { content: ""; position: absolute; left: -4px; top: -12px; width: 64px; height: 13px; border-radius: 50%; background: #09283a; }
.marker-barrel { position: absolute; right: 126px; bottom: 83px; width: 86px; height: 16px; border-radius: 8px; background: #0a2437; border: 3px solid #15516b; transform: rotate(-7deg); transform-origin: right; }
.marker-grip { position: absolute; right: 44px; bottom: -5px; width: 25px; height: 67px; border-radius: 4px; background: #092337; transform: rotate(-18deg); }
.visual-ammo { position: absolute; z-index: 8; right: 3%; bottom: 3%; padding: 8px 11px; color: var(--cyan-soft); background: rgba(3,14,21,.85); border-right: 2px solid var(--cyan); font-size: 7px; font-weight: 700; letter-spacing: .1em; text-align: right; }
.visual-ammo strong { display: block; color: var(--gold); font-size: 15px; letter-spacing: .04em; }

.visual-caption { margin-top: 18px; display: flex; align-items: center; gap: 11px; color: #94a39b; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.caption-rule { flex: 1; height: 1px; background: var(--line); }

.trust-strip {
  min-height: 125px;
  padding: 28px max(32px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #0b1915;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div { min-height: 60px; padding: 0 7%; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: 1fr 1fr; align-items: end; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { font-family: var(--font-display); font-size: 17px; letter-spacing: .1em; }
.trust-strip small { align-self: start; color: var(--muted); font-size: 11px; }
.trust-icon { grid-row: 1 / 3; align-self: center; position: relative; width: 32px; height: 32px; }
.trust-icon--network { border: 2px solid var(--cyan); border-radius: 50%; box-shadow: inset 0 0 0 7px var(--ink-soft); }
.trust-icon--network::before, .trust-icon--network::after { content: ""; position: absolute; top: 13px; width: 14px; height: 2px; background: var(--cyan); }
.trust-icon--network::before { left: -13px; } .trust-icon--network::after { right: -13px; }
.trust-icon--shield { border: 2px solid var(--gold); border-radius: 13px 13px 19px 19px; transform: scaleX(.82); }
.trust-icon--shield::after { content: "✓"; position: absolute; left: 7px; top: 2px; color: var(--gold); font-weight: 900; transform: scaleX(1.2); }
.trust-icon--bot { border: 2px solid var(--pink); border-radius: 8px; }
.trust-icon--bot::before { content: ""; position: absolute; left: 6px; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: var(--pink); box-shadow: 12px 0 var(--pink); }
.trust-icon--bot::after { content: ""; position: absolute; left: 9px; top: -9px; width: 9px; height: 9px; border: 2px solid var(--pink); border-radius: 50%; }

.section-shell { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: 130px 0; }
.section-kicker { margin-bottom: 48px; display: flex; align-items: center; gap: 14px; color: var(--olive-bright); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.section-kicker::after { content: ""; width: 70px; height: 1px; background: rgba(187,204,112,.4); }
.section-kicker span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(187,204,112,.5); border-radius: 50%; font-size: 8px; }

.story-heading, .arena-heading { margin-bottom: 66px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 10%; align-items: end; }
h2 { color: var(--cream); font-family: var(--font-display); font-size: clamp(52px, 6vw, 84px); font-weight: 800; line-height: .9; letter-spacing: -.025em; text-transform: uppercase; }
h2 em { color: var(--cyan); font-style: normal; }
.story-heading p, .arena-heading p, .mode-copy > p { color: var(--muted); font-size: 17px; line-height: 1.8; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 410px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: linear-gradient(145deg, rgba(18,39,32,.92), rgba(10,23,19,.92)); border: 1px solid var(--line); }
.feature-card::after { content: ""; position: absolute; right: -40%; bottom: -70%; width: 90%; height: 110%; border-radius: 50%; background: rgba(142,159,87,.06); filter: blur(4px); }
.feature-card--wide { min-height: 370px; grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 6%; }
.feature-card h3 { margin-bottom: 13px; font-family: var(--font-display); font-size: 34px; line-height: 1; letter-spacing: -.01em; text-transform: uppercase; }
.feature-card p:not(.mini-label) { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.feature-number { position: absolute; top: 27px; right: 31px; color: rgba(244,239,217,.2); font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.mini-label { margin-bottom: 12px; color: var(--olive-bright); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.feature-icon { position: absolute; top: 65px; left: 50%; width: 105px; height: 105px; transform: translateX(-50%); }
.feature-icon--bot { border: 2px solid rgba(255,91,143,.55); border-radius: 27px; box-shadow: 0 0 50px rgba(255,91,143,.08); }
.feature-icon--bot::before { content: ""; position: absolute; left: 25px; top: 38px; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); box-shadow: 47px 0 var(--pink); }
.feature-icon--bot::after { content: ""; position: absolute; left: 34px; top: 65px; width: 34px; height: 2px; background: var(--pink); }
.feature-icon--bot i { position: absolute; left: 48px; top: -25px; width: 2px; height: 25px; background: var(--pink); }
.feature-icon--bot i::before { content: ""; position: absolute; left: -6px; top: -9px; width: 12px; height: 12px; border: 2px solid var(--pink); border-radius: 50%; }
.feature-icon--paint { border: 3px solid var(--cyan); border-radius: 48% 52% 44% 56%; transform: translateX(-50%) rotate(20deg); box-shadow: 22px -14px 0 -8px var(--cyan), -22px 16px 0 -10px var(--cyan), 34px 20px 0 -12px var(--cyan), 0 0 55px rgba(31,224,212,.1); }
.feature-icon--paint i { position: absolute; left: 46px; top: 46px; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }

.feature-art--squad { position: relative; height: 245px; }
.squad-node { position: absolute; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(31,224,212,.48); border-radius: 50%; color: var(--cyan-soft); background: #0a1815; font-family: var(--font-display); font-size: 12px; font-weight: 800; box-shadow: 0 0 0 8px rgba(31,224,212,.03); }
.squad-node--family { z-index: 2; left: 18%; top: 38%; width: 83px; height: 83px; border: 2px solid var(--cyan); color: var(--cream); box-shadow: 0 0 45px rgba(31,224,212,.12); }
.squad-node--one { right: 27%; top: 0; }
.squad-node--two { right: 10%; top: 39%; border-color: rgba(255,91,143,.55); color: #ffb0c8; }
.squad-node--three { right: 30%; bottom: 0; border-color: rgba(244,201,93,.5); color: var(--gold); }
.squad-line { position: absolute; left: 33%; top: 51%; width: 40%; height: 1px; background: linear-gradient(90deg, var(--cyan), rgba(31,224,212,.1)); transform-origin: left; }
.squad-line--one { transform: rotate(-26deg); }
.squad-line--two { transform: rotate(0); }
.squad-line--three { transform: rotate(26deg); }

.feature-card--characters { min-height: 400px; }
.character-lineup { position: relative; height: 290px; display: flex; justify-content: center; align-items: flex-end; gap: 18px; }
.character { position: relative; width: 60px; height: 175px; border-radius: 24px 24px 8px 8px; background: var(--cyan); box-shadow: inset 0 -48px 0 rgba(0,0,0,.28), 0 20px 30px rgba(0,0,0,.22); }
.character::before { content: ""; position: absolute; left: 8px; top: -43px; width: 45px; height: 48px; border-radius: 48% 48% 45% 45%; background: #d6aa79; box-shadow: inset 0 14px 0 #302c24; }
.character::after { content: ""; position: absolute; left: -15px; top: 29px; width: 90px; height: 18px; border-radius: 10px; background: inherit; }
.character span { position: absolute; z-index: 2; left: 24px; bottom: -45px; width: 13px; height: 57px; background: #253b36; box-shadow: 27px 0 #253b36; }
.character i { position: absolute; z-index: 3; top: 33px; right: -35px; width: 69px; height: 12px; border-radius: 6px; background: #152b34; transform: rotate(-10deg); }
.character i::after { content: ""; position: absolute; right: 4px; top: -14px; width: 20px; height: 20px; border-radius: 50%; background: inherit; }
.character--two { height: 195px; background: var(--pink); transform: translateY(-8px); }
.character--two::before { background: #e0b882; box-shadow: inset 0 13px 0 #6e4328; }
.character--three { height: 185px; background: var(--olive); }
.character--three::before { border-radius: 12px; background: #d6aa79; box-shadow: inset 0 17px 0 #d9c364; }
.character--four { height: 205px; background: #e8d66a; transform: translateY(-11px); }
.character--four::before { background: #bb855c; box-shadow: inset 0 15px 0 #191d1a; }
.character--five { height: 180px; background: #5687c3; }
.character--five::before { background: #d6aa79; box-shadow: inset 0 17px 0 #e1e6d9; }
.character-capture {
  position: relative;
  margin: 0;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(31,224,212,.25);
  background: #071420;
  box-shadow: 0 25px 55px rgba(0,0,0,.28);
}
.character-capture img { width: 100%; height: 100%; min-height: 275px; display: block; object-fit: cover; }
.character-capture figcaption {
  position: absolute;
  right: 13px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--cyan-soft);
  background: rgba(3,14,21,.84);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.arenas { border-top: 1px solid var(--line); }
.arena-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.arena-card { min-height: 440px; display: flex; flex-direction: column; overflow: hidden; background: var(--panel); border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease; }
.arena-card:hover { transform: translateY(-4px); border-color: rgba(187,204,112,.4); }
.arena-scene { position: relative; height: 265px; margin: 0; overflow: hidden; background: #73826a; }
.arena-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(6,16,13,.8)); }
.arena-scene::before { content: none !important; }
.arena-scene img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.arena-card:hover .arena-scene img { transform: scale(1.035); }
.arena-scene figcaption {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 13px;
  padding: 6px 9px;
  color: #dffcf8;
  background: rgba(3,14,21,.82);
  border-left: 2px solid var(--cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
}
.arena-copy { padding: 26px 29px 30px; }
.arena-copy small { color: var(--olive-bright); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.arena-copy h3 { margin: 8px 0 8px; font-family: var(--font-display); font-size: 28px; line-height: 1; text-transform: uppercase; }
.arena-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.arena-card--normandy .arena-scene { background: linear-gradient(180deg,#91b7b5 0 45%,#7f9367 45%); }
.arena-card--normandy .arena-scene::before { content: ""; position: absolute; left: -5%; right: 35%; bottom: -7%; height: 50%; background: #31443a; border-top: 9px solid #8e7550; transform: rotate(9deg); }
.arena-card--normandy .arena-scene i { position: absolute; right: 15%; bottom: 23%; width: 75px; height: 105px; background: #535c4b; border: 7px solid #384038; }
.arena-card--normandy .arena-scene i::before { content: ""; position: absolute; left: 13px; right: 13px; top: 15px; height: 25px; background: #14251f; }
.arena-card--normandy .arena-scene b { position: absolute; z-index: 2; left: 42%; bottom: 22%; width: 60px; height: 13px; background: #725e41; transform: rotate(-16deg); }
.arena-card--normandy .arena-scene span { position: absolute; z-index: 3; left: 49%; bottom: 34%; width: 17px; height: 34px; background: var(--pink); border-radius: 5px; }

.arena-card--city .arena-scene { background: linear-gradient(180deg,#9cbbb8 0 55%,#4d5d59 55%); }
.arena-card--city .arena-scene::before { content: ""; position: absolute; left: 8%; bottom: 26%; width: 25%; height: 56%; background: #815b4b; box-shadow: 150px -22px 0 #606b62, 290px 8px 0 #8a6557; }
.arena-card--city .arena-scene i { position: absolute; z-index: 2; left: 0; right: 0; bottom: 18%; height: 21px; background: #76817b; border-top: 4px solid #a9b5ac; }
.arena-card--city .arena-scene b { position: absolute; z-index: 3; left: 18%; bottom: 20%; width: 44%; height: 10px; background: #d3b156; transform: perspective(90px) rotateX(58deg); }
.arena-card--city .arena-scene span { position: absolute; z-index: 4; right: 20%; bottom: 25%; width: 17px; height: 38px; border-radius: 5px; background: var(--cyan); }

.arena-card--forest .arena-scene { background: linear-gradient(180deg,#789d99 0 48%,#4e654c 48%); }
.arena-card--forest .arena-scene::before { content: ""; position: absolute; left: 11%; bottom: 0; width: 20px; height: 63%; background: #493b2a; box-shadow: 155px -8px 0 #493b2a, 320px 6px 0 #493b2a, 430px -18px 0 #493b2a; }
.arena-card--forest .arena-scene i { position: absolute; left: 4%; bottom: 42%; width: 140px; height: 35px; background: #4b3a29; border: 6px solid #30281f; box-shadow: 300px 20px 0 -4px #4b3a29; }
.arena-card--forest .arena-scene b { position: absolute; z-index: 3; left: 22%; right: 20%; top: 50%; height: 8px; background: #8b7048; transform: rotate(4deg); }
.arena-card--forest .arena-scene span { position: absolute; z-index: 4; left: 59%; top: 43%; width: 17px; height: 35px; border-radius: 5px; background: var(--pink); }

.arena-card--giant .arena-scene { background: linear-gradient(180deg,#778d85 0 51%,#5d654c 51%); }
.arena-card--giant .arena-scene::before { content: ""; position: absolute; left: 12%; bottom: 13%; width: 70px; height: 150px; background: #6e735f; transform: rotate(-25deg); border-radius: 7px 7px 20px 20px; box-shadow: 260px 15px 0 -16px #a78a55; }
.arena-card--giant .arena-scene i { position: absolute; z-index: 2; right: 21%; top: 7%; width: 40px; height: 190px; background: #4b493a; transform: rotate(18deg); }
.arena-card--giant .arena-scene b { position: absolute; z-index: 3; left: 32%; bottom: 18%; width: 220px; height: 18px; background: #8e7550; transform: rotate(-8deg); }
.arena-card--giant .arena-scene span { position: absolute; z-index: 4; right: 32%; bottom: 21%; width: 18px; height: 39px; border-radius: 5px; background: var(--cyan); }

.arena-more { margin: 27px 0 0; color: #87978e; font-size: 12px; text-align: center; letter-spacing: .02em; }

.modes { border-top: 1px solid var(--line); }
.mode-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9%; align-items: center; }
.check-list { margin: 33px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 13px 0; display: flex; align-items: center; gap: 13px; color: #bdc8c1; border-bottom: 1px solid var(--line); font-size: 13px; }
.check-list span { width: 21px; height: 21px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--olive-bright); border-radius: 50%; font-size: 11px; font-weight: 900; }

.mode-panel { border: 1px solid rgba(31,224,212,.25); background: linear-gradient(145deg,#0c1e19,#091612); box-shadow: 25px 25px 0 rgba(142,159,87,.05); }
.mode-panel-top { padding: 18px 23px; display: flex; justify-content: space-between; color: var(--muted); background: #071410; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.mode-panel-top strong { color: var(--gold); }
.mode-row { min-height: 82px; padding: 15px 22px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
.mode-row:last-child { border-bottom: 0; }
.mode-index { color: #61736a; font-family: var(--font-display); font-size: 13px; }
.mode-row strong { display: block; font-family: var(--font-display); font-size: 20px; letter-spacing: .035em; text-transform: uppercase; }
.mode-row small { display: block; margin-top: 2px; color: #809188; font-size: 10px; }
.mode-row b { padding: 5px 8px; color: var(--cyan-soft); border: 1px solid rgba(31,224,212,.35); border-radius: 2px; font-size: 7px; letter-spacing: .17em; }
.mode-row--active { background: linear-gradient(90deg,rgba(31,224,212,.12),transparent); box-shadow: inset 3px 0 var(--cyan); }
.mode-row--active .mode-index, .mode-row--active strong { color: var(--cyan-soft); }

.coming-section { position: relative; padding: 140px 32px; overflow: hidden; background: linear-gradient(135deg,#14281d,#26371f); border-top: 1px solid rgba(187,204,112,.25); border-bottom: 1px solid rgba(187,204,112,.25); text-align: center; }
.coming-section::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(115deg,transparent 0 89px,rgba(244,239,217,.035) 89px 90px); }
.coming-section > * { position: relative; z-index: 2; }
.eyebrow--center { justify-content: center; color: var(--gold); }
.eyebrow--center span { background: var(--gold); }
.coming-section h2 { margin-bottom: 25px; }
.coming-section h2 em { color: var(--pink); }
.coming-section > p:not(.eyebrow) { max-width: 580px; margin: 0 auto; color: #b4c1b7; font-size: 16px; }
.coming-platform { width: max-content; margin: 37px auto 25px; padding: 15px 24px; display: flex; align-items: center; gap: 14px; color: var(--cream); background: rgba(6,16,13,.7); border: 1px solid rgba(244,239,217,.2); font-family: var(--font-display); font-size: 22px; font-weight: 800; text-align: left; text-transform: uppercase; }
.coming-platform small { display: block; color: var(--olive-bright); font-family: var(--font-body); font-size: 7px; letter-spacing: .2em; }
.windows-mark { width: 29px; height: 29px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; transform: skewY(-4deg); }
.windows-mark i { background: var(--cyan); }
.back-hub { display: inline-block; color: var(--cream); font-size: 12px; font-weight: 700; text-underline-offset: 6px; }
.back-hub span { margin-left: 5px; color: var(--cyan); }
.coming-splat { position: absolute; z-index: 1; width: 220px; height: 190px; border-radius: 45% 55% 50% 50%; opacity: .09; }
.coming-splat::before, .coming-splat::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.coming-splat::before { left: -55px; top: 20px; width: 60px; height: 60px; }
.coming-splat::after { right: -65px; bottom: 5px; width: 75px; height: 75px; }
.coming-splat--one { left: -4%; top: 9%; background: var(--cyan); transform: rotate(20deg); }
.coming-splat--two { right: -2%; bottom: 5%; background: var(--pink); transform: rotate(-14deg) scale(.8); }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9%; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #dce4df; cursor: pointer; font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: .015em; list-style: none; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: var(--cyan); border: 1px solid rgba(31,224,212,.35); border-radius: 50%; font-family: var(--font-body); transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 55px 25px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.page-footer { min-height: 145px; padding: 38px max(32px, calc((100vw - 1440px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; background: #040b09; border-top: 1px solid var(--line); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 11px; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--cyan-soft); }
.page-footer > p { margin: 0; color: #65746d; font-size: 10px; text-align: right; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(820px, 100%); margin: 0 auto; }
  .feature-card--wide { grid-template-columns: .8fr 1.2fr; }
  .page-footer { grid-template-columns: 1fr auto; }
  .page-footer > p { grid-column: span 2; text-align: left; }
}

@media (max-width: 820px) {
  .site-nav { width: calc(100% - 36px); min-height: 76px; }
  .nav-links a { display: none; }
  .hero { min-height: auto; padding: 125px 20px 75px; gap: 55px; }
  h1 { font-size: clamp(64px, 18vw, 98px); }
  .hero-intro { font-size: 15px; }
  .hero-facts { justify-content: space-between; }
  .hero-facts li { min-width: 0; padding-right: 15px; }
  .hero-facts li + li { padding-left: 15px; }
  .visual-frame { min-height: 410px; }
  .visual-marker { right: 1%; transform: scale(.82); transform-origin: right bottom; }
  .trust-strip { padding: 18px 20px; grid-template-columns: 1fr; }
  .trust-strip > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .section-shell { width: calc(100% - 40px); padding: 90px 0; }
  .story-heading, .arena-heading, .mode-layout, .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .feature-grid, .arena-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-card--characters { padding-bottom: 65px; }
  .character-lineup { margin-top: 40px; transform: scale(.84); }
  .arena-scene { height: 230px; }
  .coming-section { padding: 100px 20px; }
  .page-footer { grid-template-columns: 1fr; }
  .page-footer > p { grid-column: span 1; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 14px; }
  .brand small { font-size: 7px; }
  .brand-mark { width: 28px; height: 28px; }
  .nav-status { padding: 7px 10px; font-size: 8px; }
  .hero-deck { font-size: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { gap: 8px; }
  .hero-facts li { display: block; }
  .hero-facts li + li { padding-left: 12px; }
  .hero-facts strong { font-size: 28px; }
  .hero-facts span { display: block; margin-top: 6px; font-size: 8px; }
  .hero-visual { transform: none; }
  .visual-frame { min-height: 330px; }
  .visual-topline { font-size: 6px; }
  .visual-marker { transform: scale(.63); }
  .visual-ammo { font-size: 5px; }
  .visual-caption { font-size: 7px; }
  .caption-rule { display: none; }
  h2 { font-size: 48px; }
  .feature-card { min-height: 360px; padding: 28px; }
  .feature-art--squad { transform: scale(.84); transform-origin: center; }
  .character-lineup { width: 120%; margin-left: -10%; transform: scale(.65); }
  .mode-row { padding: 13px; grid-template-columns: 30px 1fr auto; }
  .mode-row strong { font-size: 17px; }
  .faq-list summary { font-size: 18px; }
  .footer-links { flex-direction: column; gap: 7px; }
}

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