/* ==========================================================================
   Fateh · Conqueria — pitch deck
   ========================================================================== */
:root {
  --ink: #080d1c;
  --ink-2: #0e1530;
  --ink-3: #151e40;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.07);
  --text: #eef1f9;
  --muted: #a3acc6;
  --dim: #6f7896;
  --gold: #f6bd48;
  --gold-2: #ffdd8a;
  --gold-3: #c98a1c;
  --royal: #4a7bff;
  --royal-2: #8fb0ff;
  --crimson: #ec5a5f;
  --emerald: #3fd49a;
  --grad-gold: linear-gradient(180deg, #ffe29a 0%, #f6bd48 55%, #d38f1c 100%);
  --radius: 20px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --display: "Cinzel", "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fa: "Vazirmatn", "Inter", sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { /* soft royal glow + noise-free vignette behind everything */
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(74, 123, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(246, 189, 72, 0.08), transparent 60%),
    var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
.gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.center { text-align: center; }
.fa { font-family: var(--fa); direction: rtl; unicode-bidi: isolate; color: var(--muted); font-weight: 500; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

/* ---------- chrome: progress, topbar, dots ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; background: transparent; }
.progress span { display: block; height: 100%; width: 0; background: var(--grad-gold); box-shadow: 0 0 12px rgba(246, 189, 72, 0.7); }
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(8, 13, 28, 0.85), rgba(8, 13, 28, 0));
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 700; letter-spacing: 0.04em; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand em { font-style: normal; color: var(--gold); }
.slide-count { font-family: var(--display); font-size: 14px; color: var(--muted); letter-spacing: 0.1em; }
.slide-count span:first-child { color: var(--text); }

.dots { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 50; display: flex; flex-direction: column; gap: 10px; }
.dots a { position: relative; display: block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); transition: all 0.35s var(--ease); }
.dots a:hover { background: var(--gold-2); }
.dots a.active { background: var(--gold); height: 26px; border-radius: 6px; box-shadow: 0 0 14px rgba(246, 189, 72, 0.6); }
.dots a span {
  position: absolute; right: 22px; top: 50%; transform: translate(8px, -50%); white-space: nowrap;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
  background: rgba(14, 21, 48, 0.92); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: all 0.25s var(--ease);
}
.dots a:hover span { opacity: 1; transform: translate(0, -50%); }

/* ---------- slide scaffold ---------- */
.slide {
  position: relative;
  isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 96px 0 72px;
  scroll-snap-align: start;
  overflow: hidden;
}
.slide + .slide { border-top: 1px solid var(--line); }
.wrap { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 72px 0 40px; }
.kicker { font-family: var(--display); color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.title { font-family: var(--display); font-weight: 700; font-size: clamp(27px, 3.3vw, 46px); margin-bottom: 22px; }
.title.big { font-size: clamp(34px, 5.4vw, 70px); }
.sub { font-family: var(--display); font-size: 18px; letter-spacing: 0.06em; color: var(--muted); margin: 26px 0 14px; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: #d5dbee; max-width: 640px; }
.caption { text-align: center; font-size: 13px; color: var(--dim); margin-top: 14px; letter-spacing: 0.02em; }
.footnote { margin-top: 22px; font-size: 13px; color: var(--dim); max-width: 900px; }
.eyebrow { display: inline-block; padding: 6px 14px; border: 1px solid rgba(246, 189, 72, 0.4); border-radius: 999px; color: var(--gold-2); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(246, 189, 72, 0.08); }
.card { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { font-size: 19px; margin: 14px 0 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal="right"] { transform: translateX(60px) scale(0.97); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- phone frame ---------- */
.phone {
  position: relative; width: 100%;
  aspect-ratio: 640 / 1068;
  border-radius: 34px; padding: 9px;
  background: linear-gradient(145deg, #2a3358, #0c1126 60%, #1f2748);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), var(--shadow), 0 0 60px -10px rgba(74, 123, 255, 0.35);
}
.phone video, .phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 26px; background: #0b1020; }
.phone::after { content: ""; position: absolute; top: 16px; left: 50%; width: 22%; height: 5px; transform: translateX(-50%); border-radius: 4px; background: rgba(0, 0, 0, 0.55); }

/* ---------- 01 hero ---------- */
.hero { padding-top: 90px; }
.hero-bg, .close-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.06); filter: saturate(1.1); }
.hero-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 13, 28, 0.96) 0%, rgba(8, 13, 28, 0.82) 45%, rgba(8, 13, 28, 0.35) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 30%); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; }
.hero-logo { width: min(230px, 55%); margin: 18px 0 14px; filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6)); }
.hero h1 { font-family: var(--display); font-size: clamp(32px, 4.1vw, 56px); font-weight: 800; margin-bottom: 20px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; max-width: 700px; }
.hero-stats div { padding: 14px 16px; border-radius: 16px; background: rgba(14, 21, 48, 0.6); border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.hero-stats b { display: block; font-family: var(--display); font-size: clamp(22px, 2.3vw, 30px); color: var(--gold-2); }
.hero-stats span { font-size: 12.5px; color: var(--muted); line-height: 1.35; display: block; }
.hero-phone { max-width: 330px; justify-self: center; width: 100%; }
.tilt { transform: perspective(1400px) rotateY(-12deg) rotateX(4deg); transition: transform 0.8s var(--ease); animation: float 7s ease-in-out infinite; }
.tilt:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
@keyframes float { 50% { translate: 0 -12px; } }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; margin-top: 34px; font-size: 13px; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; }
.scroll-cue i { width: 22px; height: 36px; border: 2px solid var(--line-2); border-radius: 12px; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--gold); animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- 02 founder ---------- */
.founder-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.founder-card { padding: 40px; border-radius: 28px; border: 1px solid var(--line-2); background: radial-gradient(600px 300px at 0% 0%, rgba(74, 123, 255, 0.18), transparent 70%), linear-gradient(180deg, var(--panel-2), var(--panel)); }
.monogram { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 24px; background: conic-gradient(from 200deg, #ffe29a, #d38f1c, #4a7bff, #ffe29a); padding: 3px; animation: spin 12s linear infinite; }
.monogram span { width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center; background: var(--ink-2); font-family: var(--display); font-size: 32px; font-weight: 800; color: var(--gold-2); animation: spin 12s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.founder-card h2 { font-family: var(--display); font-size: clamp(32px, 3.6vw, 48px); }
.role { color: var(--gold-2); font-weight: 600; margin: 8px 0 16px; }
.founder-stats { display: grid; gap: 16px; }
.bigstat { display: flex; align-items: center; gap: 22px; padding: 22px 26px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); }
.bigstat b { font-family: var(--display); font-size: clamp(44px, 5vw, 68px); line-height: 1; min-width: 2.4ch; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bigstat > span { color: var(--muted); font-size: 17px; }

/* ---------- 03 portfolio ---------- */
.featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { display: flex; flex-direction: column; gap: 18px; padding: 22px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); transition: transform 0.4s var(--ease), border-color 0.4s; }
.feat:hover { transform: translateY(-6px); border-color: rgba(246, 189, 72, 0.45); }
.feat img { width: 96px; height: 96px; border-radius: 24px; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.8); }
.feat h3 { font-size: 21px; margin-bottom: 8px; }
.feat h3 .fa { font-size: 16px; margin-inline-start: 4px; }
.feat h3 small { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 4px; }
.feat h3 small b { color: var(--text); }
.feat p:last-child { color: var(--muted); font-size: 15px; }
.marquee { margin-top: 34px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img { width: 92px; height: 92px; border-radius: 22px; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.9); transition: transform 0.3s var(--ease); }
.marquee img:hover { transform: translateY(-6px) scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 04 solo ---------- */
.solo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items: start; }
.solo-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { padding: 22px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); }
.stat b { display: block; font-family: var(--display); font-size: clamp(30px, 3vw, 42px); color: var(--gold-2); line-height: 1.1; }
.stat span { font-size: 14px; color: var(--muted); }
.solo-card { padding: 28px; border-radius: 22px; border: 1px solid var(--line-2); background: radial-gradient(500px 260px at 0% 0%, rgba(74, 123, 255, 0.16), transparent 70%), linear-gradient(180deg, var(--panel-2), var(--panel)); }
.solo-card h3 { font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.solo-card > .muted { font-size: 15px; }
.roles { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.roles li { display: flex; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); }
.roles img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.roles b { display: block; font-size: 15.5px; }
.roles span { font-size: 13.5px; color: var(--muted); }
.studio { padding: 28px; border-radius: 22px; border: 1px solid rgba(246, 189, 72, 0.3); background: linear-gradient(180deg, rgba(246, 189, 72, 0.08), rgba(246, 189, 72, 0.02)); }
.studio h3 { font-size: 21px; margin-bottom: 10px; }
.studio .muted { font-size: 15px; }
.checks { list-style: none; padding: 0; margin: 14px 0 18px; display: grid; gap: 8px; }
.checks li { position: relative; padding-left: 28px; font-size: 15px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--emerald) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.3l2.5 2.4L12 5.3' fill='none' stroke='%23062' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.stack { display: flex; flex-wrap: wrap; gap: 8px; }
.stack span { font-size: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); color: #cbd3ea; }
.timeline { margin-top: 36px; position: relative; }
.tl-line { position: absolute; left: 0; right: 0; top: 7px; height: 2px; background: var(--line-2); }
.tl-line i { display: block; height: 100%; width: 0; background: var(--grad-gold); transition: width 2.4s var(--ease) 0.4s; }
.timeline.in .tl-line i { width: 100%; }
.timeline ol { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(11, 1fr); gap: 6px; position: relative; }
.timeline li { padding-top: 24px; position: relative; font-size: 12px; color: var(--muted); line-height: 1.35; }
.timeline li::before { content: ""; position: absolute; top: 2px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); border: 2px solid var(--gold); }
.timeline li b { display: block; color: var(--text); font-size: 13px; }

/* ---------- 05 core ---------- */
.core-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 10px 0 0; display: grid; gap: 14px; }
.steps li { counter-increment: s; position: relative; padding: 14px 18px 14px 62px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); color: var(--muted); font-size: 15.5px; }
.steps li b { color: var(--text); }
.steps li::before { content: counter(s); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #3b2400; background: var(--grad-gold); }
.sim-wrap { max-width: 520px; width: 100%; justify-self: center; }
#sim { width: 100%; height: auto; border-radius: 28px; background: radial-gradient(circle at 50% 40%, #3a5a2c 0%, #24401f 70%, #1a2f18 100%); box-shadow: var(--shadow), 0 0 0 1px var(--line-2); }

/* ---------- 06 footage ---------- */
.phones { display: grid; grid-template-columns: repeat(3, minmax(0, 290px)); justify-content: center; gap: 40px; align-items: start; margin-top: 10px; }
.phones figure { margin: 0; }
.phones figure.raised { transform: translateY(-24px); }
.phones figure.raised.in { transform: translateY(-24px); }
.phones figcaption { margin-top: 18px; text-align: center; font-size: 14px; color: var(--muted); }
.phones figcaption b { display: block; color: var(--text); font-size: 16px; }

/* ---------- 07 loop ---------- */
.loop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.loop-ring { position: relative; max-width: 480px; width: 100%; justify-self: center; }
#loopSvg { width: 100%; height: auto; overflow: visible; }
.loop-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.loop-center img { width: 64px; animation: float 5s ease-in-out infinite; }
.loop-center b { font-family: var(--display); font-size: 24px; }
.loop-center span { color: var(--muted); font-size: 13px; }
.loop-legend { display: grid; gap: 10px; margin-top: 24px; }
.loop-legend div { display: flex; gap: 12px; align-items: center; padding: 10px 14px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); transition: all 0.4s var(--ease); font-size: 15px; color: var(--muted); }
.loop-legend div b { color: var(--text); min-width: 150px; }
.loop-legend div.active { border-color: rgba(246, 189, 72, 0.55); background: rgba(246, 189, 72, 0.09); transform: translateX(6px); }
.loop-legend div.active b { color: var(--gold-2); }
.loop-node circle.bg { fill: var(--ink-3); stroke: var(--line-2); stroke-width: 2; transition: all 0.4s; }
.loop-node.active circle.bg { fill: #2a2412; stroke: var(--gold); stroke-width: 3; filter: drop-shadow(0 0 12px rgba(246, 189, 72, 0.6)); }
.loop-node text { fill: var(--text); font: 700 13px var(--body); text-anchor: middle; paint-order: stroke; stroke: var(--ink); stroke-width: 5px; stroke-linejoin: round; }

/* ---------- 08 modes ---------- */
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-2); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.mode:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -25px rgba(74, 123, 255, 0.55); }
.mode img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.8s var(--ease); }
.mode:hover img { transform: scale(1.06); }
.mode div { padding: 14px 16px 18px; }
.mode h3 { font-size: 18px; margin-bottom: 4px; }
.mode p { font-size: 14px; color: var(--muted); }
.special-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.special-row figure { margin: 0; text-align: center; }
.special-row img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); transition: transform 0.4s var(--ease); }
.special-row figure:hover img { transform: translateY(-6px) rotate(-1.5deg); }
.special-row figcaption { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chips span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line); font-size: 14px; }
.chips span img { width: 26px; height: 26px; object-fit: contain; }
.chips.small span { font-size: 13px; padding: 6px 12px; color: #cbd3ea; }

/* ---------- 09 abilities ---------- */
.ab-layout { display: grid; grid-template-columns: 1fr 340px; gap: 34px; align-items: start; }
.ab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 12px; }
.ab-grid button { appearance: none; border: 1px solid var(--line); background: var(--panel); border-radius: 18px; padding: 8px; cursor: pointer; transition: all 0.3s var(--ease); }
.ab-grid button img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.ab-grid button:hover, .ab-grid button.active { transform: translateY(-4px) scale(1.04); border-color: var(--gold); background: rgba(246, 189, 72, 0.1); box-shadow: 0 12px 30px -12px rgba(246, 189, 72, 0.6); }
.ab-grid button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.ab-detail { position: sticky; top: 110px; padding: 28px; border-radius: 24px; border: 1px solid rgba(246, 189, 72, 0.35); background: radial-gradient(400px 240px at 50% 0%, rgba(246, 189, 72, 0.16), transparent 70%), var(--ink-2); text-align: center; min-height: 360px; }
.ab-detail img { width: 128px; height: 128px; margin: 0 auto 14px; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6)); }
.ab-detail h3 { font-family: var(--display); font-size: 28px; }
.ab-detail .fa { font-size: 17px; margin: 4px 0 12px; }
.ab-detail #abDesc { color: #d5dbee; font-size: 15.5px; }
.ab-detail.pop img { animation: pop 0.5s var(--ease); }
@keyframes pop { 0% { transform: scale(0.6) rotate(-10deg); opacity: 0; } 100% { transform: none; opacity: 1; } }

/* ---------- 10 progression ---------- */
.leagues { display: grid; grid-template-columns: repeat(11, 1fr); gap: 8px; margin: 6px 0 30px; }
.leagues figure { margin: 0; text-align: center; opacity: 0; transform: translateY(20px) scale(0.8); transition: all 0.6s var(--ease); }
.leagues.in figure { opacity: 1; transform: none; }
.leagues img { width: 100%; max-width: 86px; margin: 0 auto; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6)); transition: transform 0.3s var(--ease); }
.leagues figure:hover img { transform: translateY(-6px) scale(1.08); }
.leagues figcaption { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.leagues figcaption b { display: block; color: var(--text); font-size: 12px; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.castles, .icons-row { display: flex; align-items: flex-end; gap: 8px; height: 96px; }
.castles img { height: 100%; width: auto; }
.castles img:nth-child(1) { height: 60%; } .castles img:nth-child(2) { height: 80%; }
.icons-row img { height: 72px; width: auto; }

/* ---------- 11 liveops ---------- */
.lo-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.lo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.lo-list > div { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); }
.lo-list img { width: 70px; height: 52px; border-radius: 10px; object-fit: cover; flex: none; }
.lo-list b { display: block; font-size: 15px; }
.lo-list span { font-size: 13px; color: var(--muted); line-height: 1.35; display: block; }
.posters { position: relative; height: 440px; }
.posters img { position: absolute; width: 58%; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid var(--line-2); transition: transform 0.6s var(--ease), z-index 0s; }
.posters .p1 { left: 0; top: 30px; transform: rotate(-7deg); }
.posters .p2 { left: 21%; top: 0; transform: rotate(1deg); z-index: 2; }
.posters .p3 { right: 0; top: 50px; transform: rotate(7deg); }
.posters img:hover { transform: rotate(0) scale(1.06); z-index: 5; }
.posters .caption { position: absolute; bottom: 0; left: 0; right: 0; }

/* ---------- 12 social ---------- */
.social-grid { display: grid; grid-template-columns: 290px 1fr; gap: 40px; align-items: center; }
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.scard { padding: 20px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); transition: transform 0.4s var(--ease), border-color 0.4s; }
.scard:hover { transform: translateY(-5px); border-color: rgba(74, 123, 255, 0.5); }
.scard img { width: 46px; height: 46px; object-fit: contain; margin-bottom: 10px; }
.scard b { display: block; font-family: var(--display); font-size: 32px; color: var(--gold-2); line-height: 1.1; }
.scard span { font-size: 14px; color: var(--muted); }

/* ---------- 13 screens ---------- */
.cosm-row { display: flex; justify-content: center; }
.cosm-row img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold-3); margin-left: -16px; box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.9); background: var(--ink-3); transition: transform 0.3s var(--ease); }
.cosm-row img:first-child { margin-left: 0; }
.cosm-row img:hover { transform: translateY(-10px) scale(1.12); z-index: 2; position: relative; }
.cosm p { margin-top: 12px; font-size: 14px; }
.gallery { mask-image: linear-gradient(90deg, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); display: flex; gap: 22px; overflow-x: auto; padding: 26px 4px 16px; margin-top: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--gold-3) transparent; cursor: grab; }
.gallery.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery figure { margin: 0; flex: 0 0 210px; scroll-snap-align: start; }
.gallery figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.gallery .phone { border-radius: 26px; padding: 7px; }
.gallery .phone img { border-radius: 20px; pointer-events: none; }

/* ---------- KPIs ---------- */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.mini { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); }
.mini img { width: 48px; height: 48px; object-fit: contain; }
.mini b { display: block; font-family: var(--display); font-size: 28px; color: var(--gold-2); line-height: 1.1; }
.mini > div > span { font-size: 14px; color: var(--muted); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.kpi { padding: 26px 22px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); position: relative; overflow: hidden; }
.kpi::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) 0.3s; }
.kpi.in::before { transform: scaleX(1); }
.k-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); min-height: 2.8em; }
.kpi b { display: block; font-family: var(--display); font-size: clamp(44px, 4.8vw, 64px); line-height: 1.1; margin: 8px 0; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi b small { font-size: 0.4em; }
.k-note { font-size: 13.5px; color: var(--dim); }

/* ---------- charts ---------- */
.chart-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.chart-kpis { display: flex; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.chart-kpis div { padding: 12px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.chart-kpis b { display: block; font-family: var(--display); font-size: 22px; color: var(--gold-2); }
.chart-kpis span { font-size: 12.5px; color: var(--muted); }
.chart { position: relative; width: 100%; padding: 18px 18px 8px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(14, 21, 48, 0.8), rgba(14, 21, 48, 0.4)); }
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart .grid line { stroke: rgba(255, 255, 255, 0.07); }
.chart .axis text { fill: var(--dim); font: 500 11px var(--body); }
.chart .bar { fill: url(#gBar); transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(0); transition: transform 1s var(--ease), opacity 0.2s; }
.chart.in .bar { transform: scaleY(1); }
.chart .bar.dim { opacity: 0.45; }
.chart .bar.peak { fill: url(#gBarGold); }
.chart .val { fill: var(--text); font: 700 11px var(--body); text-anchor: middle; opacity: 0; transition: opacity 0.3s; }
.chart.in .val { opacity: 1; transition-delay: 1.2s; }
.chart .hit { fill: transparent; cursor: pointer; }
.chart .line { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.chart .area { fill: url(#gArea); opacity: 0; transition: opacity 1s 1s; }
.chart.in .area { opacity: 1; }
.chart .dot { fill: var(--ink); stroke: var(--gold); stroke-width: 3; }
.chart .cursor { stroke: rgba(255, 255, 255, 0.35); stroke-dasharray: 3 4; }
.chart .ann line { stroke: var(--royal-2); stroke-dasharray: 2 4; }
.chart .ann text { fill: var(--royal-2); font: 600 11px var(--body); }
.chart .legend text { fill: var(--muted); font: 600 12px var(--body); }
.tip { position: absolute; pointer-events: none; z-index: 5; padding: 8px 12px; border-radius: 10px; background: #0b1226; border: 1px solid rgba(246, 189, 72, 0.55); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); font-size: 13px; white-space: nowrap; opacity: 0; transform: translate(-50%, -110%); transition: opacity 0.15s; }
.tip b { color: var(--gold-2); font-size: 15px; display: block; }
.tip.show { opacity: 1; }
.two-charts { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.chart-title { font-size: 15px; font-weight: 600; color: var(--muted); margin-bottom: 10px; font-family: var(--body); }

/* ---------- retention ---------- */
.ret-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why h3 { font-family: var(--display); font-size: 20px; margin: 0 0 12px; }
.why h3:not(:first-child) { margin-top: 24px; }
.reasons, .fixes { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.reasons li, .fixes li { padding: 12px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.reasons li b { color: var(--text); }
.reasons li { border-left: 3px solid var(--crimson); }
.fixes li { border-left: 3px solid var(--emerald); color: #d5dbee; }

/* ---------- ask ---------- */
.ask-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.ask-card { position: relative; padding: 30px 26px; border-radius: 24px; border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--panel-2), var(--panel)); overflow: hidden; transition: transform 0.4s var(--ease); }
.ask-card:hover { transform: translateY(-6px); }
.ask-card .num { font-family: var(--display); font-size: 88px; font-weight: 800; line-height: 1; color: rgba(255, 255, 255, 0.05); position: absolute; right: 16px; bottom: -8px; }
.ask-card h3 { font-size: 22px; margin: 6px 0 10px; font-family: var(--display); }
.ask-card p { color: var(--muted); font-size: 15.5px; }
.ask-card.hl { border-color: rgba(246, 189, 72, 0.55); background: radial-gradient(420px 220px at 100% 0%, rgba(246, 189, 72, 0.2), transparent 70%), linear-gradient(180deg, var(--panel-2), var(--panel)); }
.bring { margin-top: 30px; }
.bring h3 { font-family: var(--display); font-size: 18px; color: var(--muted); letter-spacing: 0.06em; }
.bring .chips { margin-top: 12px; }

/* ---------- roadmap ---------- */
.road { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 40px; }
.road-line { position: absolute; top: 12px; left: 0; right: 0; height: 4px; border-radius: 4px; background: var(--line-2); }
.road-line i { display: block; height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg, var(--royal), var(--gold)); transition: width 2.2s var(--ease) 0.3s; box-shadow: 0 0 16px rgba(246, 189, 72, 0.5); }
.road.in .road-line i { width: 100%; }
.phase { position: relative; padding: 26px 24px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.phase::before { content: ""; position: absolute; top: -36px; left: 24px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); border: 4px solid var(--gold); box-shadow: 0 0 0 6px rgba(246, 189, 72, 0.12); }
.when { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #231500; background: var(--grad-gold); padding: 4px 10px; border-radius: 999px; }
.phase h3 { font-family: var(--display); font-size: 24px; margin: 14px 0 12px; }
.phase ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; display: grid; gap: 6px; }
.phase li::marker { color: var(--gold); }

/* ---------- close ---------- */
.close .hero-veil { background: radial-gradient(circle at 50% 50%, rgba(8, 13, 28, 0.55), rgba(8, 13, 28, 0.95) 70%); }
.close-logo { width: min(340px, 70%); margin: 0 auto 26px; filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.7)); animation: float 6s ease-in-out infinite; }
.close .lead { margin: 0 auto; }
.cta { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 26px; border-radius: 14px; font-weight: 700; text-decoration: none; color: #2a1800; background: var(--grad-gold); box-shadow: 0 12px 30px -10px rgba(246, 189, 72, 0.7); transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); box-shadow: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .mode-grid { grid-template-columns: repeat(2, 1fr); }
  .special-row { grid-template-columns: repeat(4, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .leagues { grid-template-columns: repeat(6, 1fr); row-gap: 16px; }
  .timeline ol { grid-template-columns: repeat(6, 1fr); row-gap: 18px; }
  .tl-line { display: none; }
}
@media (max-width: 900px) {
  html { scroll-snap-type: none; }
  .wrap { padding: 0 20px; }
  .dots { display: none; }
  .topbar { padding: 12px 16px; }
  .slide { padding: 84px 0 60px; min-height: auto; }
  .hero { min-height: 100svh; }
  .hero-grid, .founder-grid, .solo-grid, .core-grid, .loop-grid, .lo-grid, .ret-grid, .social-grid, .ab-layout, .two-charts { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-phone { max-width: 260px; }
  .featured, .prog-grid, .ask-grid, .road { grid-template-columns: 1fr; }
  .road-line { display: none; }
  .phase::before { display: none; }
  .phones { grid-template-columns: repeat(3, 76%); overflow-x: auto; justify-content: start; scroll-snap-type: x mandatory; padding-bottom: 12px; gap: 20px; }
  .phones figure { scroll-snap-align: center; }
  .phones figure.raised, .phones figure.raised.in { transform: none; }
  .social-grid .social-shot { max-width: 250px; margin: 0 auto; }
  .ab-detail { position: static; min-height: 0; }
  .posters { height: 380px; }
  .timeline ol { grid-template-columns: repeat(3, 1fr); }
  .cosm-row img { width: 58px; height: 58px; margin-left: -18px; }
  .cosm-row img:nth-child(n+8) { display: none; }
  .lo-list { grid-template-columns: 1fr; }
  .special-row { grid-template-columns: repeat(3, 1fr); }
  .leagues { grid-template-columns: repeat(4, 1fr); }
  .bigstat { padding: 16px 18px; }
}
@media (max-width: 520px) {
  .mode-grid, .social-cards { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .solo-stats { grid-template-columns: 1fr 1fr; }
  .chart { padding: 10px 8px 4px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], .leagues figure { opacity: 1; transform: none; }
}
