/* ============================================================
   Zupee Editorial — Factory V9 FSL11
   Palette: 33_LIGHT_COLOR_SYSTEM_24 / 001 Ice Blue Editorial
   Typography: 08_TYPOGRAPHY_SYSTEM_50 / 035 Nunito Sans + Noto Sans Devanagari
   Layout: 04_LAYOUT_VARIANTS_150 / 096 Premium Review
   Homepage: 05_HOMEPAGE_VARIANTS_150 / 051 trust-first
   Menu: 06_MENU_SYSTEM_100 / 047
   CTA: 10_CTA_SYSTEM / 033 instant-withdrawal angle
   Visual contract: sidebar-led / sidebar-stream / soft-modular / full-bleed
   Signature device: layered-photo-notes
   ============================================================ */

:root {
  /* Ice Blue Editorial */
  --primary: #1769E8;
  --primary-dark: #0F4FB1;
  --accent: #0EA5A8;
  --background: #F4F8FF;
  --surface: #FFFFFF;
  --surface-2: #E8F1FF;
  --surface-3: #DCE7F8;
  --text: #13213A;
  --text-2: #2A3A56;
  --muted: #52647C;
  --muted-2: #7A8BA5;
  --border: #C9D9F2;
  --border-2: #B6C7E5;
  --success: #1F7A4C;
  --warn: #B5651D;
  --danger: #B33A3A;
  --ink: #0B1726;
  --gold: #B98A2A;     /* restrained spotlight only */
  --soft-shadow: 0 1px 2px rgba(19, 33, 58, 0.06), 0 4px 16px rgba(19, 33, 58, 0.06);
  --soft-shadow-lg: 0 2px 4px rgba(19, 33, 58, 0.08), 0 12px 28px rgba(19, 33, 58, 0.10);

  /* Typography: Nunito Sans + Noto Sans Devanagari */
  --font-sans: 'Nunito Sans', 'Noto Sans Devanagari', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-devanagari: 'Noto Sans Devanagari', 'Nunito Sans', system-ui, sans-serif;

  /* Sizing */
  --container: 1180px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --gap: 18px;
  --gap-lg: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Z scale */
  --z-header: 60;
  --z-mobile-drawer: 70;
  --z-sticky-cta: 80;
  --z-modal: 100;
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--surface-2); }
a { color: var(--primary); text-decoration: none; text-underline-offset: 2px; }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-6) 0; }
::selection { background: rgba(23, 105, 232, 0.18); color: var(--text); }

/* ----------  Typography scale  ---------- */
h1, h2, h3, h4 {
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.015em; }
h2 { font-size: 32px; line-height: 1.15; }
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 var(--space-4); }
.devanagari, [lang="hi"] { font-family: var(--font-devanagari); }
small { color: var(--muted); font-size: 13px; }

/* ----------  Container  ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }

/* ----------  Skip link  ---------- */
.skip-link {
  position: absolute; top: -40px; left: 8px; background: var(--ink);
  color: #fff; padding: 10px 14px; border-radius: 6px;
  font-size: 14px; z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   HEADER + NAVIGATION (minimal-sticky, persistent on scroll)
   ============================================================ */
.site-header {
  position: sticky; top: 0;
  z-index: var(--z-header);
  background: rgba(244, 248, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-bar { height: 64px; display: flex; align-items: center; gap: 24px; }
.brand-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 800; }
.brand-mark .brand-glyph {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(23, 105, 232, 0.28);
}
.brand-mark .brand-name { font-size: 19px; line-height: 1; }
.brand-mark .brand-tag {
  font-size: 10.5px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.16em; font-weight: 600;
}

.primary-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.primary-nav > li { list-style: none; position: relative; }
.primary-nav > li > a {
  display: block; padding: 10px 12px; color: var(--text-2); font-weight: 600;
  font-size: 14.5px; border-radius: 8px; transition: background 0.15s, color 0.15s;
  text-decoration: none; white-space: nowrap;
}
.primary-nav > li > a:hover { background: var(--surface-2); color: var(--primary); }
.primary-nav > li > a[aria-current="page"] { color: var(--primary); background: var(--surface-2); }
.primary-nav .has-kid > a::after { content: "▾"; margin-left: 5px; font-size: 11px; opacity: 0.7; }
.primary-nav .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--soft-shadow-lg);
  padding: 8px; display: none; list-style: none; z-index: 1;
}
.primary-nav .has-kid:hover .sub-menu,
.primary-nav .has-kid:focus-within .sub-menu { display: block; }
.primary-nav .sub-menu a { display: block; padding: 8px 12px; border-radius: 7px; color: var(--text-2); font-weight: 500; font-size: 14px; }

.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header-cta .btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--primary);
  padding: 8px 14px; border-radius: 9px; background: transparent;
}
.header-cta .btn-ghost:hover { background: var(--surface-2); }
.header-cta .btn-primary { font-size: 14px; font-weight: 700; }

.hamburger {
  display: none; appearance: none; background: transparent; border: 0;
  width: 44px; height: 44px; padding: 0; margin-left: auto; position: relative;
}
.hamburger .bars { display: block; width: 22px; height: 16px; margin: 0 auto; position: relative; }
.hamburger .bars::before,
.hamburger .bars::after,
.hamburger .bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s, top 0.25s ease;
}
.hamburger .bars::before { top: 0; }
.hamburger .bars span { top: 7px; }
.hamburger .bars::after { bottom: 0; top: auto; }
.hamburger[aria-expanded="true"] .bars::before { top: 7px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .bars span { opacity: 0; }
.hamburger[aria-expanded="true"] .bars::after { top: 7px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .primary-nav, .header-cta .btn-ghost { display: none; }
  .hamburger { display: block; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--background);
  z-index: var(--z-mobile-drawer);
  overflow-y: auto;
  padding: 24px 20px 120px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0 0 16px; }
.mobile-drawer ul li { border-bottom: 1px solid var(--border); }
.mobile-drawer ul a {
  display: block; padding: 14px 4px; color: var(--text);
  font-size: 18px; font-weight: 600; text-decoration: none;
}
.mobile-drawer .drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.mobile-drawer .drawer-foot {
  margin-top: 28px; padding-top: 18px; border-top: 1px dashed var(--border);
  font-size: 13px; color: var(--muted);
}

/* ============================================================
   HERO — sidebar-led (headline feed on the left, method column on the right)
   ============================================================ */
.hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(14, 165, 168, 0.10), transparent 70%),
    radial-gradient(700px 360px at 0% 100%, rgba(23, 105, 232, 0.10), transparent 70%),
    var(--background);
  border-bottom: 1px solid var(--border);
}
.hero .container { display: grid; grid-template-columns: minmax(0, 2.05fr) minmax(0, 1fr); gap: 36px; align-items: start; }
@media (max-width: 900px) {
  .hero { padding: 28px 0 36px; }
  .hero .container { grid-template-columns: 1fr; gap: 24px; }
}
.hero-left h1 {
  font-size: 56px; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 14px;
}
@media (max-width: 700px) { .hero-left h1 { font-size: 34px; } }
.hero-left h1 .accent { color: var(--primary); }
.hero-lede {
  font-size: 18px; color: var(--text-2); line-height: 1.6; max-width: 56ch;
  margin-bottom: 22px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-cta .btn { white-space: nowrap; }
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px;
}
.hero-meta .pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; color: var(--text-2); font-weight: 600; }
.hero-meta .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; }
.hero-meta .pill.warn .dot { background: var(--warn); }
.hero-meta .pill.muted .dot { background: var(--muted-2); }

.hero-right { position: sticky; top: 80px; display: grid; gap: 16px; }
@media (max-width: 900px) { .hero-right { position: static; } }
.hero-trust {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--soft-shadow);
}
.hero-trust h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 10px; font-weight: 700; }
.hero-trust ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-trust li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.45; }
.hero-trust .ico { width: 22px; height: 22px; display: grid; place-items: center; color: var(--primary); font-weight: 800; font-size: 14px; border-radius: 6px; background: var(--surface-2); }

.hero-stat {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px;
}
.hero-stat .stat-row { display: flex; align-items: baseline; gap: 6px; color: var(--text); }
.hero-stat .stat-row b { font-size: 26px; font-weight: 800; }
.hero-stat .stat-row small { color: var(--muted); font-weight: 600; }
.hero-stat p { margin: 6px 0 0; font-size: 13.5px; color: var(--muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; text-decoration: none; white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.05s;
}
.btn-primary {
  background: var(--primary); color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(23, 105, 232, 0.22);
}
.btn-primary:hover { background: var(--primary-dark); color: #FFFFFF; border-color: var(--primary-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: var(--surface); color: var(--primary);
  border-color: var(--border-2);
}
.btn-secondary:hover { background: var(--surface-2); color: var(--primary-dark); }
.btn-ghost {
  background: transparent; color: var(--primary);
}
.btn-ghost:hover { background: var(--surface-2); }
.btn-small { padding: 9px 14px; font-size: 14px; }
.btn-tiny { padding: 7px 12px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============================================================
   TRUST STRIP (family B — inline pill band)
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .strip-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.trust-strip .stamps { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-strip .stamps span {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2);
  background: var(--surface-2); border-radius: 999px; padding: 6px 12px; font-weight: 600;
}
.trust-strip .stamps span svg { width: 16px; height: 16px; }
.trust-strip .strip-meta { font-size: 13px; color: var(--muted); }
.trust-strip .strip-meta strong { color: var(--text); }

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section { padding: 56px 0; }
.section.tight { padding: 40px 0; }
.section.flush { padding: 0 0 56px; }
.section-head { margin-bottom: 28px; }
.section-head .lead {
  font-size: 17px; color: var(--text-2); max-width: 68ch; margin: 0;
}
.section-divider {
  height: 1px; background: linear-gradient(to right, transparent, var(--border) 18%, var(--border) 82%, transparent);
  margin: 0;
}

/* ============================================================
   HEADLINE FEED (family A — sidebar-stream card list)
   ============================================================ */
.feed-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .feed-grid { grid-template-columns: 1fr; } }

.feature-story {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--soft-shadow);
}
.feature-story .photo-wrap { position: relative; aspect-ratio: 16 / 9; background: var(--surface-2); overflow: hidden; }
.feature-story .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-story .badge {
  position: absolute; top: 14px; left: 14px; background: rgba(11, 23, 38, 0.85); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.feature-story .body { padding: 22px 22px 24px; }
.feature-story h2 { font-size: 28px; margin: 6px 0 10px; line-height: 1.18; }
.feature-story h2 a { color: var(--text); text-decoration: none; }
.feature-story h2 a:hover { color: var(--primary); }
.feature-story .lede { color: var(--text-2); font-size: 16.5px; line-height: 1.55; margin: 0 0 12px; }
.feature-story .byline { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.feature-story .layered-note {
  background: var(--surface-2); border-left: 3px solid var(--accent); padding: 10px 14px;
  font-size: 13.5px; color: var(--text-2); border-radius: 0 8px 8px 0; margin-top: 14px;
  font-style: italic;
}

.feed-rail { display: grid; gap: 14px; }
.feed-rail .feed-card {
  display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px; text-decoration: none; color: var(--text);
  transition: border-color 0.15s, transform 0.05s;
}
.feed-rail .feed-card:hover { border-color: var(--primary); }
.feed-rail .feed-card .thumb { aspect-ratio: 1 / 1; background: var(--surface-2); border-radius: 8px; overflow: hidden; }
.feed-rail .feed-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-rail .feed-card .tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 4px;
}
.feed-rail .feed-card h3 { font-size: 15.5px; line-height: 1.3; margin: 0 0 4px; color: var(--text); }
.feed-rail .feed-card:hover h3 { color: var(--primary); }
.feed-rail .feed-card time { font-size: 12px; color: var(--muted); }
.feed-rail .feed-card .layered-note {
  grid-column: 1 / -1; font-size: 12.5px; color: var(--muted);
  padding: 8px 10px; background: var(--surface-2); border-radius: 6px;
  border-left: 2px solid var(--accent); margin-top: 4px;
}

/* ============================================================
   PRIMARY FEATURE (family C — editorial split)
   ============================================================ */
.split-feature {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px; align-items: center; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--soft-shadow);
}
@media (max-width: 800px) { .split-feature { grid-template-columns: 1fr; padding: 24px; } }
.split-feature .photo-frame {
  aspect-ratio: 4 / 5; background: var(--surface-2); border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.split-feature .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.split-feature .photo-frame .note {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(244, 248, 255, 0.92); padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--text-2); border-left: 3px solid var(--accent);
  font-style: italic;
}
.split-feature h2 { font-size: 30px; margin-bottom: 14px; }
.split-feature h2 .devanagari { display: block; font-size: 22px; color: var(--primary); margin-top: 6px; font-weight: 600; }
.split-feature p { color: var(--text-2); }
.split-feature .key-facts {
  display: grid; gap: 12px; margin: 18px 0;
}
.split-feature .key-facts div {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px;
  padding: 10px 14px; background: var(--surface-2); border-radius: 10px;
}
.split-feature .key-facts b { color: var(--primary); font-size: 18px; }

/* ============================================================
   TOPIC MATRIX (family D — soft-modular grid)
   ============================================================ */
.topic-matrix {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .topic-matrix { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .topic-matrix { grid-template-columns: 1fr; } }
.topic-tile {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: grid; gap: 10px; text-decoration: none; color: var(--text);
  transition: border-color 0.15s, transform 0.05s, box-shadow 0.15s;
  min-height: 170px; position: relative;
}
.topic-tile:hover { border-color: var(--primary); box-shadow: 0 6px 18px rgba(23, 105, 232, 0.10); }
.topic-tile .verb {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
}
.topic-tile h3 { font-size: 19px; line-height: 1.25; margin: 0; }
.topic-tile p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.topic-tile .arrow {
  position: absolute; top: 22px; right: 22px; width: 28px; height: 28px;
  background: var(--surface-2); border-radius: 50%; display: grid; place-items: center;
  color: var(--primary); font-weight: 800; font-size: 16px;
}

/* ============================================================
   PHOTO ESSAY (family E — layered-photo-notes signature)
   ============================================================ */
.photo-essay {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 800px) { .photo-essay { grid-template-columns: 1fr; } }
.essay-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--soft-shadow);
}
.essay-card .photo { aspect-ratio: 5 / 4; overflow: hidden; background: var(--surface-2); position: relative; }
.essay-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.essay-card .photo .pin {
  position: absolute; top: 12px; left: 12px; background: rgba(11, 23, 38, 0.85); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.essay-card .caption {
  padding: 16px 18px 18px;
}
.essay-card .caption .hi {
  display: block; font-family: var(--font-devanagari); font-size: 16px;
  color: var(--primary); margin-bottom: 4px;
}
.essay-card .caption h3 { font-size: 17px; margin: 0 0 6px; }
.essay-card .caption p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.essay-card .caption .scratch {
  font-size: 13px; color: var(--text-2); border-top: 1px dashed var(--border);
  margin-top: 12px; padding-top: 10px; font-style: italic;
}

/* ============================================================
   METHODOLOGY PANEL — tabbed comparison (family F)
   ============================================================ */
.method-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--soft-shadow);
}
.method-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  overflow-x: auto; background: var(--surface-2);
  scrollbar-width: none;
}
.method-tabs::-webkit-scrollbar { display: none; }
.method-tabs .tab {
  flex: 0 0 auto; padding: 14px 22px; background: transparent; border: 0; border-bottom: 3px solid transparent;
  font-weight: 700; font-size: 14.5px; color: var(--muted); cursor: pointer; white-space: nowrap;
}
.method-tabs .tab[aria-selected="true"] { color: var(--primary); border-bottom-color: var(--primary); background: var(--surface); }
.method-panels { padding: 22px 24px 26px; }
.method-panels .panel { display: none; }
.method-panels .panel.is-active { display: grid; gap: 14px; }
.method-panels .panel h3 { font-size: 19px; margin: 0 0 6px; }
.method-panels .panel .criteria { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
@media (max-width: 700px) { .method-panels .panel .criteria { grid-template-columns: 1fr; } }
.method-panels .panel .cell {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 14px 16px;
}
.method-panels .panel .cell .k { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.method-panels .panel .cell .v { font-size: 15px; color: var(--text); line-height: 1.4; }
.method-panels .panel .cell .n { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   STEPS / RAIL (family A again — but with explicit numbering)
   ============================================================ */
.steps-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
@media (max-width: 800px) { .steps-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-rail { grid-template-columns: 1fr; } }
.step-cell {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; position: relative;
}
.step-cell .num {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  background: var(--primary); color: #FFFFFF; border-radius: 8px;
  font-weight: 800; font-size: 14px; margin-bottom: 10px;
}
.step-cell h3 { font-size: 16.5px; margin: 0 0 6px; }
.step-cell p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ============================================================
   POINTS TABLE (compact)
   ============================================================ */
.points-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; overflow-x: auto;
}
.points-card table { width: 100%; border-collapse: collapse; min-width: 540px; }
.points-card th, .points-card td { padding: 11px 14px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.points-card th { color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; background: var(--surface-2); }
.points-card td .badge {
  display: inline-block; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 6px;
  background: var(--surface-2); color: var(--text-2);
}
.points-card td .badge.gain { background: rgba(31, 122, 76, 0.12); color: var(--success); }
.points-card td .badge.loss { background: rgba(179, 58, 58, 0.12); color: var(--danger); }
.points-card td .badge.mid { background: rgba(23, 105, 232, 0.12); color: var(--primary); }

/* ============================================================
   CONTEST TYPES (3 horizontal cards)
   ============================================================ */
.contest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .contest-grid { grid-template-columns: 1fr; } }
.contest-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.contest-card h3 { font-size: 19px; margin: 0 0 8px; }
.contest-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin: 0 0 10px; }
.contest-card .meta-row { display: flex; gap: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.contest-card .meta-row strong { color: var(--text); }

/* ============================================================
   CAPTAIN / VC TIPS (2x2)
   ============================================================ */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .tips-grid { grid-template-columns: 1fr; } }
.tip-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: grid; grid-template-columns: 56px 1fr; gap: 16px;
}
.tip-card .badge-c { display: grid; place-items: center; background: var(--primary); color: #FFFFFF; width: 56px; height: 56px; border-radius: 12px; font-weight: 800; font-size: 18px; }
.tip-card .badge-vc { background: var(--accent); }
.tip-card h3 { font-size: 17px; margin: 0 0 4px; }
.tip-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; margin: 0; }
.tip-card .byline { font-size: 12px; color: var(--muted); margin-top: 8px; display: block; font-weight: 600; }

/* ============================================================
   LIVE-STYLE DIGEST (sidebar-stream)
   ============================================================ */
.live-digest {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 22px;
}
@media (max-width: 900px) { .live-digest { grid-template-columns: 1fr; } }
.live-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.live-list li {
  display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px;
}
.live-list .when { text-align: center; background: var(--surface-2); border-radius: 8px; padding: 8px 6px; }
.live-list .when b { display: block; font-size: 18px; color: var(--text); font-weight: 800; }
.live-list .when small { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.live-list h3 { font-size: 16px; line-height: 1.3; margin: 0 0 4px; }
.live-list .meta { font-size: 13px; color: var(--muted); }

.live-rail .rail-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; margin-bottom: 14px;
}
.live-rail .rail-card h3 { font-size: 15px; margin: 0 0 8px; color: var(--primary); }
.live-rail .rail-card p { font-size: 14px; color: var(--text-2); margin: 0 0 8px; line-height: 1.55; }
.live-rail .rail-card .layered-note {
  font-size: 12.5px; color: var(--muted); padding: 8px 10px; border-left: 2px solid var(--accent);
  background: var(--surface-2); border-radius: 0 6px 6px 0; margin-top: 8px; font-style: italic;
}

/* ============================================================
   WINNERS / SOCIAL PROOF (4 cards + disclaimer)
   ============================================================ */
.winners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .winners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .winners-grid { grid-template-columns: 1fr; } }
.winner-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; text-align: center;
}
.winner-card .thumb { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-2); margin: 0 auto 10px; overflow: hidden; }
.winner-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.winner-card .name { font-weight: 700; font-size: 14.5px; color: var(--text); margin-bottom: 2px; }
.winner-card .place { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.winner-card .won { font-weight: 800; font-size: 18px; color: var(--primary); margin-bottom: 4px; }
.winner-card .quote { font-size: 13px; color: var(--text-2); line-height: 1.5; font-style: italic; }
.winners-disclaimer { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; padding: 12px 14px; background: var(--surface-2); border-radius: 10px; }

/* ============================================================
   BONUS / OFFER BLOCK (with verification note)
   ============================================================ */
.offer-band {
  background:
    radial-gradient(600px 200px at 100% 50%, rgba(14, 165, 168, 0.14), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 28px; align-items: center;
}
@media (max-width: 800px) { .offer-band { grid-template-columns: 1fr; padding: 24px; } }
.offer-band h2 { font-size: 26px; margin-bottom: 8px; }
.offer-band .verify-note {
  margin-top: 12px; padding: 10px 14px; background: var(--background); border-left: 3px solid var(--warn);
  border-radius: 0 8px 8px 0; font-size: 13.5px; color: var(--text-2); line-height: 1.5;
}
.offer-band .sticker {
  background: var(--background); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.offer-band .sticker b { font-size: 42px; color: var(--primary); display: block; line-height: 1; font-weight: 800; }
.offer-band .sticker small { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }

/* ============================================================
   KYC / PAYMENT MATRIX
   ============================================================ */
.kyc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .kyc-grid { grid-template-columns: 1fr; } }
.kyc-cell {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px;
}
.kyc-cell h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; margin: 0 0 10px; }
.kyc-cell h3 .ico { width: 28px; height: 28px; display: grid; place-items: center; background: var(--surface-2); border-radius: 8px; color: var(--primary); font-weight: 800; }
.kyc-cell p, .kyc-cell ul { font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0; }
.kyc-cell ul { padding-left: 18px; }

/* ============================================================
   HUB NAVIGATION (icon list)
   ============================================================ */
.hub-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 700px) { .hub-list { grid-template-columns: 1fr; } }
.hub-list .hub-row {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: var(--text);
}
.hub-list .hub-row:hover { border-color: var(--primary); }
.hub-list .hub-row .ico { width: 40px; height: 40px; background: var(--surface-2); color: var(--primary); display: grid; place-items: center; border-radius: 10px; font-weight: 800; font-size: 18px; }
.hub-list .hub-row h3 { font-size: 15.5px; margin: 0; line-height: 1.3; }
.hub-list .hub-row small { font-size: 12.5px; color: var(--muted); }
.hub-list .hub-row .arr { color: var(--primary); font-weight: 800; font-size: 18px; }

/* ============================================================
   LATEST GUIDES / NEWS (3 article cards)
   ============================================================ */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--soft-shadow);
  display: grid; grid-template-rows: auto 1fr;
}
.article-card .thumb { aspect-ratio: 16 / 9; background: var(--surface-2); overflow: hidden; }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card .body { padding: 18px 18px 20px; display: grid; gap: 6px; }
.article-card .tag { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.article-card h3 { font-size: 18px; margin: 0; line-height: 1.25; }
.article-card h3 a { color: var(--text); text-decoration: none; }
.article-card h3 a:hover { color: var(--primary); }
.article-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0; }
.article-card .meta { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   VERIFICATION GUIDE (sidebar)
   ============================================================ */
.verify-block {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 28px;
}
@media (max-width: 800px) { .verify-block { grid-template-columns: 1fr; padding: 22px; } }
.verify-block ol { counter-reset: verify; padding: 0; margin: 0; list-style: none; display: grid; gap: 14px; }
.verify-block ol li {
  counter-increment: verify;
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  background: var(--background); border-radius: 10px; padding: 14px 16px;
}
.verify-block ol li::before {
  content: counter(verify); display: grid; place-items: center;
  background: var(--primary); color: #fff; width: 30px; height: 30px; border-radius: 8px;
  font-weight: 800; font-size: 14px;
}
.verify-block ol li h3 { font-size: 15px; margin: 0 0 4px; }
.verify-block ol li p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.5; }

.verify-side h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 12px; }
.verify-side .doc-row {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px; padding: 10px 12px;
  background: var(--background); border-radius: 8px; font-size: 13.5px; color: var(--text-2);
  margin-bottom: 8px;
}
.verify-side .doc-row b { color: var(--text); font-weight: 700; }
.verify-side .doc-row .ico { color: var(--success); font-weight: 800; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: 16px; color: var(--text);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--primary); font-weight: 800; transition: transform 0.2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 22px 20px; color: var(--text-2); font-size: 15.5px; line-height: 1.65;
}
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   EDITORIAL COLOPHON
   ============================================================ */
.colophon {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 26px;
}
@media (max-width: 800px) { .colophon { grid-template-columns: 1fr; padding: 22px; } }
.colophon .desk { display: flex; gap: 14px; align-items: center; }
.colophon .desk .avatar { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; }
.colophon .desk h3 { font-size: 17px; margin: 0 0 2px; }
.colophon .desk p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.4; }
.colophon .policies { display: grid; gap: 8px; font-size: 14px; }
.colophon .policies div { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.colophon .policies div:last-child { border-bottom: 0; }
.colophon .policies b { color: var(--text); font-weight: 700; min-width: 130px; }
.colophon .policies span { color: var(--text-2); }

/* ============================================================
   RESPONSIBLE PLAY STRIP
   ============================================================ */
.responsible-strip {
  background: var(--ink); color: rgba(255, 255, 255, 0.85); padding: 28px 0;
}
.responsible-strip .container { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 24px; align-items: center; }
@media (max-width: 800px) { .responsible-strip .container { grid-template-columns: 1fr; } }
.responsible-strip h2 { font-size: 22px; color: #fff; margin: 0 0 8px; }
.responsible-strip h2 .devanagari { font-size: 18px; color: rgba(255, 255, 255, 0.7); display: block; margin-top: 4px; }
.responsible-strip p { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin: 0; line-height: 1.55; }
.responsible-strip .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .responsible-strip .actions { justify-content: flex-start; } }
.responsible-strip .btn-secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.responsible-strip .btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.55); color: #fff; }

/* ============================================================
   FOOTER (4 columns, navigation-only — no blog posts)
   ============================================================ */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 12px; font-weight: 800; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col li a { color: var(--text-2); font-size: 14px; text-decoration: none; }
.footer-col li a:hover { color: var(--primary); text-decoration: underline; }
.footer-brand .brand-mark { margin-bottom: 10px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 36ch; margin: 0 0 12px; }
.footer-meta {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.footer-meta .legal-line { font-size: 12.5px; line-height: 1.5; max-width: 80ch; }
.footer-meta .lang-line { display: flex; gap: 12px; align-items: center; }
.footer-meta .lang-line b { color: var(--text); font-weight: 700; }

/* ============================================================
   MOBILE STICKY CTA BAR (one CTA, full-width, /Login/playnow)
   ============================================================ */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  z-index: var(--z-sticky-cta);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 700px) {
  .mobile-sticky { display: flex; gap: 10px; align-items: center; }
  body { padding-bottom: 84px; }
}
.mobile-sticky .sticky-meta {
  flex: 1; min-width: 0;
}
.mobile-sticky .sticky-meta b { color: var(--text); font-size: 13.5px; display: block; line-height: 1.2; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-sticky .sticky-meta small { font-size: 11.5px; color: var(--muted); display: block; line-height: 1.2; margin-top: 2px; }
.mobile-sticky .btn-primary { flex: 1.3 1 auto; padding: 13px 14px; font-size: 15px; }

/* ============================================================
   ARTICLE / HUB PAGE TEMPLATE
   ============================================================ */
.page-shell { background: var(--background); }
.page-nav {
  font-size: 13px; color: var(--muted); padding: 14px 0; border-bottom: 1px solid var(--border);
}
.page-nav a { color: var(--muted); text-decoration: none; }
.page-nav a:hover { color: var(--primary); }
.page-nav .sep { margin: 0 8px; opacity: 0.5; }
.page-nav .here { color: var(--text); font-weight: 600; }

.article-banner {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin: 28px 0 0;
}
.article-banner .photo { aspect-ratio: 21 / 9; background: var(--surface-2); position: relative; }
.article-banner .photo img { width: 100%; height: 100%; object-fit: cover; }
.article-banner .photo .pin {
  position: absolute; bottom: 14px; left: 14px; background: rgba(11, 23, 38, 0.85); color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.article-banner .meta { padding: 22px 28px 26px; }
.article-banner .tag { font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.article-banner h1 { font-size: 44px; line-height: 1.1; margin-bottom: 14px; max-width: 22ch; }
@media (max-width: 700px) { .article-banner h1 { font-size: 32px; } }
.article-banner .byline { font-size: 13.5px; color: var(--muted); }
.article-banner .lead { font-size: 18px; color: var(--text-2); margin-top: 10px; max-width: 72ch; line-height: 1.6; }

.prose {
  max-width: 72ch; margin: 0 auto;
  font-size: 17.5px; line-height: 1.78; color: var(--text-2);
}
.prose h2 { font-size: 28px; color: var(--text); margin: 38px 0 14px; }
.prose h3 { font-size: 22px; color: var(--text); margin: 26px 0 10px; }
.prose h2 .devanagari,
.prose h3 .devanagari,
.prose p .devanagari { font-family: var(--font-devanagari); color: var(--primary); }
.prose p { margin: 0 0 18px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: 22px 0; padding: 14px 20px;
  background: var(--surface-2); border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0; color: var(--text); font-style: italic;
}
.prose blockquote p { margin: 0; }

.toc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; margin: 26px 0;
}
.toc h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 8px; font-weight: 800; }
.toc ol { margin: 0; padding-left: 20px; }
.toc a { color: var(--text-2); text-decoration: none; font-weight: 600; font-size: 14.5px; }
.toc a:hover { color: var(--primary); }

.callout {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin: 22px 0; display: grid; grid-template-columns: 32px 1fr; gap: 14px;
}
.callout .ico { width: 32px; height: 32px; display: grid; place-items: center; background: var(--surface-2); border-radius: 8px; color: var(--primary); font-weight: 800; }
.callout .body h4 { font-size: 15px; margin: 0 0 4px; }
.callout .body p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.55; }

.content-image-card {
  margin: 26px 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--soft-shadow);
}
.content-image-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.content-image-card figcaption {
  padding: 12px 18px 16px; font-size: 13.5px; color: var(--muted); line-height: 1.55;
  border-top: 1px solid var(--border);
}
.content-image-card figcaption b { color: var(--text); }

.loose-card {
  background: linear-gradient(135deg, rgba(23, 105, 232, 0.08), rgba(14, 165, 168, 0.03));
  border: 1px solid var(--border-2); border-radius: 12px; padding: 18px 20px; margin: 18px 0;
}
.loose-card h3, .loose-card h4 { margin: 0 0 8px; font-size: 17px; }
.loose-card p { margin: 0 0 8px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.loose-card p:last-child { margin-bottom: 0; }
.loose-card .emoji-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.loose-card .emoji-row span {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: rgba(23, 105, 232, 0.12); border-radius: 8px; font-size: 16px;
}

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0; }
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ACCESSIBILITY / FOCUS
   ============================================================ */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Utility */
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
.show-mobile { display: none; }
@media (max-width: 700px) { .show-mobile { display: block; } }
.text-small { font-size: 13.5px; color: var(--muted); }
.legal { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
section[id] { scroll-margin-top: 84px; }

/* Image placeholder note (used until the MiniMax batch arrives) */
.placeholder {
  background:
    linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: grid; place-items: center; color: var(--muted);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
