/* =========================================================
   LAST STAND: BRIDGE — arena site (v3, multiplayer rebuild)
   Dark navy arena · duo-tone sections · candy buttons
   ========================================================= */

:root {
  --navy: #0D111F;
  --navy-2: #0A0E19;
  --card: #12172A;
  --green: #2ACB61;
  --green-lip: #17924a;
  --purple: #A85CFF;
  --purple-lip: #7a34cc;
  --gold: #FFCC3D;
  --gold-lip: #c99a12;
  --teal: #26D3C4;
  --pink: #FF3B5C;
  --text: #EEF1F8;
  --muted: #9AA3B8;
  --line: rgba(255, 255, 255, .08);
  --radius: 24px;
  --radius-lg: 40px;
  --shadow: 0 26px 60px -26px rgba(0, 0, 0, .85);
  --shadow-soft: 0 14px 34px -18px rgba(0, 0, 0, .7);
  --maxw: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* starfield */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 78% 12%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 32% 62%, rgba(255,255,255,.45), transparent),
    radial-gradient(2px 2px at 62% 78%, rgba(168,92,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 88% 52%, rgba(255,204,61,.5), transparent),
    radial-gradient(1.5px 1.5px at 46% 32%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 8% 82%, rgba(38,211,196,.45), transparent);
  background-repeat: repeat;
  opacity: .6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: "Lilita One", "Nunito", sans-serif;
  font-weight: 400; line-height: 1.04; letter-spacing: .5px; margin: 0;
}
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.accent { color: var(--gold); }
.accent-p { color: var(--purple); }
.accent-g { color: var(--green); }
.muted { color: var(--muted); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Lilita One", sans-serif; letter-spacing: 2px; text-transform: uppercase;
  font-size: .78rem; color: var(--gold);
  background: rgba(255, 204, 61, .1); border: 1px solid rgba(255, 204, 61, .24);
  padding: 7px 15px; border-radius: 999px;
}
.eyebrow.p { color: var(--purple); background: rgba(168,92,255,.1); border-color: rgba(168,92,255,.28); }
.eyebrow.g { color: var(--green); background: rgba(42,203,97,.1); border-color: rgba(42,203,97,.28); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }

.tilt { display: inline-block; transform: rotate(-1.5deg); }
.outline {
  text-shadow:
    2px 0 var(--navy-2), -2px 0 var(--navy-2), 0 2px var(--navy-2), 0 -2px var(--navy-2),
    2px 2px var(--navy-2), -2px 2px var(--navy-2), 2px -2px var(--navy-2), -2px -2px var(--navy-2),
    0 8px 22px rgba(0, 0, 0, .5);
}

/* ---------- Candy buttons ---------- */
.btn {
  --fill: var(--gold); --lip: var(--gold-lip); --ink: #241a02;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Lilita One", sans-serif; font-size: 1.1rem; letter-spacing: .6px;
  color: var(--ink); background: var(--fill);
  padding: 15px 30px; border: 0; border-radius: 18px; cursor: pointer;
  box-shadow: 0 6px 0 0 var(--lip), var(--shadow-soft);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), filter .12s var(--ease);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 8px 0 0 var(--lip), var(--shadow-soft); }
.btn:active { transform: translateY(4px); box-shadow: 0 2px 0 0 var(--lip); }
.btn--green  { --fill: var(--green);  --lip: var(--green-lip);  --ink: #06210f; }
.btn--purple { --fill: var(--purple); --lip: var(--purple-lip); --ink: #1c0a36; }
.btn--gold   { --fill: var(--gold);   --lip: var(--gold-lip);   --ink: #241a02; }
.btn--ghost {
  --ink: var(--text); background: rgba(255, 255, 255, .06); border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: none; transform: translateY(-2px); }
.btn--lg { font-size: 1.22rem; padding: 17px 36px; }

/* Google Play badge */
.gp-badge {
  display: inline-flex; align-items: center; gap: 13px;
  background: #000; border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px;
  padding: 10px 22px 10px 17px; color: #fff; box-shadow: var(--shadow-soft);
  transition: transform .15s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.gp-badge:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .55); background: #0b0b0b; }
.gp-badge svg { width: 26px; height: 26px; flex: none; }
.gp-badge .gp-top { display: block; font-size: .64rem; letter-spacing: 1.3px; text-transform: uppercase; color: #c7ccd4; font-weight: 700; }
.gp-badge .gp-big { display: block; font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.22rem; line-height: 1.1; letter-spacing: .2px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(16px); background: rgba(10, 14, 25, .78);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: var(--shadow-soft); }
.brand b { font-family: "Lilita One", sans-serif; font-size: 1.16rem; letter-spacing: .5px; }
.brand b span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { color: var(--muted); font-size: .97rem; position: relative; transition: color .15s; }
.nav-links > a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width .2s var(--ease); }
.nav-links > a:hover { color: var(--text); }
.nav-links > a:hover::after { width: 100%; }
.nav-links-cta { display: none; }
.nav-cta { display: flex; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 9px; }
.nav-toggle span { display: block; height: 3px; border-radius: 3px; background: var(--text); margin: 4px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections + duo-tones ---------- */
section { position: relative; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section > .wrap { position: relative; z-index: 1; }
.sec-tone::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.sec--pvp::before   { background: radial-gradient(80% 70% at 80% 0, rgba(168, 92, 255, .16), transparent 60%); }
.sec--gold::before  { background: radial-gradient(80% 70% at 20% 0, rgba(255, 204, 61, .14), transparent 60%); }
.sec--teal::before  { background: radial-gradient(80% 70% at 80% 10%, rgba(38, 211, 196, .14), transparent 60%); }
.sec--endless::before { background: radial-gradient(80% 70% at 20% 0, rgba(51, 128, 242, .14), transparent 60%); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: 16px; }

/* generic split layout: text + media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.rev .split-media { order: -1; }
.split h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: 8px; }
.split .lede { color: #d3d9e8; font-size: 1.12rem; margin: 14px 0 22px; }

/* feature checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: #d8dce8; font-size: 1.03rem; }
.checks li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 8px;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306210f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/16px no-repeat;
  box-shadow: 0 3px 0 0 var(--green-lip);
}

/* ---------- Phone frame media ---------- */
.phone-frame {
  position: relative; border-radius: var(--radius-lg); padding: 9px;
  background: linear-gradient(160deg, #2a3050, #12151f);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow), 0 0 0 1px rgba(168, 92, 255, .18);
}
.phone-frame::after {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 30%; height: 7px; border-radius: 999px; background: rgba(0, 0, 0, .5); z-index: 3;
}
.phone-frame .screen { position: relative; border-radius: 32px; overflow: hidden; aspect-ratio: 9 / 16; background: #0d1526; }
.phone-frame img, .phone-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-frame .glare { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%); }

/* media cluster (fanned trio) */
.cluster { display: flex; justify-content: center; align-items: center; gap: 0; }
.cluster .phone-frame { width: 46%; max-width: 250px; }
.cluster .phone-frame:nth-child(1) { transform: rotate(-6deg) translateX(14%) scale(.86); z-index: 1; }
.cluster .phone-frame:nth-child(2) { transform: scale(1.02); z-index: 3; }
.cluster .phone-frame:nth-child(3) { transform: rotate(6deg) translateX(-14%) scale(.86); z-index: 1; }
.cluster.duo .phone-frame { width: 50%; }
.cluster.duo .phone-frame:nth-child(1) { transform: rotate(-5deg) translateX(10%); }
.cluster.duo .phone-frame:nth-child(2) { transform: rotate(5deg) translateX(-10%); }

/* decorative stickers */
.sticker {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .55));
  opacity: .92;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 72px; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(75% 60% at 75% 20%, rgba(168, 92, 255, .22), transparent 60%), radial-gradient(60% 50% at 10% 90%, rgba(38, 211, 196, .12), transparent 60%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.1rem); margin: 18px 0 4px; color: var(--gold); }
.hero .tagline { font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: #fff; font-weight: 800; margin: 10px 0 0; }
.hero .sub { color: #cdd3e2; font-size: 1.08rem; max-width: 40ch; margin: 14px 0 24px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 800;
  color: #dfe4f0; background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px;
}
.pill b { color: var(--gold); font-family: "Lilita One", sans-serif; font-weight: 400; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .phone-frame { width: min(320px, 82%); animation: float 6.5s ease-in-out infinite; }
.hero-visual::after { content: ""; position: absolute; inset: 4% 12%; background: radial-gradient(closest-side, rgba(168, 92, 255, .5), transparent 72%); filter: blur(30px); z-index: -1; }
.play-trailer {
  position: absolute; z-index: 4; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(13, 17, 31, .82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-weight: 800; font-size: .9rem;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  transition: transform .15s var(--ease), background .15s;
}
.play-trailer:hover { transform: translateX(-50%) translateY(-2px); background: rgba(168, 92, 255, .3); }
.play-trailer .tri { width: 0; height: 0; border-left: 11px solid var(--gold); border-top: 7px solid transparent; border-bottom: 7px solid transparent; }

/* ---------- Mob strip ---------- */
.mob-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.mob {
  position: relative; text-align: center; padding: 20px 12px 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.mob:hover { transform: translateY(-6px); border-color: rgba(38, 211, 196, .45); box-shadow: 0 22px 40px -24px rgba(38, 211, 196, .4); }
.mob img { height: 84px; width: auto; margin: 0 auto 12px; filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .5)); transition: transform .3s var(--ease); }
.mob:hover img { transform: translateY(-4px) scale(1.06); }
.mob h4 { font-family: "Lilita One", sans-serif; font-weight: 400; font-size: 1.02rem; margin: 0 0 4px; letter-spacing: .3px; }
.mob p { color: var(--muted); font-size: .8rem; margin: 0; line-height: 1.35; }

/* skins mini-strip */
.skin-row { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.skin-row img {
  height: 72px; width: auto; padding: 6px 8px; border-radius: 14px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .5)); transition: transform .2s var(--ease);
}
.skin-row img:hover { transform: translateY(-5px); }

/* ---------- Weapons (rarity tiers) ---------- */
.legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin: -26px 0 40px; }
.legend .tag { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); font-weight: 800; }
.legend .dot { width: 11px; height: 11px; border-radius: 50%; }
.weapons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.weapon {
  --tier: var(--muted); position: relative; overflow: hidden; text-align: center; padding: 20px 12px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.weapon::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, var(--tier), transparent); opacity: .55; }
.weapon:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--tier) 55%, transparent); box-shadow: 0 22px 40px -24px var(--tier); }
.weapon .wnum { position: absolute; top: 8px; left: 11px; font-family: "Lilita One", sans-serif; font-size: .78rem; color: var(--muted); }
.weapon .wtier { position: absolute; top: 9px; right: 11px; font-size: .56rem; letter-spacing: 1.1px; text-transform: uppercase; font-weight: 800; color: var(--tier); }
.weapon .wimg { height: 84px; display: grid; place-items: center; margin-bottom: 10px; }
.weapon .wimg img { max-height: 80px; width: auto; filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .5)); transition: transform .3s var(--ease); }
.weapon:hover .wimg img { animation: bob 1.4s ease-in-out infinite; }
.weapon h3 { font-size: .98rem; }
.weapon p { color: var(--muted); font-size: .78rem; margin: 5px 0 0; line-height: 1.4; }

/* ---------- Daily rewards band ---------- */
.band {
  position: relative; overflow: hidden; border-radius: 30px; padding: 46px; margin-top: 8px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center;
  background: linear-gradient(120deg, rgba(255, 204, 61, .1), rgba(18, 23, 42, .6));
  border: 1px solid rgba(255, 204, 61, .22); box-shadow: var(--shadow);
}
.band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.band p { color: #d8dce8; font-size: 1.08rem; margin: 0; }
.band .phone-frame { width: min(230px, 70%); margin: 0 auto; }

/* ---------- Screenshots carousel ---------- */
.gallery { position: relative; overflow: hidden; padding: 6px 0 10px; -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.gallery-track { display: flex; width: max-content; padding: 12px 0; animation: scrollx 70s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
.shot {
  width: clamp(200px, 22vw, 246px); aspect-ratio: 9 / 16; flex: none; margin-right: 22px;
  border-radius: 26px; border: 1px solid rgba(255, 255, 255, .1); box-shadow: var(--shadow);
  overflow: hidden; position: relative; background: #17233d; cursor: pointer;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 38%); pointer-events: none; }
.shot:hover { transform: translateY(-10px) scale(1.03); border-color: rgba(255, 204, 61, .45); box-shadow: 0 34px 54px -24px rgba(255, 204, 61, .32); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(168, 92, 255, .4); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Lilita One", sans-serif; font-weight: 400; font-size: 1.12rem; letter-spacing: .3px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: "Lilita One", sans-serif; font-size: 1.6rem; color: var(--purple); transition: transform .2s; flex: none; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: #cfd4e2; font-weight: 600; }
.faq .faq-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Final CTA ---------- */
.cta-band {
  position: relative; overflow: hidden; margin-top: 8px; border-radius: 32px; padding: 68px 44px; text-align: center;
  border: 1px solid rgba(168, 92, 255, .28); box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(168, 92, 255, .2), rgba(13, 17, 31, .8));
}
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.cta-band p { color: #d3d8e2; font-size: 1.14rem; margin: 12px auto 28px; max-width: 48ch; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .sticker { opacity: .9; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; place-items: center;
  background: rgba(5, 7, 13, .9); backdrop-filter: blur(8px); padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox .lb-inner { position: relative; width: min(420px, 92vw); max-height: 92vh; }
.lightbox video, .lightbox img { width: 100%; max-height: 92vh; border-radius: 24px; box-shadow: var(--shadow); background: #000; display: block; }
.lightbox .lb-close {
  position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: #fff; border: 0; font-size: 1.4rem; cursor: pointer; box-shadow: 0 4px 0 0 var(--purple-lip);
  display: grid; place-items: center; line-height: 1;
}
.lightbox .lb-close:active { transform: translateY(3px); box-shadow: 0 1px 0 0 var(--purple-lip); }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 60px 0 42px; margin-top: 90px; }
.foot-grid { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { max-width: 340px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: "Lilita One", sans-serif; font-weight: 400; font-size: 1rem; letter-spacing: .5px; margin: 0 0 14px; }
.foot-col a { display: block; color: var(--muted); font-size: .95rem; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }

/* ---------- Legal ---------- */
.legal { padding: 60px 0 20px; }
.legal-wrap { max-width: 760px; }
.legal .card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 46px clamp(24px, 5vw, 58px); box-shadow: var(--shadow-soft); }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.legal .intro { color: #d3d8e2; font-weight: 600; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 10px; color: var(--gold); scroll-margin-top: 90px; }
.legal h3 { font-size: 1.08rem; margin: 20px 0 6px; color: var(--text); }
.legal p, .legal li { color: #ccd2e0; font-weight: 600; line-height: 1.7; }
.legal a.inline { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 7px; }
.back-home { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.back-home:hover { color: var(--gold); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Animations ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes scrollx { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery { overflow-x: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .weapons-grid { grid-template-columns: repeat(3, 1fr); }
  .mob-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 14, 25, .98); border-bottom: 1px solid var(--line);
    padding: 8px 22px 20px; transform: translateY(-140%); transition: transform .28s var(--ease);
    max-height: calc(100vh - 72px); overflow: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links > a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links > a::after { display: none; }
  .nav-links-cta { display: block; margin-top: 14px; text-align: center; color: #06210f !important; background: var(--green); border-radius: 14px; box-shadow: 0 5px 0 0 var(--green-lip); font-family: "Lilita One", sans-serif; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .split-media { max-width: 520px; margin: 0 auto; }
  .band { grid-template-columns: 1fr; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .sub { margin-inline: auto; }
  .hero-cta, .pills { justify-content: center; }
  .hero-visual { order: -1; }
  .section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .weapons-grid { grid-template-columns: repeat(2, 1fr); }
  .mob-strip { grid-template-columns: repeat(2, 1fr); }
  .cluster { flex-wrap: wrap; gap: 14px; }
  .cluster .phone-frame, .cluster.duo .phone-frame { width: 62%; max-width: 240px; transform: none !important; }
  .cta-band, .band { padding: 40px 22px; }
  .hero-cta .btn, .hero-cta .gp-badge { width: 100%; justify-content: center; }
}
