/* ============================================================
   THEME B - "Duel Report" : light editorial review, graphite + indigo
   ============================================================ */
:root {
  --bg: #f3f4f8;
  --bg-2: #eaecf3;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --border: #e4e7ef;
  --border-2: #d2d7e3;
  --fg: #191c2b;
  --muted: #545a6b;
  --faint: #888ea0;
  --accent: #4f46e5;
  --accent-ink: #ffffff;
  --accent-2: #8b5cf6;
  --good: #10b981;
  --warn: #d97706;
  --bad: #e5484d;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 46px -30px rgba(25, 28, 43, 0.42);
  --shadow-glow: 0 12px 32px -18px rgba(79, 70, 229, 0.3);
  --maxw: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background:
    radial-gradient(920px 520px at 88% -12%, rgba(139, 92, 246, 0.1), transparent 60%),
    radial-gradient(760px 460px at 6% 2%, rgba(79, 70, 229, 0.07), transparent 55%),
    var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-locked { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.16; letter-spacing: -0.01em; margin: 0 0 0.5rem; font-weight: 700; }
p { margin: 0 0 1rem; }
b, strong { color: var(--fg); font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--fg); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip:focus { left: 0; }

.ic { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); background: rgba(243, 244, 248, 0.82); border-bottom: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; }
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: 0 6px 24px -20px rgba(25, 28, 43, 0.45); }
.site-header__inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 8px 18px rgba(79, 70, 229, 0.26)); transition: transform 0.2s ease; }
.brand__mark .logo { display: block; width: 100%; height: 100%; }
.brand:hover .brand__mark { transform: translateY(-1px) rotate(-4deg); }
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); }
.brand__name i { font-style: normal; color: var(--accent); }
.brand__sub { font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }
.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; flex-wrap: nowrap; gap: 2px; margin: 0; padding: 0; }
.nav__link { display: inline-block; white-space: nowrap; padding: 8px 10px; border-radius: 7px; font-size: 0.9rem; font-weight: 600; color: var(--muted); transition: color 0.15s, background 0.15s; }
.nav__link:hover { color: var(--fg); background: rgba(79, 70, 229, 0.07); }
.nav__link.is-active { color: var(--accent); }
.site-header__cta { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.site-header__cta .btn { padding: 9px 16px; font-size: 0.9rem; }
.nav-toggle { display: none; width: 42px; height: 40px; border: 1px solid var(--border-2); border-radius: 8px; background: transparent; cursor: pointer; padding: 0; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--fg); border-radius: 2px; transition: 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 8px; font-weight: 700; font-size: 0.98rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s; white-space: nowrap; }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 26px -12px rgba(79, 70, 229, 0.6); }
.btn--primary:hover { transform: translateY(-2px); background: #4338ca; box-shadow: 0 16px 34px -14px rgba(79, 70, 229, 0.7); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(79, 70, 229, 0.05); }
.btn--wide { width: 100%; justify-content: center; }
.btn__go { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.btn__ic { width: 13px; height: 13px; fill: currentColor; stroke: none; margin-left: 1px; }
.btn--ghost .btn__go { background: rgba(25, 28, 43, 0.08); }

/* ---------- sections + headings ---------- */
.sec { padding: 66px 0; }
.sec--tight { padding: 42px 0; }
.sec--alt { background: var(--bg-2); }
.eyebrow { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.7rem; font-family: var(--sans); }
.head { margin-bottom: 34px; max-width: 760px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head__title { display: flex; align-items: center; gap: 14px; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 0; }
.head--center .head__title { justify-content: center; }
.head__bar { flex: none; width: 5px; height: 1.05em; border-radius: 2px; background: var(--accent); }
.head__lede { color: var(--muted); font-size: 1.08rem; margin: 0.9rem 0 0; font-family: var(--sans); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 62px 0 32px; }
.hero__grid { display: grid; gap: 40px; align-items: center; }
.hero--split .hero__grid { grid-template-columns: 1.12fr 0.88fr; }
.hero__kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--border-2); background: var(--surface); padding: 6px 12px; border-radius: 999px; margin: 0 0 1.1rem; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 3.7rem); line-height: 1.06; margin: 0 0 1.1rem; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lede { color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin: 0 0 1.6rem; font-family: var(--sans); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.4rem; }
.hero__checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0; padding: 0; }
.hero__checks li { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.hero__check { color: var(--accent); width: 1.1em; height: 1.1em; }
.hero__aside { display: grid; place-items: center; }

/* promo card */
.promo { position: relative; width: 100%; max-width: 360px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); overflow: hidden; }
.promo::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.promo__badge { display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 6px 0 8px; }
.promo__big { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: var(--fg); }
.promo__sub { display: block; color: var(--muted); margin: 8px 0 14px; font-size: 0.96rem; }
.promo__rows { list-style: none; margin: 0; padding: 14px 0 0; border-top: 1px solid var(--border); display: grid; gap: 9px; }
.promo__rows li { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--muted); }
.promo__rows b { color: var(--accent); }
.promo__foot { display: block; margin-top: 14px; font-size: 0.8rem; color: var(--faint); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow-glow); }
.stat { text-align: center; padding: 16px 6px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat__val { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.05rem); font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
.stat__label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-top: 4px; }

/* ---------- feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s; }
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--accent); opacity: 0; transition: opacity 0.18s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(79, 70, 229, 0.1); color: var(--accent); margin-bottom: 14px; }
.card__icon .ic { width: 24px; height: 24px; }
.card__title { font-size: 1.2rem; }
.card__text { color: var(--muted); font-size: 0.98rem; margin: 0; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--accent); font-weight: 700; font-size: 0.92rem; font-family: var(--sans); }
.card__linkic { width: 12px; height: 12px; fill: currentColor; stroke: none; }
.card__link:hover { text-decoration: underline; }

/* ---------- pros / cons ---------- */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pc__col { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: var(--surface); }
.pc__col--pro { border-top: 3px solid var(--good); }
.pc__col--con { border-top: 3px solid var(--warn); }
.pc__title { font-size: 1.1rem; margin-bottom: 14px; }
.pc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.pc__list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 0.97rem; }
.pc__ic { width: 20px; height: 20px; flex: none; margin-top: 2px; padding: 3px; border-radius: 50%; }
.pc__ic--pro { color: var(--good); background: rgba(16, 185, 129, 0.12); }
.pc__ic--con { color: var(--warn); background: rgba(217, 119, 6, 0.14); }

/* ---------- rating ---------- */
.rating { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.rating__score { text-align: center; padding: 16px; border-radius: 12px; background: var(--fg); color: #fff; }
.rating__num { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.rating__of { color: rgba(255, 255, 255, 0.6); font-weight: 700; }
.rating__stars { display: flex; justify-content: center; gap: 2px; margin: 10px 0 6px; color: var(--accent); }
.rating__stars .ic { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.rating__cap { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); font-family: var(--sans); }
.rating__bars { display: grid; gap: 13px; }
.rbar__top { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--muted); margin-bottom: 5px; font-family: var(--sans); }
.rbar__top b { color: var(--fg); }
.rbar__track { height: 8px; border-radius: 999px; background: rgba(25, 28, 43, 0.08); overflow: hidden; }
.rbar__fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.rating__note { grid-column: 1 / -1; margin: 0; color: var(--faint); font-size: 0.9rem; font-family: var(--sans); }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.step { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.step__n { flex: none; font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: #fff; background: var(--fg); width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; }
.step__title { font-size: 1.1rem; margin-bottom: 4px; }
.step__text { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- table ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.table { width: 100%; border-collapse: collapse; min-width: 520px; }
.table th, .table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.table th { background: var(--surface-2); color: var(--fg); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--sans); }
.table td { color: var(--muted); }
.table tr:last-child td { border-bottom: none; }
.table b { color: var(--accent); }

/* ---------- videos ---------- */
.videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vid { display: flex; flex-direction: column; gap: 8px; }
.vid__thumb { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius-sm); display: grid; place-items: center; overflow: hidden; border: 1px solid var(--border); }
.vid__thumb--1 { background: linear-gradient(135deg, #262b40, #3a4266); }
.vid__thumb--2 { background: linear-gradient(135deg, #35296b, #5b4bd0); }
.vid__thumb--3 { background: linear-gradient(135deg, #1f2740, #34407a); }
.vid__thumb--4 { background: linear-gradient(135deg, #2a2140, #4b3a8c); }
.vid__play { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.35); transition: transform 0.18s, background 0.18s; }
.vid__play .ic { fill: currentColor; stroke: none; width: 18px; height: 18px; margin-left: 2px; }
.vid:hover .vid__play { transform: scale(1.1); background: var(--accent); color: #fff; }
.vid__time { position: absolute; right: 8px; bottom: 8px; font-size: 0.74rem; font-weight: 700; background: rgba(0, 0, 0, 0.6); color: #fff; padding: 2px 7px; border-radius: 6px; }
.vid__title { font-size: 0.92rem; font-weight: 600; color: var(--fg); line-height: 1.35; }
.vid__meta { font-size: 0.78rem; color: var(--faint); }

/* featured video */
.fvid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); }
.fvid__stage { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); background: linear-gradient(135deg, #1c2030, #2b3350); display: grid; place-items: center; overflow: hidden; }
.fvid__play { position: relative; z-index: 1; display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: var(--accent); color: #fff; box-shadow: 0 12px 30px -10px rgba(79, 70, 229, 0.6); transition: transform 0.18s; }
.fvid__play .ic { fill: currentColor; stroke: none; width: 26px; height: 26px; margin-left: 3px; }
.fvid__stage:hover .fvid__play { transform: scale(1.08); }
.fvid__stage--img { background: #191c2b; }
.fvid__stage--img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 23, 35, 0.1), rgba(20, 23, 35, 0.42)); z-index: 0; }
.fvid__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fvid__stage--img:hover .fvid__img { transform: scale(1.03); }
.fvid__title { font-size: 1.4rem; }
.fvid__text { color: var(--muted); margin-bottom: 0.6rem; }
.fvid__meta { color: var(--faint); font-size: 0.85rem; margin-bottom: 1rem; font-family: var(--sans); }

/* ---------- faq ---------- */
.faqgroup { margin-bottom: 26px; }
.faqgroup__title { font-size: 1.2rem; color: var(--fg); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }
.faqgroup__items { display: grid; gap: 10px; }
.faq { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq[open] { box-shadow: var(--shadow-glow); }
.faq__q { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; font-weight: 700; color: var(--fg); font-size: 1rem; font-family: var(--serif); }
.faq__q::-webkit-details-marker { display: none; }
.faq__mark { position: relative; flex: none; width: 16px; height: 16px; }
.faq__mark::before, .faq__mark::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform 0.2s; }
.faq__mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__mark::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq[open] .faq__mark::after { transform: scaleY(0); }
.faq__a { padding: 0 20px 18px; color: var(--muted); font-size: 0.97rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- coins ---------- */
.coins { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.coin { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 18px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; }
.coin__sym { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--accent); letter-spacing: -0.01em; }
.coin__name { font-size: 0.9rem; color: var(--fg); font-weight: 600; }
.coin__tag { font-size: 0.74rem; color: var(--good); font-weight: 700; }

/* ---------- callout ---------- */
.callout { border-radius: var(--radius); padding: 18px 22px; font-size: 0.98rem; color: var(--muted); border: 1px solid var(--border); background: var(--surface); }
.callout b { color: var(--fg); }
.callout--info { border-left: 4px solid var(--accent); }
.callout--warn { border-left: 4px solid var(--warn); }

/* ---------- cta band ---------- */
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: var(--fg); color: #fff; border-radius: 14px; padding: 34px 38px; }
.cta-band__title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; color: #fff; }
.cta-band__text { color: rgba(255, 255, 255, 0.75); margin: 0.5rem 0 0; font-family: var(--sans); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band__actions .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.cta-band__actions .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ---------- prose ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.65rem; margin: 2rem 0 0.8rem; }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 0.6rem; color: var(--fg); }
.prose p, .prose li { color: var(--muted); font-family: var(--sans); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--accent); text-decoration: underline; }

/* generic grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stack > * + * { margin-top: 26px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 54px 0 30px; margin-top: 20px; }
.foot__top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.foot__tag { color: var(--muted); margin: 12px 0 16px; max-width: 34ch; font-family: var(--sans); }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__h { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 12px; font-family: var(--sans); }
.foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot__col a { color: var(--muted); font-size: 0.94rem; }
.foot__col a:hover { color: var(--accent); }
.foot__legal { padding-top: 24px; }
.foot__rg { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.9rem; font-family: var(--sans); }
.foot__rgic { color: var(--accent); width: 20px; height: 20px; flex: none; margin-top: 2px; }
.foot__rg a { color: var(--accent); text-decoration: underline; }
.foot__disc { color: var(--faint); font-size: 0.82rem; margin-top: 10px; font-family: var(--sans); }

/* ---------- sticky mobile cta ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--border-2); box-shadow: var(--shadow); transform: translateY(140%); transition: transform 0.3s; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__text b { font-size: 0.95rem; }
.sticky-cta__text span { font-size: 0.78rem; color: var(--muted); }
.sticky-cta .btn { padding: 11px 18px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal].is-in { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- artwork ---------- */
.hero__art { width: 100%; max-width: 460px; margin: 0 auto; }
.art { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 44px rgba(25, 28, 43, 0.28)); }
.art__bg { fill: #191c2b; }
.art__glow { fill: var(--accent); opacity: 0.22; }
.art__line { stroke: var(--accent); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.art__dot { fill: var(--accent); }
.art__card { fill: #ffffff; stroke: rgba(255, 255, 255, 0.25); stroke-width: 1.5; }
.art__card--2 { fill: #e7e9fb; }
.art__pip { fill: var(--accent-2); }
.art__pip2 { stroke: var(--accent); stroke-width: 4; }
.art__pipdot { fill: var(--accent-2); }
.art__cardnum { fill: #191c2b; font: 700 34px/1 var(--serif); }
.art__chip { fill: var(--accent); }
.art__chipinner { stroke: rgba(255, 255, 255, 0.55); stroke-width: 3; }
.art__chipnotch { fill: #191c2b; }
.art__coin { fill: var(--accent-2); }
.art__coinsym { fill: #fff; font: 700 30px/1 var(--serif); }
.art__frame { stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.5; }
.coin__icon { display: block; width: 42px; height: 42px; margin: 0 auto 2px; }
.cglyph { width: 100%; height: 100%; display: block; }
.cglyph__disc { fill: rgba(79, 70, 229, 0.1); stroke: var(--accent); stroke-width: 1.5; }
.cglyph__sym { fill: var(--accent); font: 700 18px/1 var(--serif); }

/* ---------- game tiles ---------- */
.gtiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gtile { display: flex; flex-direction: column; gap: 10px; text-decoration: none; }
.gtile__frame { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); background: #1c2030; display: grid; place-items: center; box-shadow: var(--shadow); }
.gtile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gtile__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20, 23, 35, 0.45)); opacity: 0; transition: opacity 0.2s; }
.gtile:hover .gtile__frame::after { opacity: 1; }
.gtile__play { position: relative; z-index: 1; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; opacity: 0; transform: scale(0.82); transition: opacity 0.2s, transform 0.2s; box-shadow: 0 12px 30px -8px rgba(79, 70, 229, 0.5); }
.gtile__play .ic { fill: currentColor; stroke: none; width: 20px; height: 20px; margin-left: 3px; }
.gtile:hover .gtile__img { transform: scale(1.05); }
.gtile:hover .gtile__play { opacity: 1; transform: scale(1); }
.gtile__meta { display: flex; flex-direction: column; gap: 2px; }
.gtile__name { font-size: 0.92rem; font-weight: 700; color: var(--fg); line-height: 1.3; }
.gtile__tag { font-size: 0.73rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- related links ---------- */
.related__intro { margin-bottom: 22px; }
.related__kicker { display: inline-block; font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.related__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.05rem); margin: 0; }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rel { display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s; }
.rel:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.rel__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: rgba(79, 70, 229, 0.1); color: var(--accent); margin-bottom: 4px; }
.rel__ic .ic { width: 22px; height: 22px; }
.rel__name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--fg); }
.rel__desc { color: var(--muted); font-size: 0.94rem; font-family: var(--sans); }
.rel__go { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 0.86rem; font-family: var(--sans); padding-top: 8px; }
.rel__goic { width: 11px; height: 11px; fill: currentColor; stroke: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) { .brand__sub { display: none; } }
@media (max-width: 960px) {
  .rating { grid-template-columns: 1fr; }
  .fvid { grid-template-columns: 1fr; }
  .cards, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .videos, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gtiles { grid-template-columns: repeat(3, 1fr); }
  .related__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 70px 0 0; margin: 0; background: rgba(243, 244, 248, 0.99); backdrop-filter: blur(14px); transform: translateX(100%); transition: transform 0.28s; padding: 20px; overflow-y: auto; }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-toggle { display: flex; }
  .site-header__cta .btn { display: none; }
  .hero--split .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { order: -1; }
  .sticky-cta { display: flex; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .sec { padding: 46px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .cards, .grid-3, .pc, .steps, .grid-2, .videos, .grid-4 { grid-template-columns: 1fr; }
  .coins { grid-template-columns: repeat(2, 1fr); }
  .gtiles { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { padding: 26px 22px; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); }
}
