/* ============================================================
   IPL FANTASY 2026 - L09 STATS TICKER LAYOUT
   Plum Purple + Electric Blue + Off-White palette
   Lexend + Cormorant Garamond + Roboto Mono fonts
   ============================================================ */

/* --------- CSS RESET --------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Lexend', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--electric-blue); text-decoration: none; }
a:hover { color: var(--plum-light); }
button { font-family: inherit; cursor: pointer; }

/* --------- CSS VARIABLES --------- */
:root {
  /* Palette */
  --plum: #4A0E4E;
  --plum-dark: #2D0829;
  --plum-light: #6B1A6F;
  --electric-blue: #00B8FF;
  --electric-blue-dark: #0099CC;
  --off-white: #F8F8F8;
  --off-white-2: #FFFFFF;
  --ink: #1A0820;
  --ink-2: #2D1A33;

  /* Semantic */
  --bg: var(--off-white);
  --bg-elev-1: var(--off-white-2);
  --text: var(--ink);
  --text-2: #3A2A40;
  --text-3: #6B5870;
  --soft-border: rgba(74, 14, 78, 0.12);
  --strong-border: rgba(74, 14, 78, 0.22);
  --shadow-sm: 0 2px 6px rgba(74, 14, 78, 0.08);
  --shadow-md: 0 6px 18px rgba(74, 14, 78, 0.12);
  --shadow-lg: 0 14px 40px rgba(74, 14, 78, 0.16);

  /* Layout */
  --container: 1200px;
  --header-h: 72px;
  --ticker-h: 44px;

  /* Type scale */
  --t-fast: 180ms;
  --t-med: 280ms;

  /* Stat colors */
  --stat-up: #0E9F6E;
  --stat-down: #E03E3E;
}

/* --------- TYPOGRAPHY --------- */
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1.18; color: var(--text); letter-spacing: -0.005em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 600; }
p { color: var(--text-2); }
.eyebrow, .section-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--electric-blue); display: inline-block; }
.mono { font-family: 'Roboto Mono', monospace; }
.display-num { font-family: 'Roboto Mono', monospace; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* --------- CONTAINER --------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --------- HEADER --------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 250 !important; height: var(--header-h); background: rgba(248, 248, 248, 0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--soft-border); padding-top: env(safe-area-inset-top, 0px); }
.nav-grid { display: flex; align-items: center; gap: 28px; width: 100%; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-family: 'Cormorant Garamond', serif; font-weight: 900; font-size: 22px; text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: linear-gradient(135deg, var(--plum) 0%, var(--electric-blue) 100%); color: var(--off-white); border-radius: 10px; font-family: 'Roboto Mono', monospace; font-weight: 700; font-size: 15px; }
.brand-name { color: var(--plum); letter-spacing: -0.01em; }
.brand-tag { font-family: 'Roboto Mono', monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--electric-blue); }
.main-nav { display: flex; gap: 22px; align-items: center; margin-left: 18px; }
.main-nav a { color: var(--text-2); font-size: 14px; font-weight: 500; text-decoration: none; padding: 6px 0; position: relative; transition: color var(--t-fast); }
.main-nav a:hover, .main-nav a.is-active { color: var(--plum); }
.main-nav a.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--electric-blue); border-radius: 2px; }
.header-cta-ghost { display: inline-flex; align-items: center; padding: 8px 16px; border: 1px solid var(--strong-border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--plum); background: transparent; text-decoration: none; margin-left: 8px; }
.header-cta { display: inline-flex; align-items: center; padding: 9px 18px; background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%); color: var(--off-white); border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; margin-left: 4px; box-shadow: var(--shadow-sm); }
.header-cta:hover { color: var(--off-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hamburger { display: none; background: transparent; border: 0; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; z-index: 300 !important; position: relative !important; padding: 8px; margin-left: auto; }
  .site-header .hamburger { position: fixed !important; z-index: 999 !important; top: 12px; right: 16px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--plum); border-radius: 2px; transition: transform var(--t-med), opacity var(--t-fast); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------- MOBILE DRAWER --------- */
.mobile-drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(45, 8, 41, 0.98); backdrop-filter: blur(10px); z-index: 50; padding: 96px 28px 32px; overflow-y: auto; -webkit-overflow-scrolling: touch; display: none; height: 100vh; height: 100dvh; width: 100vw; overscroll-behavior: contain; padding-top: calc(96px + env(safe-area-inset-top, 0px)); }
.mobile-drawer.open, .mobile-drawer.is-open { display: block !important; }
.mobile-drawer a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; color: var(--off-white); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(248, 248, 248, 0.12); }
.mobile-drawer a::after { content: '›'; font-family: 'Roboto Mono', monospace; color: var(--electric-blue); font-size: 18px; }
.mobile-drawer .drawer-cta { margin-top: 28px; padding: 16px; background: var(--electric-blue); color: var(--plum-dark); border-radius: 12px; font-family: 'Lexend', sans-serif; font-size: 15px; font-weight: 700; text-align: center; border-bottom: 0; }
.mobile-drawer .drawer-cta::after { content: ''; }

/* --------- LIVE TICKER --------- */
.ticker-band { position: fixed; top: var(--header-h); left: 0; right: 0; height: var(--ticker-h); background: linear-gradient(90deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-dark) 100%); color: var(--off-white); z-index: 240; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--plum-light); padding-top: env(safe-area-inset-top, 0px); }
.ticker-label { background: var(--electric-blue); color: var(--plum-dark); font-family: 'Roboto Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 16px; height: var(--ticker-h); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; z-index: 2; position: relative; }
.ticker-label::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--plum-dark); border-radius: 50%; animation: blink 1.2s infinite; }
.ticker-track { display: flex; gap: 48px; padding-left: 32px; animation: ticker-scroll 60s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; font-family: 'Roboto Mono', monospace; font-size: 13px; color: var(--off-white); }
.ticker-item .player { color: var(--electric-blue); font-weight: 700; }
.ticker-item .stat { color: var(--off-white); font-weight: 500; }
.ticker-item .delta-up { color: #4ade80; }
.ticker-item .delta-down { color: #ff7373; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.3; } }

/* --------- HERO --------- */
.hero { padding: 56px 0 64px; background: linear-gradient(180deg, var(--off-white) 0%, #FFFFFF 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; min-height: 540px; }
.hero-copy h1 { margin: 14px 0 18px; color: var(--plum); }
.hero-copy h1 span { color: var(--electric-blue); font-style: italic; }
.hero-lede { font-size: 18px; color: var(--text-2); max-width: 540px; margin-bottom: 28px; line-height: 1.55; }
.hero-meta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; font-family: 'Roboto Mono', monospace; font-size: 12px; color: var(--text-3); }
.hero-meta-item strong { color: var(--plum); font-weight: 700; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 26px; border-radius: 10px; font-family: 'Lexend', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform var(--t-fast), box-shadow var(--t-med); }
.btn-primary { background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%); color: var(--off-white); box-shadow: var(--shadow-md); }
.btn-primary:hover { color: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--plum); border-color: var(--strong-border); }
.btn-ghost:hover { color: var(--plum); background: rgba(74, 14, 78, 0.04); }
.hero-trust { display: flex; gap: 24px; padding-top: 22px; border-top: 1px solid var(--soft-border); flex-wrap: wrap; }
.trust-item { display: inline-flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: 'Roboto Mono', monospace; font-size: 22px; font-weight: 700; color: var(--plum); font-variant-numeric: tabular-nums; }
.trust-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }
.hero-visual { position: relative; height: 460px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--strong-border); }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual-overlay { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(45, 8, 41, 0.92); color: var(--off-white); padding: 16px 18px; border-radius: 12px; backdrop-filter: blur(6px); border: 1px solid rgba(0, 184, 255, 0.3); }
.hero-visual-overlay .hvo-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 10px; color: var(--electric-blue); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.hero-visual-overlay .hvo-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--off-white); margin-bottom: 6px; }
.hero-visual-overlay .hvo-stats { display: flex; gap: 16px; font-family: 'Roboto Mono', monospace; font-size: 12px; }
.hero-visual-overlay .hvo-stats span { color: var(--electric-blue); }

/* --------- BAND --------- */
.band { padding: 56px 0; }
.band-elev-1 { background: var(--bg-elev-1); }
.band-elev-2 { background: var(--bg); }
.band-dark { background: var(--plum-dark); color: var(--off-white); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: var(--off-white); }
.band-dark p { color: rgba(248, 248, 248, 0.78); }
.band-title { margin: 12px 0 8px; color: var(--plum); }
.band-dark .band-title { color: var(--off-white); }
.band-lede { max-width: 720px; font-size: 17px; color: var(--text-2); margin-bottom: 32px; }
.band-dark .band-lede { color: rgba(248, 248, 248, 0.78); }

/* --------- DATA TICKER ROW --------- */
.ticker-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.data-tile { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 22px 22px 18px; position: relative; overflow: hidden; }
.data-tile::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--plum) 0%, var(--electric-blue) 100%); }
.data-tile-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 8px; }
.data-tile-num { font-family: 'Roboto Mono', monospace; font-size: 34px; font-weight: 700; color: var(--plum); line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.data-tile-label { font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.data-tile-delta { display: inline-flex; align-items: center; gap: 4px; font-family: 'Roboto Mono', monospace; font-size: 12px; font-weight: 600; }
.delta-up { color: var(--stat-up); }
.delta-down { color: var(--stat-down); }

/* --------- CARDS --------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 26px; transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast); position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--strong-border); }
.card-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--electric-blue); margin-bottom: 8px; }
.card h3 { margin-bottom: 10px; color: var(--plum); }
.card p { color: var(--text-2); font-size: 14.5px; }
.card .card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; margin-bottom: 16px; border: 1px solid var(--soft-border); }
.card .card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--plum); font-family: 'Roboto Mono', monospace; font-size: 12px; font-weight: 700; text-decoration: none; margin-top: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.card .card-cta::after { content: '→'; }
.card .card-cta:hover { color: var(--electric-blue); }

/* --------- DATA-CARD --------- */
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.data-card { background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%); color: var(--off-white); padding: 26px; border-radius: 14px; position: relative; overflow: hidden; }
.data-card::before { content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 60px; background: radial-gradient(circle, rgba(0,184,255,0.3) 0%, transparent 70%); }
.data-card .data-num { font-family: 'Roboto Mono', monospace; font-size: 36px; font-weight: 700; color: var(--off-white); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.data-card .data-label { font-family: 'Roboto Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(248, 248, 248, 0.7); }
.data-card .data-sub { font-size: 13px; color: rgba(248, 248, 248, 0.85); margin-top: 10px; }

/* --------- STEP CARDS --------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.step-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 28px; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--electric-blue); color: var(--plum-dark); font-family: 'Roboto Mono', monospace; font-weight: 700; font-size: 16px; border-radius: 50%; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0, 184, 255, 0.35); }
.step-card h3 { color: var(--plum); margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--text-2); }

/* --------- LOOSE CARDS --------- */
.loose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loose-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 12px; padding: 20px; }
.loose-card h4 { color: var(--plum); font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.loose-card p { font-size: 14px; color: var(--text-2); }

/* --------- COMPARISON TABLE --------- */
.cmp-table { width: 100%; border-collapse: collapse; background: var(--bg-elev-1); border-radius: 14px; overflow: hidden; border: 1px solid var(--soft-border); }
.cmp-table th, .cmp-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--soft-border); font-size: 14px; }
.cmp-table thead { background: var(--plum); color: var(--off-white); }
.cmp-table thead th { font-family: 'Roboto Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--off-white); border-bottom: 0; }
.cmp-table tbody tr:hover { background: rgba(0, 184, 255, 0.04); }
.cmp-table .num { font-family: 'Roboto Mono', monospace; font-variant-numeric: tabular-nums; font-weight: 600; }
.cmp-table .num-positive { color: var(--stat-up); }
.cmp-table .num-negative { color: var(--stat-down); }

/* --------- INLINE IMAGE ROW --------- */
.inline-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin: 36px 0; padding: 26px; background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 16px; }
.inline-image-row.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.inline-image-row.reverse > * { direction: ltr; }
.inline-image-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; border: 1px solid var(--soft-border); }
.inline-image-row .iir-copy h3 { color: var(--plum); margin-bottom: 12px; }
.inline-image-row .iir-copy p { color: var(--text-2); }
.inline-image-row .iir-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--electric-blue); margin-bottom: 8px; }

/* --------- CONTENT HERO IMAGE --------- */
.content-hero-image { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 18px; border: 1px solid var(--soft-border); margin-bottom: 32px; box-shadow: var(--shadow-md); }

/* --------- CONTENT 2-COLUMN --------- */
.content-2col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; margin: 36px 0; }
.content-2col img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; border: 1px solid var(--soft-border); }
.content-2col h3 { color: var(--plum); margin-bottom: 12px; }

/* --------- CONTENT IMAGE CARD --------- */
.content-image-card { width: 100%; margin: 32px 0; padding: 18px; background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 16px; }
.content-image-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
.content-image-card figcaption { font-style: italic; color: var(--text-3); font-size: 14px; text-align: center; padding: 0 12px; }

/* --------- FAQ --------- */
.faq-grid { display: grid; gap: 14px; }
.faq-item { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 12px; padding: 18px 22px; }
.faq-item h3 { color: var(--plum); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: var(--text-2); margin: 0; }
.faq-item summary { cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--plum); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-family: 'Roboto Mono', monospace; color: var(--electric-blue); font-size: 24px; transition: transform var(--t-fast); }
.faq-item[open] summary::after { transform: rotate(45deg); }

/* --------- CTA BAND --------- */
.cta-band { padding: 56px 32px; background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%); color: var(--off-white); border-radius: 18px; text-align: center; margin: 36px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(0,184,255,0.18) 0%, transparent 60%); }
.cta-band h2 { color: var(--off-white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(248, 248, 248, 0.85); max-width: 640px; margin: 0 auto 24px; font-size: 16px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn-primary { background: var(--electric-blue); color: var(--plum-dark); }
.cta-band .btn-ghost { color: var(--off-white); border-color: rgba(248, 248, 248, 0.4); }

/* --------- TESTIMONIAL CARDS --------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 24px; position: relative; }
.testimonial-card .tc-stars { color: var(--electric-blue); font-size: 16px; margin-bottom: 12px; letter-spacing: 0.1em; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--text); line-height: 1.5; margin: 0 0 16px; font-style: italic; }
.testimonial-card .tc-meta { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--soft-border); }
.testimonial-card .tc-meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card .tc-name { font-weight: 700; color: var(--plum); font-size: 14px; }
.testimonial-card .tc-role { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* --------- PRICING / LEADERBOARD CARDS --------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 28px; position: relative; transition: transform var(--t-med); }
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.featured { background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%); color: var(--off-white); border-color: var(--electric-blue); }
.pricing-card .pc-badge { position: absolute; top: -10px; left: 24px; background: var(--electric-blue); color: var(--plum-dark); font-family: 'Roboto Mono', monospace; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-card .pc-tier { font-family: 'Roboto Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--electric-blue); margin-bottom: 10px; }
.pricing-card.featured .pc-tier { color: var(--electric-blue); }
.pricing-card .pc-price { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 700; color: var(--plum); margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.pricing-card.featured .pc-price { color: var(--off-white); }
.pricing-card .pc-price span { font-size: 14px; color: var(--text-3); }
.pricing-card.featured .pc-price span { color: rgba(248, 248, 248, 0.6); }
.pricing-card .pc-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 18px; }
.pricing-card.featured .pc-desc { color: rgba(248, 248, 248, 0.8); }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.pricing-card li { padding: 7px 0; font-size: 14px; color: var(--text-2); position: relative; padding-left: 22px; }
.pricing-card.featured li { color: rgba(248, 248, 248, 0.9); }
.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--electric-blue); font-weight: 700; }
.pricing-card .pc-cta { display: block; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 14px; }
.pricing-card .pc-cta-primary { background: var(--electric-blue); color: var(--plum-dark); }
.pricing-card .pc-cta-ghost { background: transparent; border: 1px solid var(--strong-border); color: var(--plum); }

/* --------- PROSE --------- */
.prose { font-size: 16px; line-height: 1.75; color: var(--text-2); max-width: 760px; }
.prose h2 { color: var(--plum); margin: 36px 0 14px; }
.prose h3 { color: var(--plum); margin: 28px 0 10px; }
.prose h4 { color: var(--plum-light); margin: 22px 0 8px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; color: var(--electric-blue-dark); }
.prose strong { color: var(--text); font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--electric-blue); padding: 12px 22px; margin: 22px 0; background: rgba(0, 184, 255, 0.06); color: var(--text); font-style: italic; }
.prose code { font-family: 'Roboto Mono', monospace; background: rgba(74, 14, 78, 0.08); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }

/* --------- LEADERBOARD --------- */
.leaderboard-table { width: 100%; border-collapse: collapse; background: var(--bg-elev-1); border-radius: 14px; overflow: hidden; border: 1px solid var(--soft-border); font-size: 14px; }
.leaderboard-table th, .leaderboard-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--soft-border); }
.leaderboard-table thead { background: var(--plum); }
.leaderboard-table thead th { font-family: 'Roboto Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--off-white); }
.leaderboard-table .lb-rank { font-family: 'Roboto Mono', monospace; font-weight: 700; color: var(--electric-blue); width: 56px; }
.leaderboard-table .lb-name { font-weight: 600; color: var(--text); }
.leaderboard-table .lb-points { font-family: 'Roboto Mono', monospace; font-weight: 700; color: var(--plum); font-variant-numeric: tabular-nums; }
.leaderboard-table .lb-percentile { font-family: 'Roboto Mono', monospace; font-weight: 600; color: var(--stat-up); font-variant-numeric: tabular-nums; }
.leaderboard-table tr:nth-child(1) .lb-rank { color: #FFD700; font-size: 18px; }
.leaderboard-table tr:nth-child(2) .lb-rank { color: #C0C0C0; font-size: 16px; }
.leaderboard-table tr:nth-child(3) .lb-rank { color: #CD7F32; font-size: 16px; }

/* --------- PROBABILITY BAR --------- */
.prob-bar { display: grid; gap: 12px; }
.prob-row { display: grid; grid-template-columns: 140px 1fr 80px; gap: 14px; align-items: center; }
.prob-label { font-family: 'Roboto Mono', monospace; font-size: 12px; color: var(--text-2); }
.prob-track { height: 14px; background: var(--soft-border); border-radius: 7px; overflow: hidden; position: relative; }
.prob-fill { height: 100%; background: linear-gradient(90deg, var(--plum) 0%, var(--electric-blue) 100%); border-radius: 7px; transition: width var(--t-med); }
.prob-value { font-family: 'Roboto Mono', monospace; font-size: 13px; font-weight: 700; color: var(--plum); font-variant-numeric: tabular-nums; text-align: right; }

/* --------- SECTION DIVIDER --------- */
.section-head { margin-bottom: 32px; }
.section-head .eyebrow { margin-bottom: 6px; }
.section-head h2 { margin: 0; }

/* --------- FOOTER --------- */
.site-footer { background: var(--plum-dark); color: rgba(248, 248, 248, 0.78); padding: 56px 0 24px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(248, 248, 248, 0.12); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--electric-blue) 0%, var(--off-white) 100%); color: var(--plum-dark); }
.footer-brand .brand-name { color: var(--off-white); font-family: 'Cormorant Garamond', serif; font-weight: 900; font-size: 22px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--off-white); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(248, 248, 248, 0.78); font-size: 13.5px; text-decoration: none; }
.footer-col a:hover { color: var(--electric-blue); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(248, 248, 248, 0.08); color: var(--off-white); border-radius: 8px; font-family: 'Roboto Mono', monospace; font-size: 12px; font-weight: 700; text-decoration: none; }
.social-icons a:hover { background: var(--electric-blue); color: var(--plum-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-family: 'Roboto Mono', monospace; font-size: 11px; color: rgba(248, 248, 248, 0.55); flex-wrap: wrap; gap: 12px; }

/* --------- PROBABILITY GAUGE --------- */
.gauge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gauge-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 14px; padding: 22px; text-align: center; }
.gauge-ring { width: 120px; height: 120px; margin: 0 auto 14px; position: relative; }
.gauge-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-ring .ring-bg { fill: none; stroke: var(--soft-border); stroke-width: 12; }
.gauge-ring .ring-fg { fill: none; stroke: url(#gauge-grad); stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1s ease-out; }
.gauge-ring .ring-value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Roboto Mono', monospace; font-size: 24px; font-weight: 700; color: var(--plum); }

/* --------- INLINE GRAPH (SVG) --------- */
.spark-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spark-card { background: var(--bg-elev-1); border: 1px solid var(--soft-border); border-radius: 12px; padding: 18px; }
.spark-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--plum); margin-bottom: 8px; }
.spark-card .spark-val { font-family: 'Roboto Mono', monospace; font-size: 26px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.spark-card svg { width: 100%; height: 80px; }

/* --------- RESPONSIVE --------- */
@media (min-width: 900px) {
  .hamburger { display: none !important; }
  .main-nav { display: flex !important; }
  .header-cta { display: inline-flex !important; }
  .header-cta-ghost { display: inline-flex !important; }
}

@media (max-width: 899px) {
  .main-nav { display: none !important; }
  .header-cta { display: none !important; }
  .header-cta-ghost { display: none !important; }
  .hamburger { display: inline-flex !important; }
  .ticker-band { top: var(--header-h); }
  body { padding-top: calc(var(--header-h) + var(--ticker-h) + env(safe-area-inset-top, 0px)); }
  .hero { padding: 32px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero-visual { height: 320px; }
  .hero-copy h1 { font-size: 32px !important; }
  .hero-trust { display: none !important; }
  .hero { min-height: 480px !important; max-height: 720px !important; }
  #hero-h { font-size: 32px !important; }
  .card-grid, .card-grid-2, .step-grid, .step-grid-2, .loose-grid, .testimonial-grid, .pricing-grid { grid-template-columns: 1fr !important; }
  .data-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gauge-grid { grid-template-columns: 1fr !important; }
  .ticker-row { grid-template-columns: repeat(2, 1fr) !important; }
  .inline-image-row, .inline-image-row.reverse, .content-2col { grid-template-columns: 1fr !important; direction: ltr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .leaderboard-table { font-size: 12px; }
  .leaderboard-table th, .leaderboard-table td { padding: 10px 8px; }
  .prob-row { grid-template-columns: 100px 1fr 60px; gap: 8px; }
  .spark-grid { grid-template-columns: 1fr !important; }
  .cmp-table th, .cmp-table td { padding: 10px 8px; font-size: 12px; }
}

@media (max-width: 540px) {
  .data-grid { grid-template-columns: 1fr !important; }
  .ticker-row { grid-template-columns: 1fr !important; }
  .data-tile-num { font-size: 28px; }
  .container { padding: 0 16px; }
  .content-image-card, .inline-image-row, .content-2col { padding: 14px; }
}

/* --------- FOCUS STATES --------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--electric-blue); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--electric-blue); color: var(--plum-dark); padding: 8px 16px; z-index: 999; }
.skip-link:focus { top: 0; }

/* --------- PRINT --------- */
@media print {
  .site-header, .ticker-band, .mobile-drawer, .hamburger, .footer-bottom, .cta-band .btn { display: none !important; }
  body { padding-top: 0; }
}

/* --------- UTILS --------- */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; } .mt-20 { margin-top: 20px; } .mt-32 { margin-top: 32px; }
.mb-12 { margin-bottom: 12px; } .mb-20 { margin-bottom: 20px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }