/* ═══════════════════════════════════════════════════════════════════
   LoLScripts v2 — Editorial / asymmetric / full-bleed layout
   palette: navy + gold + teal-glow + magic-purple accent
   shapes:  parallelogram cuts, diagonal stripes, gold rule-lines
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #010A13;
  --ink-2:      #060F1C;
  --ink-3:      #0C1A2E;
  --panel:      #0F2138;
  --gold:       #C8AA6E;
  --gold-hi:    #F0E6D2;
  --gold-2:     #785A28;
  --bronze:     #463714;
  --teal:       #0AC8B9;
  --teal-2:     #066D6A;
  --cyan:       #5BC0DE;
  --magic:      #9966FF;
  --magic-2:    #5A2EAA;
  --rose:       #FF4655;
  --red:        #C8323C;
  --text:       #F0E6D2;
  --text-2:     #A09B8C;
  --text-3:     #5B5A56;
  --border:     #2A3F5E;
  --shadow-pop: 0 18px 50px rgba(0, 0, 0, .55);
  --glow-gold:  0 0 22px rgba(200, 170, 110, .35);
  --glow-teal:  0 0 22px rgba(10, 200, 185, .35);
  --glow-magic: 0 0 22px rgba(153, 102, 255, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: "Spiegel", "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(900px 600px at 75% -10%, rgba(10, 200, 185, .10) 0%, transparent 55%),
    radial-gradient(900px 600px at 0% 50%, rgba(200, 170, 110, .05) 0%, transparent 50%),
    repeating-linear-gradient(115deg, transparent 0 14px, rgba(200, 170, 110, .02) 14px 15px);
}

a { color: var(--teal); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold); }

/* ═══════ TYPOGRAPHY ═══════ */
h1, h2, h3, h4 {
  font-family: "Cinzel", "Marcellus", "Trajan Pro", serif;
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--gold-hi);
}
h1 { font-size: 4.4rem; line-height: 1.02; letter-spacing: -.005em; font-weight: 700; }
h2 { font-size: 2.4rem; line-height: 1.18; margin-bottom: 1.3rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }

.grad {
  background: linear-gradient(92deg, var(--gold-hi) 0%, var(--gold) 55%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.teal-grad {
  background: linear-gradient(92deg, var(--cyan) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
code {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  background: var(--ink-3);
  border: 1px solid var(--border);
  color: var(--teal);
  padding: 1px 6px;
  font-size: .85em;
  border-radius: 2px;
}

/* ═══════ UTILITY ═══════ */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; padding: .5rem 1rem; background: var(--gold); color: var(--ink); z-index: 9999; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .42rem 1rem;
  background: rgba(200, 170, 110, .06);
  border: 1px solid var(--gold-2);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-2) 30%, var(--gold) 50%, var(--gold-2) 70%, transparent 100%);
  margin: 1rem 0;
  width: 100%;
  max-width: 220px;
}

/* ═══════ SECTION WRAPPERS ═══════ */
.section { padding: 5rem 1.5rem; position: relative; }
.section-narrow { padding: 3.5rem 1.5rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-bleed {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, rgba(10, 200, 185, .04) 0%, transparent 100%),
    var(--ink-2);
  position: relative;
  overflow: hidden;
}
.section-bleed::before, .section-bleed::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-2) 50%, transparent 100%);
}
.section-bleed::before { top: 0; }
.section-bleed::after  { bottom: 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: .9rem; }
.section-head p { color: var(--text-2); font-size: 1.04rem; }
.section-label {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}
.section-label::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .section-label::after { left: 0; transform: none; }

/* ═══════ HEADER ═══════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(1, 10, 19, .94);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--gold-2);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .8rem; }
.logo-mark {
  width: 36px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--ink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.logo-mark svg { position: relative; z-index: 1; width: 16px; height: 16px; fill: var(--gold); }
.logo-text {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .14em;
  color: var(--gold-hi);
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { display: flex; margin-left: auto; }
.nav a {
  position: relative;
  padding: .65rem 1.05rem;
  font-family: "Cinzel", serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 1.05rem; right: 1.05rem;
  height: 2px;
  background: var(--gold);
}
.cta-pill {
  margin-left: .5rem;
  padding: .65rem 1.3rem;
  font-family: "Cinzel", serif;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold) 0%, #B89860 100%);
  border: 1px solid var(--gold-hi);
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700;
  transition: box-shadow .25s, transform .15s;
}
.cta-pill:hover {
  color: var(--ink);
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
}
.hamburger {
  display: none; margin-left: auto;
  background: none;
  border: 1px solid var(--gold-2);
  width: 38px; height: 38px;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.hamburger span { display: block; width: 18px; height: 1.6px; background: var(--gold); }
.mobile-nav { display: none; }

/* ═══════ FULL-BLEED HERO ═══════ */
.hero-bleed {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bleed::before {
  /* layered background: gradient mesh + diagonal stripes */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 70% at 25% 30%, rgba(10, 200, 185, .18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 80% 75%, rgba(200, 170, 110, .15) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(153, 102, 255, .12) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.hero-bleed::after {
  /* diagonal stripe overlay */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(115deg, transparent 0 28px, rgba(200, 170, 110, .025) 28px 29px),
    repeating-linear-gradient(115deg, transparent 0 80px, rgba(10, 200, 185, .015) 80px 82px);
  pointer-events: none;
}
.hero-content {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { z-index: 1; }
.hero-text .eyebrow { margin-bottom: 2rem; }
.hero-text h1 { margin-bottom: 1.4rem; }
.hero-text .tagline {
  font-size: 1.18rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }

.btn-arrow {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.1rem 2rem 1.1rem 1.8rem;
  font-family: "Cinzel", serif;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(95deg, var(--gold) 0%, var(--gold-hi) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: none;
  font-weight: 700;
  transition: background-position .4s, box-shadow .3s, transform .2s;
  cursor: pointer;
  position: relative;
}
.btn-arrow::after {
  content: '→';
  font-size: 1.2em;
  transition: transform .2s;
}
.btn-arrow:hover {
  color: var(--ink);
  background-position: 100% 0;
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-line {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1.05rem 1.8rem;
  font-family: "Cinzel", serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  background: transparent;
  border: 1px solid var(--teal);
  transition: background .2s, color .2s;
}
.btn-line:hover { background: rgba(10, 200, 185, .12); color: var(--teal); }

/* ═══════ HERO TRUST STRIP ═══════ */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.15rem;
  margin: 0 0 1.6rem;
  padding: 0;
}
.hero-trust .trust {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--text-2);
}
.hero-trust .trust svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero-trust .trust:nth-child(2) svg { stroke: var(--gold); }
.hero-trust .trust:nth-child(3) svg { stroke: var(--magic); }
.hero-trust .trust:nth-child(4) svg { stroke: var(--cyan); }
.hero-trust .trust strong { color: var(--gold-hi); font-weight: 600; }

/* ═══════ HERO MODULE PILLS (under gold-rule) ═══════ */
.hero-modules {
  display: flex; flex-direction: column; gap: .7rem;
  padding-top: .2rem;
}
.hero-modules .mods-label {
  font-family: "Cinzel", serif;
  font-size: .65rem;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-modules .mods-row {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.hero-modules .mod {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .85rem;
  background: rgba(200, 170, 110, .04);
  border: 1px solid var(--gold-2);
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  color: var(--gold-hi);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.hero-modules .mod:hover { background: rgba(200, 170, 110, .12); border-color: var(--gold); }
.hero-modules .mod::before {
  content: '';
  width: 7px; height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}
.hero-modules .mod.teal::before  { background: var(--teal); }
.hero-modules .mod.magic::before { background: var(--magic); }
.hero-modules .mod.rose::before  { background: var(--rose); }

/* ═══════ HERO RELEASE-INFO ROW (under HUD mockup) ═══════ */
.hero-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem; margin-top: 1rem;
}
.hero-info-card {
  padding: .8rem .9rem;
  background: linear-gradient(180deg, rgba(10, 200, 185, .06) 0%, rgba(1, 10, 19, .8) 100%);
  border: 1px solid var(--border);
  position: relative;
}
.hero-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
}
.hero-info-card .lbl {
  display: block;
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .2rem;
  font-family: "JetBrains Mono", monospace;
}
.hero-info-card .val {
  font-family: "Cinzel", serif;
  font-size: .9rem;
  color: var(--gold-hi);
  letter-spacing: .03em;
  display: flex; align-items: center; gap: .35rem;
}
.hero-info-card .val .dot-on {
  width: 6px; height: 6px;
  background: #3DC57A;
  border-radius: 50%;
  box-shadow: 0 0 6px #3DC57A;
  animation: pulse 1.6s infinite;
}
.hero-info-card .val .dot-up {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
}

/* hero side: large HUD mockup */
.hero-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
}
.hud-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink) 100%);
  border: 1px solid var(--gold-2);
  padding: 1.2rem;
  box-shadow: var(--shadow-pop), 0 0 60px rgba(10, 200, 185, .15);
  display: flex; flex-direction: column;
  gap: 1rem;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.hud-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-2);
  padding-bottom: .55rem;
}
.hud-top .live { color: var(--teal); }
.hud-mid {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: .9rem;
}
.hud-kda {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .4rem; text-align: center;
}
.hud-kda div {
  padding: .55rem .3rem;
  background: rgba(200, 170, 110, .05);
  border: 1px solid var(--border);
}
.hud-kda div span {
  display: block; font-size: .58rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: .15rem;
}
.hud-kda div strong {
  font-family: "Cinzel", serif; font-size: 1rem; color: var(--gold-hi);
}
.hud-graph {
  background:
    linear-gradient(180deg, rgba(10, 200, 185, .08) 0%, transparent 100%),
    var(--ink-2);
  border: 1px solid var(--border);
  padding: .7rem;
  display: flex; align-items: end; justify-content: space-between;
  gap: 3px; min-height: 70px;
}
.hud-graph span {
  flex: 1; background: linear-gradient(0deg, var(--teal) 0%, var(--cyan) 100%);
  opacity: .85; min-height: 6px; transition: height .3s;
}
.hud-abilities {
  display: grid; grid-template-columns: repeat(4, 1fr) auto auto;
  gap: .35rem;
}
.hud-abilities .ab {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-2), var(--bronze));
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-hi);
  position: relative;
}
.hud-abilities .ab.ult { background: linear-gradient(135deg, var(--magic), var(--magic-2)); border-color: var(--magic); }
.hud-abilities .ab .cd {
  position: absolute; bottom: 1px; right: 2px;
  font-size: .55rem; color: var(--text-3); font-family: "JetBrains Mono", monospace;
}
.hud-abilities .sum {
  width: 100%; aspect-ratio: 1;
  background: var(--ink-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cinzel", serif;
  font-size: .8rem;
  color: var(--teal);
}
.hud-bottom {
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  color: var(--text-2);
  border-top: 1px solid var(--gold-2);
  padding-top: .55rem;
}
.hud-bottom .gold-val { color: var(--gold); font-weight: 700; }
.hud-bottom .scan { color: var(--teal); animation: pulse 1.6s infinite; }

/* badge floating */
.hero-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--magic), var(--magic-2));
  color: var(--gold-hi);
  font-family: "Cinzel", serif;
  font-size: .75rem;
  letter-spacing: .15em;
  padding: .7rem 1.1rem;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  font-weight: 700;
  transform: rotate(-3deg);
  box-shadow: var(--glow-magic);
}

/* ═══════ STAT BANNER (horizontal strip, NEW) ═══════ */
.stat-banner {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid var(--gold-2);
  border-bottom: 1px solid var(--gold-2);
  padding: 1.5rem 0;
}
.stat-banner-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.stat-strip {
  display: flex; align-items: center; gap: .9rem;
  flex: 1; min-width: 200px;
  border-right: 1px solid var(--gold-2);
  padding-right: 1rem;
}
.stat-strip:last-child { border-right: none; }
.stat-strip .num {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-hi);
  line-height: 1;
}
.stat-strip .lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-2);
}

/* ═══════ ABOUT SPLIT (NEW) ═══════ */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-split p { color: var(--text-2); font-size: 1.05rem; margin-bottom: 1rem; }
.feature-chips {
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid var(--gold-2);
  background: rgba(200, 170, 110, .04);
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem;
  color: var(--gold-hi);
  letter-spacing: .04em;
  transition: background .2s, border-color .2s;
}
.chip:hover { background: rgba(200, 170, 110, .12); border-color: var(--gold); }
.chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
}
.chip.magic::before { background: var(--magic); box-shadow: 0 0 6px var(--magic); }
.chip.gold::before  { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.chip.rose::before  { background: var(--rose); box-shadow: 0 0 6px var(--rose); }

/* ═══════ CHEAT TYPES GRID (NEW, replaces install steps) ═══════ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.type-card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--gold-2);
  padding: 1.6rem 1.4rem 1.4rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.type-card::before {
  /* angled accent stripe top-right */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--gold-2) 50%);
  opacity: .35;
  transition: opacity .25s;
}
.type-card::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.type-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-pop), var(--glow-gold);
}
.type-card:hover::before { opacity: .6; }
.type-card .type-tag {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: .8rem;
  padding: .25rem .55rem;
  background: rgba(10, 200, 185, .08);
  border: 1px solid var(--teal-2);
}
.type-card .type-tag.magic { color: var(--magic); background: rgba(153, 102, 255, .1); border-color: var(--magic-2); }
.type-card .type-tag.rose  { color: var(--rose);  background: rgba(255, 70, 85, .08); border-color: #6b1820; }
.type-card .type-tag.gold  { color: var(--gold);  background: rgba(200, 170, 110, .08); border-color: var(--gold-2); }
.type-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  margin-bottom: .7rem;
  color: var(--gold-hi);
  letter-spacing: .03em;
}
.type-card p {
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.type-card .type-stats {
  display: flex; gap: .7rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.type-card .type-stats strong {
  color: var(--gold-hi); font-family: "Cinzel", serif; font-weight: 600;
}

/* ═══════ SCREENSHOTS GALLERY (NEW) ═══════ */
.shots-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 480px;
}
.shot {
  position: relative;
  background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink) 100%);
  border: 1px solid var(--gold-2);
  overflow: hidden;
  padding: 1rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .25s, transform .25s;
}
.shot:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.shot:nth-child(1) { grid-row: 1 / 3; }
.shot-label {
  position: relative; z-index: 2;
  font-family: "Cinzel", serif;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .35rem .75rem;
  background: rgba(1, 10, 19, .8);
  border: 1px solid var(--gold-2);
  align-self: flex-start;
}
.shot-title {
  position: relative; z-index: 2;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gold-hi);
  letter-spacing: .04em;
  align-self: flex-end;
  padding: .35rem .65rem;
  background: linear-gradient(90deg, rgba(1, 10, 19, .92) 0%, rgba(1, 10, 19, .65) 100%);
  border-left: 2px solid var(--teal);
}
.shot svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* ═══════ CHAMPION STRIP (horizontal, NEW) ═══════ */
.champion-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.champ-card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--gold-2);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.champ-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.champ-portrait {
  height: 120px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.champ-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .85;
  z-index: 0;
}
.champ-card.c1 .champ-portrait::before { background: linear-gradient(135deg, #C8323C 0%, #5a141a 100%); }
.champ-card.c2 .champ-portrait::before { background: linear-gradient(135deg, #0AC8B9 0%, #066D6A 100%); }
.champ-card.c3 .champ-portrait::before { background: linear-gradient(135deg, #9966FF 0%, #5A2EAA 100%); }
.champ-card.c4 .champ-portrait::before { background: linear-gradient(135deg, #C8AA6E 0%, #785A28 100%); }
.champ-card.c5 .champ-portrait::before { background: linear-gradient(135deg, #5BC0DE 0%, #1F6E85 100%); }
.champ-card.c6 .champ-portrait::before { background: linear-gradient(135deg, #E8A92C 0%, #7E5816 100%); }
.champ-card.c7 .champ-portrait::before { background: linear-gradient(135deg, #3DC57A 0%, #1D6E40 100%); }
.champ-card.c8 .champ-portrait::before { background: linear-gradient(135deg, #F08B3C 0%, #82441A 100%); }
.champ-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(0,0,0,.18) 6px 7px);
  z-index: 1;
}
.champ-portrait .initials {
  position: relative; z-index: 2;
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-hi);
  letter-spacing: .05em;
  text-shadow: 0 0 14px rgba(0,0,0,.5);
}
.champ-icon {
  position: relative; z-index: 2;
  width: 70px; height: 70px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)) drop-shadow(0 0 10px rgba(240,230,210,.3));
}
.champ-icon path, .champ-icon line, .champ-icon circle, .champ-icon polygon {
  stroke: #F0E6D2;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.champ-icon .fill { fill: #F0E6D2; stroke: none; }
.champ-icon .accent { stroke: #C8AA6E; }
.champ-icon .glow { stroke: rgba(240,230,210,.35); stroke-width: 1.2; }
.champ-role {
  position: absolute;
  top: 6px; right: 6px;
  z-index: 3;
  font-family: "Cinzel", serif;
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--gold-hi);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(200, 170, 110, .5);
  padding: 2px 8px;
  text-transform: uppercase;
}
.champ-info {
  padding: .85rem 1rem 1rem;
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.champ-info h3 {
  font-family: "Cinzel", serif;
  font-size: .98rem;
  color: var(--gold-hi);
  margin-bottom: .25rem;
}
.champ-info .ability {
  font-size: .8rem; color: var(--text-2); margin-bottom: .55rem;
}
.champ-info .meta {
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  color: var(--text-3);
  letter-spacing: .05em;
}
.champ-info .meta .ver { color: var(--teal); }

/* ═══════ VANGUARD TABLE (restyled) ═══════ */
.region-table {
  border: 1px solid var(--gold-2);
  background: var(--ink-2);
  overflow-x: auto;
}
.region-table table {
  width: 100%;
  border-collapse: collapse;
}
.region-table thead {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink-3) 100%);
}
.region-table th {
  font-family: "Cinzel", serif;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  padding: 1.1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--gold-2);
}
.region-table td {
  padding: .9rem 1.2rem;
  border-bottom: 1px solid #1f2e44;
  color: var(--text-2);
  font-size: .94rem;
}
.region-table tr:last-child td { border-bottom: none; }
.region-table tr:hover td { background: rgba(200, 170, 110, .04); color: var(--text); }
.region-flag {
  display: inline-flex; align-items: center; gap: .55rem;
}
.region-flag::before {
  content: ''; width: 16px; height: 12px;
  background: var(--gold-2); border: 1px solid var(--gold);
  display: inline-block;
}
.tag-yes  { color: #3DC57A; font-weight: 600; }
.tag-no   { color: var(--rose); font-weight: 600; }
.tag-warn { color: #E8A92C; font-weight: 600; }
.tag-pill {
  display: inline-block; padding: 3px 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem; letter-spacing: .08em;
  border: 1px solid currentColor; text-transform: uppercase;
}

/* ═══════ FEATURES 3-COL CHIPS ═══════ */
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feat-block {
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--gold-2);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.3rem;
}
.feat-block h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gold-hi);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.feat-block p {
  color: var(--text-2);
  font-size: .88rem;
}
.feat-block.teal { border-left-color: var(--teal); }
.feat-block.magic { border-left-color: var(--magic); }
.feat-block.rose  { border-left-color: var(--rose); }

/* ═══════ COMPARISON SPLIT (replaces platform tiles) ═══════ */
.compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-2);
  border: 1px solid var(--gold-2);
}
.compare-side {
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink) 100%);
  position: relative;
}
.compare-side.featured {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink-3) 100%);
}
.compare-side.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px; right: -1px;
  font-family: "Cinzel", serif;
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--ink);
  background: var(--gold);
  padding: .35rem .9rem;
}
.compare-side h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold-hi);
  margin-bottom: .5rem;
}
.compare-side .pitch {
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.compare-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid; gap: .5rem;
}
.compare-list li {
  display: flex; justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px dashed #1f2e44;
  color: var(--text-2);
  font-size: .9rem;
}
.compare-list li strong {
  color: var(--gold-hi);
  font-family: "JetBrains Mono", monospace;
  font-size: .82rem;
}
.compare-side .lnk {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Cinzel", serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  margin-top: .5rem;
}

/* ═══════ FAQ — INLINE Q&A (NEW) ═══════ */
.faq-inline {
  display: grid;
  gap: 0;
}
.faq-inline details {
  border-bottom: 1px solid var(--gold-2);
  padding: 1.3rem 0;
  position: relative;
}
.faq-inline details:first-child { border-top: 1px solid var(--gold-2); }
.faq-inline summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: var(--gold-hi);
  display: flex; align-items: center; gap: 1.2rem;
  padding-right: 3rem;
  position: relative;
}
.faq-inline summary::-webkit-details-marker { display: none; }
.faq-inline summary .qnum {
  font-family: "Cinzel", serif;
  font-size: .9rem;
  color: var(--gold);
  background: rgba(200, 170, 110, .08);
  border: 1px solid var(--gold-2);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.faq-inline summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .25s;
}
.faq-inline details[open] summary::after { content: '−'; }
.faq-inline .ans {
  color: var(--text-2);
  font-size: .95rem;
  margin-top: 1rem;
  padding-left: calc(36px + 1.2rem);
  max-width: 880px;
}

/* ═══════ DIAGONAL CTA STRIP (NEW) ═══════ */
.cta-strip {
  position: relative;
  margin: 4rem 1.5rem;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: linear-gradient(95deg, var(--ink-3) 0%, var(--ink-2) 50%, var(--panel) 100%);
  border: 1px solid var(--gold);
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(10, 200, 185, .12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip-text {
  padding: 2.5rem 2.2rem;
  position: relative; z-index: 1;
}
.cta-strip-text h2 {
  font-size: 2rem;
  margin-bottom: .6rem;
}
.cta-strip-text p {
  color: var(--text-2);
  font-size: 1rem;
}
.cta-strip-actions {
  padding: 2.5rem 2.2rem;
  display: flex; flex-direction: column; gap: .6rem;
  justify-content: center;
  position: relative; z-index: 1;
  border-left: 1px solid var(--gold-2);
  background: linear-gradient(90deg, rgba(200, 170, 110, .05) 0%, transparent 100%);
}

/* ═══════ FOOTER ═══════ */
.footer {
  margin-top: 4rem;
  background: var(--ink-2);
  border-top: 1px solid var(--gold-2);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-2);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  font-size: .72rem;
  letter-spacing: .26em;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: .9rem;
  padding: .3rem 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-bot {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .78rem;
  color: var(--text-3);
  flex-wrap: wrap;
}
.footer-bot strong { color: var(--gold-2); font-weight: 600; }

/* ═══════ INTERNAL PAGE HERO (compact variant) ═══════ */
.page-hero {
  padding: 4rem 1.5rem 3rem;
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 20% 40%, rgba(10, 200, 185, .1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 80% 60%, rgba(200, 170, 110, .08) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--gold-2);
}
.page-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-size: 3.2rem;
  margin: 1.4rem 0 1rem;
}
.page-hero p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.page-hero .hero-actions { justify-content: center; }

/* ═══════ NUMBERED STEPS (kept for internal pages) ═══════ */
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: stp;
  margin-top: 1.5rem;
}
.steps li {
  counter-increment: stp;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--gold-2);
  border-left: 3px solid var(--gold);
}
.steps li::before {
  content: counter(stp, decimal-leading-zero);
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  padding-top: 2px;
  border-right: 1px solid var(--gold-2);
}
.steps li h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--gold-hi);
}
.steps li p { color: var(--text-2); font-size: .92rem; }

/* ═══════ MOBILE ═══════ */
@media (max-width: 1000px) {
  h1 { font-size: 3.2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mockup { margin: 0 auto; max-width: 360px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .champion-strip { grid-template-columns: repeat(2, 1fr); }
  .features-3 { grid-template-columns: 1fr 1fr; }
  .shots-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .shots-grid .shot:nth-child(1) { grid-row: auto; min-height: 240px; }
  .shots-grid .shot { min-height: 200px; }
  .about-split { grid-template-columns: 1fr; }
  .compare-split { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip-actions { border-left: none; border-top: 1px solid var(--gold-2); }
  .nav { display: none; }
  .cta-pill { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--gold-2);
    padding: .5rem 1rem 1rem;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block; padding: .8rem 1rem;
    font-family: "Cinzel", serif;
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid #1f2e44;
  }
  .mobile-nav a.active { color: var(--gold); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section, .section-bleed { padding: 3rem 1rem; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.55rem; }
  .hero-bleed { min-height: auto; padding: 3rem 1rem 4rem; }
  .hero-trust { gap: .8rem; }
  .hero-trust .trust { font-size: .72rem; }
  .hero-info-row { grid-template-columns: 1fr; gap: .5rem; }
  .hero-modules .mod { font-size: .68rem; padding: .35rem .7rem; }
  .types-grid { grid-template-columns: 1fr; }
  .champion-strip { grid-template-columns: 1fr 1fr; }
  .features-3 { grid-template-columns: 1fr; }
  .stat-banner-inner { gap: .5rem; }
  .stat-strip { min-width: 130px; padding-right: .5rem; }
  .stat-strip:nth-child(2n) { border-right: none; }
  .stat-strip .num { font-size: 1.4rem; }
  .stat-strip .lbl { font-size: .62rem; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-strip { margin: 2rem 1rem; }
  .cta-strip-text, .cta-strip-actions { padding: 1.8rem 1.4rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .faq-inline summary { font-size: .92rem; }
  .compare-side { padding: 1.8rem 1.4rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.95rem; }
  .btn-arrow, .btn-line { padding: .85rem 1.3rem; font-size: .72rem; }
  .champion-strip { grid-template-columns: 1fr; }
  .shots-grid { grid-template-columns: 1fr; }
}
