:root {
      /* V3 brand palette */
      --brand-50: #f0f5ff;
      --brand-100: #e0eaff;
      --brand-200: #c7d7fe;
      --brand-300: #a4bcfd;
      --brand-400: #7c9cf9;
      --brand-500: #5b7bf3;
      --brand-600: #3b5de7;
      --brand-700: #2d4ad4;
      --brand-800: #273dab;
      --brand-900: #0f1d3d;
      --brand-950: #080f22;
      --accent-50: #f0fdf4;
      --accent-100: #dcfce7;
      --accent-500: #22c55e;
      --accent-600: #16a34a;
      /* Neutrals */
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --gray-600: #4b5563;
      --gray-700: #374151;
      --gray-800: #1f2937;
      --gray-900: #111827;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      color: #2b2b2b;
      background: #fafafa;
      font-size: 15px;
      line-height: 1.7;
    }
    .mono { font-family: 'IBM Plex Mono', monospace; }
    /* McKinsey-style headings: serif font */
    .section-title, .hero h1, .buy-title, .cta-banner h2 {
      font-family: 'Lora', Georgia, serif;
      color: #1a1a2e;
      letter-spacing: -0.02em;
    }

    /* ═══ UTILITY BAR ═══ */
    .util-bar {
      background: var(--brand-950);
      color: var(--gray-400);
      font-size: 11px;
      padding: 6px 0;
    }
    .util-bar a { color: var(--gray-400); text-decoration: none; transition: color 0.15s; }
    .util-bar a:hover { color: #fff; }

    /* ═══ NAV ═══ */
    .main-nav {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px) saturate(1.5);
      border-bottom: 1px solid var(--gray-200);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .wrap { max-width: 1340px; margin: 0 auto; padding: 0 16px; }
    .nav-inner { height: 60px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-mark {
      width: 32px; height: 32px;
      background: var(--brand-600);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 11px; font-weight: 700;
    }
    .logo-text { font-size: 15px; font-weight: 700; color: var(--brand-900); letter-spacing: -0.03em; }
    .logo-sub { font-size: 9px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gray-400); font-weight: 500; }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-500); text-decoration: none; transition: color 0.15s; }
    .nav-links a:hover, .nav-links a.active { color: var(--brand-600); }
    .nav-cta {
      padding: 8px 20px;
      background: var(--brand-600);
      color: #fff;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--brand-700); }

    /* ═══ HERO ═══ */
    .hero {
      background: var(--brand-950);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,93,231,0.25), transparent),
        radial-gradient(ellipse 40% 60% at 90% 100%, rgba(59,93,231,0.1), transparent);
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(91,123,243,0.3), transparent);
    }
    .hero-inner { position: relative; z-index: 1; padding: 48px 0 56px; }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; color: rgba(164,188,253,0.5); font-weight: 500; margin-bottom: 32px;
    }
    .breadcrumb a { color: rgba(164,188,253,0.5); text-decoration: none; }
    .breadcrumb a:hover { color: #fff; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 56px;
      align-items: start;
    }
    .hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .hero-badge-tag {
      background: rgba(59,93,231,0.8);
      color: #fff; font-size: 10px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 4px 12px; border-radius: 4px;
    }
    .hero-badge-cat { font-size: 12px; color: var(--brand-300); font-weight: 500; }
    .hero h1 {
      font-size: 40px; line-height: 1.12; color: #fff;
      font-weight: 800; letter-spacing: -0.025em;
    }
    .hero h1 .hl { color: var(--brand-300); }
    .hero-desc {
      margin-top: 14px; font-size: 15px; color: rgba(164,188,253,0.7);
      max-width: 520px; line-height: 1.7; font-weight: 300;
    }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 18px;
      margin-top: 20px; padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .hero-meta span {
      font-size: 12px; color: rgba(164,188,253,0.6);
      display: flex; align-items: center; gap: 6px; font-weight: 400;
    }
    .hero-meta i { color: var(--brand-400); font-size: 10px; }
    .hero-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 24px; border-radius: 8px;
      font-size: 13px; font-weight: 600; text-decoration: none;
      transition: all 0.2s; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif; letter-spacing: -0.01em;
    }
    .btn i { font-size: 11px; }
    .btn-white { background: #fff; color: var(--brand-900); }
    .btn-white:hover { background: var(--brand-50); }
    .btn-white i { color: var(--brand-600); }
    .btn-brand { background: var(--brand-600); color: #fff; }
    .btn-brand:hover { background: var(--brand-500); }
    .btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

    /* Hero — "What the Report Offers" card */
    .offers-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      backdrop-filter: blur(8px);
      overflow: hidden;
    }
    .offers-card-header {
      padding: 16px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .offers-card-label {
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--brand-300); font-weight: 600;
    }
    .offers-card-body { padding: 20px 22px; }
    .offer-item { display: flex; gap: 12px; padding: 10px 0; }
    .offer-item + .offer-item { border-top: 1px solid rgba(255,255,255,0.04); }
    .offer-icon {
      width: 34px; height: 34px; border-radius: 8px;
      background: rgba(59,93,231,0.15); border: 1px solid rgba(59,93,231,0.2);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .offer-icon i { color: var(--brand-300); font-size: 12px; }
    .offer-title { font-size: 13px; font-weight: 600; color: #fff; }
    .offer-desc { font-size: 12px; color: rgba(164,188,253,0.55); line-height: 1.55; margin-top: 1px; }

    /* ═══ MAIN LAYOUT ═══ */
    .content-grid {
      display: grid;
      grid-template-columns: 200px 1fr 310px;
      gap: 24px;
      padding: 36px 0 80px;
    }

    /* ═══ LEFT SIDEBAR NAV ═══ */
    .side-nav {
      position: sticky; top: 76px; align-self: start;
      max-height: calc(100vh - 96px);
      overflow-y: auto;
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      background: #fff;
      padding: 14px 6px;
    }
    .side-nav::-webkit-scrollbar { display: none; }
    .side-nav { -ms-overflow-style: none; scrollbar-width: none; }
    .side-nav-label {
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--gray-400); font-weight: 600;
      padding: 0 12px 8px;
    }
    .side-nav-label.mt { margin-top: 16px; }
    .nav-link {
      display: block; padding: 7px 12px;
      font-size: 12px; font-weight: 500; color: var(--gray-500);
      text-decoration: none;
      border-left: 2px solid transparent;
      border-radius: 0 6px 6px 0;
      transition: all 0.12s;
      margin-bottom: 1px;
    }
    .nav-link:hover { color: var(--brand-600); background: var(--brand-50); border-left-color: var(--brand-200); }
    .nav-link.active { color: var(--brand-600); background: var(--brand-50); border-left-color: var(--brand-600); font-weight: 600; }

    /* Sidebar CTA mini-card */
    .side-cta {
      margin-top: 14px;
      border-radius: 8px;
      border-top: 1px solid var(--gray-200);
      background: var(--brand-50);
      padding: 14px 10px;
    }
    .side-cta-title { font-size: 12px; font-weight: 700; color: var(--gray-800); }
    .side-cta-desc { font-size: 11px; color: var(--gray-500); line-height: 1.55; margin-top: 4px; }
    .side-cta-btn {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: 10px; width: 100%; padding: 8px;
      background: var(--brand-600); color: #fff;
      border-radius: 8px; font-size: 11px; font-weight: 600;
      text-decoration: none; transition: background 0.2s;
    }
    .side-cta-btn:hover { background: var(--brand-700); }
    .side-cta-btn i { font-size: 9px; }

    /* ═══ CONTENT SECTIONS ═══ */
    .content-main { min-width: 0; }

    .section-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .section-header {
      padding: 20px 24px;
      border-bottom: 1px solid var(--gray-100);
      display: flex;
      align-items: baseline;
      gap: 14px;
    }
    .section-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; font-weight: 600; color: var(--brand-600);
    }
    .section-overline {
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--brand-900); font-weight: 700; opacity: 0.5;
    }
    .section-title {
      font-size: 22px; font-weight: 700; color: #1a1a2e; letter-spacing: -0.02em;
      font-family: 'Lora', Georgia, serif;
    }
    .section-body { padding: 24px; }

    /* ═══ MARKET SNAPSHOT — Original Design ═══ */
    .snapshot-banner {
      background: linear-gradient(135deg, var(--brand-950) 0%, #141a35 50%, var(--brand-900) 100%);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    .snapshot-banner::before {
      content: '';
      position: absolute;
      top: -40%; right: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(59,93,231,0.2) 0%, transparent 65%);
    }
    .snapshot-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      z-index: 1;
    }
    .snapshot-chart {
      padding: 28px 28px 20px;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .snapshot-chart-label {
      font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px;
    }
    .snapshot-chart-sub {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px; color: var(--brand-300); font-weight: 500;
    }
    /* Mini bar chart in CSS */
    .mini-bars {
      display: flex;
      align-items: flex-end;
      gap: 16px;
      height: 120px;
      margin-top: 16px;
      padding-top: 8px;
    }
    .mini-bar-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .mini-bar-val {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; font-weight: 600; color: #fff;
    }
    .mini-bar {
      width: 100%;
      border-radius: 4px 4px 0 0;
      transition: height 0.8s ease;
    }
    .mini-bar-year {
      font-size: 10px; color: var(--gray-400); font-weight: 500; margin-top: 4px;
    }

    .snapshot-table {
      padding: 28px;
    }
    .snapshot-table-title {
      font-size: 14px; font-weight: 800; color: #fff;
      letter-spacing: -0.01em; margin-bottom: 14px;
    }
    .snap-row {
      display: flex;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 12.5px;
    }
    .snap-row:last-child { border-bottom: none; }
    .snap-row-key { color: var(--brand-300); font-weight: 500; }
    .snap-row-val { color: #fff; font-weight: 600; text-align: right; }

    .snapshot-footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 16px 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      position: relative;
      z-index: 1;
    }
    .snap-foot-item { }
    .snap-foot-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--gray-400); font-weight: 500;
    }
    .snap-foot-val { font-size: 13px; font-weight: 700; color: #fff; margin-top: 2px; }

    /* ═══ KEY TAKEAWAYS (V5 style) ═══ */
    .takeaway-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .takeaway-card {
      padding: 24px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 10px;
      position: relative;
      transition: all 0.2s;
    }
    .takeaway-card:hover { border-color: var(--brand-600); box-shadow: 0 6px 24px rgba(15,29,61,0.06); }
    .takeaway-card::before {
      content: attr(data-num);
      position: absolute; top: 16px; right: 16px;
      font-size: 44px; font-weight: 800; color: var(--gray-100); line-height: 1;
    }
    .tk-title {
      font-size: 14px; font-weight: 700; color: var(--brand-900);
      letter-spacing: -0.01em; margin-bottom: 6px; max-width: 82%;
    }
    .tk-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

    /* ═══ INSIGHTS PROSE ═══ */
    .prose h2 {
      font-family: 'Lora', Georgia, serif;
      font-size: 18px; font-weight: 700; color: #1a1a2e;
      margin-top: 32px; margin-bottom: 12px; padding-bottom: 10px;
      border-bottom: 2px solid var(--brand-900); letter-spacing: -0.01em;
    }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 {
      font-size: 15px; font-weight: 700; color: var(--brand-900);
      margin-top: 24px; margin-bottom: 10px; padding-bottom: 8px;
      border-bottom: 1px solid var(--gray-200); letter-spacing: -0.01em;
    }
    .prose h3:first-child { margin-top: 0; }
    .prose h4 {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--brand-600); font-weight: 600;
      margin-top: 20px; margin-bottom: 8px;
    }
    .prose p {
      font-size: 14.5px; color: #2b2b2b; line-height: 1.8; margin-bottom: 14px;
    }
    .prose ul { list-style: none; padding: 0; margin-bottom: 16px; }
    .prose li {
      padding: 10px 0 10px 26px; position: relative;
      font-size: 14.5px; color: #2b2b2b; line-height: 1.7;
      border-bottom: 1px solid var(--gray-100);
    }
    .prose li:last-child { border-bottom: none; }
    .prose li::before {
      content: '';
      position: absolute; left: 0; top: 17px;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--brand-900);
    }
    .prose b, .prose strong { color: #1a1a2e; font-weight: 600; }

    /* Pull quote */
    .pull-quote {
      margin: 24px 0; padding: 20px 24px;
      border-left: 3px solid var(--brand-600);
      background: var(--brand-50); border-radius: 0 10px 10px 0;
    }
    .pull-quote p {
      font-size: 15px; font-weight: 600; color: var(--brand-900);
      line-height: 1.6; margin: 0;
    }

    /* Chart placeholder */
    .chart-ph {
      margin: 20px 0; border-radius: 12px;
      border: 1px solid var(--gray-200); overflow: hidden;
    }
    .chart-ph-inner {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--brand-950), #1a2040);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 8px;
    }
    .chart-ph-inner i { color: rgba(255,255,255,0.06); font-size: 48px; }
    .chart-ph-inner span { color: rgba(255,255,255,0.25); font-size: 13px; font-weight: 500; }

    /* ═══ SEGMENT ANALYSIS — Tabs ═══ */
    .seg-tabs {
      display: flex; gap: 0;
      border-bottom: 2px solid var(--gray-200);
      margin-bottom: 0;
    }
    .seg-tab {
      padding: 10px 20px;
      font-size: 13px; font-weight: 600; color: var(--gray-400);
      background: none; border: none; cursor: pointer;
      border-bottom: 2px solid transparent; margin-bottom: -2px;
      transition: all 0.15s; font-family: 'Inter', sans-serif;
    }
    .seg-tab:hover { color: #1a1a2e; }
    .seg-tab.active { color: var(--brand-900); border-bottom-color: var(--brand-900); font-weight: 700; }

    .seg-panel { display: none; padding: 24px 0 0; }
    .seg-panel.active { display: block; }

    /* Market segments — clean content rows, no boxes */
    .seg-item {
      padding: 18px 0;
      border-bottom: 1px solid var(--gray-100);
    }
    .seg-item:last-child { border-bottom: none; }
    .seg-item-head {
      display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
    }
    .seg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .seg-item-name { font-size: 14px; font-weight: 700; color: #1a1a2e; }
    .seg-item-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px; color: var(--brand-900); font-weight: 600;
      background: var(--brand-50); padding: 2px 8px; border-radius: 3px;
    }
    .seg-item-desc { font-size: 13.5px; color: #3d3d3d; line-height: 1.7; padding-left: 18px; }

    /* Geography panel — content + image */
    .geo-content { margin-bottom: 20px; }
    .geo-content p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
    .geo-content strong { color: var(--gray-800); }
    .geo-img-frame {
      border-radius: 12px; overflow: hidden;
      border: 1px solid var(--gray-200);
      background: var(--gray-100);
    }
    .geo-img-placeholder {
      aspect-ratio: 16/9;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 8px;
      background: linear-gradient(135deg, var(--brand-950), #1a2040);
    }
    .geo-img-placeholder i { color: rgba(255,255,255,0.06); font-size: 40px; }
    .geo-img-placeholder span { color: rgba(255,255,255,0.25); font-size: 13px; font-weight: 500; }
    .geo-img-placeholder small { color: rgba(255,255,255,0.12); font-size: 11px; }

    /* ═══ COMPETITIVE ═══ */
    .comp-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px; border-radius: 10px;
      border: 1px solid var(--gray-200); margin-bottom: 10px;
      transition: all 0.2s;
    }
    .comp-item:hover { border-color: var(--brand-600); background: var(--brand-50); }
    .comp-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--brand-50); border: 1px solid var(--brand-100);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .comp-icon i { color: var(--brand-600); font-size: 14px; }
    .comp-title { font-size: 14px; font-weight: 700; color: var(--brand-900); }
    .comp-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-top: 2px; }

    /* ═══ PLAYERS ═══ */
    .players-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .player-chip {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px; border-radius: 8px;
      border: 1px solid var(--gray-200); background: var(--gray-50);
      transition: all 0.2s;
    }
    .player-chip:hover { border-color: var(--gray-300); box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
    .player-logo {
      width: 28px; height: 28px; border-radius: 6px;
      background: var(--brand-900);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .player-logo span {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.7);
    }
    .player-name { font-size: 12.5px; font-weight: 600; color: var(--gray-800); }

    /* ═══ TIMELINE ═══ */
    .tl-item {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid var(--gray-100);
    }
    .tl-item:last-child { border-bottom: none; }
    .tl-date {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; font-weight: 600; color: var(--brand-600);
      text-transform: uppercase; padding-top: 2px;
    }
    .tl-title { font-size: 14px; font-weight: 700; color: var(--brand-900); margin-bottom: 3px; }
    .tl-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

    /* ═══ TOC ═══ */
    .toc-item { border-bottom: 1px solid var(--gray-200); }
    .toc-trigger {
      width: 100%; padding: 14px 0;
      display: flex; justify-content: space-between; align-items: center;
      background: none; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 14px; font-weight: 700; color: var(--gray-800); text-align: left;
    }
    .toc-trigger:hover { color: var(--brand-600); }
    .toc-trigger i { font-size: 10px; color: var(--gray-400); transition: transform 0.2s; }
    details[open] .toc-trigger i { transform: rotate(180deg); }
    .toc-body { padding: 0 0 14px; }
    .toc-entry {
      display: flex; align-items: center; gap: 10px;
      padding: 6px 0; font-size: 13px; color: var(--gray-500);
    }
    .toc-entry-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; color: var(--gray-300); min-width: 28px;
    }

    /* ═══ SCOPE ═══ */
    .scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .scope-card {
      display: flex; gap: 12px; padding: 16px;
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: 8px; align-items: flex-start;
    }
    .scope-card i { color: var(--brand-500); font-size: 14px; margin-top: 2px; }
    .scope-card-title { font-size: 13px; font-weight: 700; color: var(--gray-800); }
    .scope-card-desc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

    /* ═══ FAQ ═══ */
    .faq-item { border-bottom: 1px solid var(--gray-100); padding: 0; }
    .faq-trigger {
      width: 100%; padding: 16px 0;
      display: flex; justify-content: space-between; align-items: center;
      background: none; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 14px; font-weight: 700; color: var(--gray-800); text-align: left;
    }
    .faq-trigger:hover { color: var(--brand-600); }
    .faq-trigger i { font-size: 10px; color: var(--gray-400); flex-shrink: 0; }
    .faq-answer { padding-bottom: 16px; font-size: 14px; color: var(--gray-500); line-height: 1.75; }

    /* ═══ RELATED ═══ */
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .related-card {
      border: 1px solid var(--gray-200); border-radius: 12px;
      overflow: hidden; background: #fff; transition: all 0.2s;
    }
    .related-card:hover { border-color: var(--gray-300); box-shadow: 0 6px 24px rgba(0,0,0,0.05); transform: translateY(-2px); }
    .related-card-img { height: 80px; display: flex; align-items: center; justify-content: center; }
    .related-card-img i { font-size: 28px; color: rgba(255,255,255,0.1); }
    .related-card-body { padding: 14px 16px; }
    .related-card-title { font-size: 13px; font-weight: 700; color: var(--gray-800); }
    .related-card-desc { font-size: 11.5px; color: var(--gray-500); margin-top: 5px; line-height: 1.5; }
    .related-card-link {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 10px; font-size: 11px; font-weight: 600;
      color: var(--brand-600); text-decoration: none;
    }
    .related-card-link:hover { color: var(--brand-700); }

    /* ═══ RIGHT SIDEBAR ═══ */
    .right-sb { position: sticky; top: 76px; align-self: start; }
    .buy-box {
      border-radius: 12px; border: 1px solid var(--gray-200);
      background: #fff; overflow: hidden;
    }
    .buy-header {
      padding: 20px; border-bottom: 1px solid var(--gray-100);
      background: linear-gradient(135deg, var(--brand-50), #fff);
    }
    .buy-overline { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); font-weight: 600; }
    .buy-title { font-size: 18px; font-weight: 800; color: var(--brand-900); margin-top: 2px; }
    .buy-sub { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
    .buy-body { padding: 16px 20px; }
    .buy-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 11px; border-radius: 8px;
      font-size: 13px; font-weight: 600; text-decoration: none;
      transition: all 0.2s; cursor: pointer; border: none;
      font-family: 'Inter', sans-serif; margin-bottom: 8px;
    }
    .buy-btn i { font-size: 11px; }
    .buy-btn-primary { background: var(--brand-600); color: #fff; }
    .buy-btn-primary:hover { background: var(--brand-700); }
    .buy-btn-ghost { background: #fff; color: var(--gray-600); border: 1px solid var(--gray-200); }
    .buy-btn-ghost:hover { background: var(--gray-50); }
    .buy-btn-ghost i { color: var(--gray-400); font-size: 10px; }
    .del-box {
      margin: 0 20px 20px; padding: 14px;
      background: var(--gray-50); border-radius: 8px; border: 1px solid var(--gray-100);
    }
    .del-title { font-size: 11px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
    .del-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 12px; color: var(--gray-500); }
    .del-item i { color: var(--accent-500); font-size: 8px; }
    .analyst-card {
      margin-top: 14px; border-radius: 12px; border: 1px solid var(--gray-200);
      background: #fff; padding: 18px 20px;
    }
    .analyst-row { display: flex; gap: 10px; align-items: center; }
    .analyst-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--brand-50); display: flex; align-items: center; justify-content: center;
    }
    .analyst-avatar i { color: var(--brand-600); font-size: 13px; }
    .analyst-title { font-size: 13px; font-weight: 700; color: var(--gray-800); }
    .analyst-sub { font-size: 11px; color: var(--gray-500); }
    .analyst-link {
      display: block; margin-top: 12px; text-align: center;
      font-size: 12px; font-weight: 600; color: var(--brand-600); text-decoration: none;
    }
    .analyst-link:hover { color: var(--brand-700); }

    /* ═══ CTA BANNER ═══ */
    .cta-banner {
      background: var(--brand-950); padding: 56px 0; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(59,93,231,0.15) 0%, transparent 60%);
    }
    .cta-banner h2 { font-size: 26px; font-weight: 800; color: #fff; position: relative; z-index: 1; }
    .cta-banner p { font-size: 14px; color: rgba(164,188,253,0.6); margin-top: 8px; max-width: 420px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
    .cta-btns { margin-top: 24px; display: flex; justify-content: center; gap: 10px; position: relative; z-index: 1; }

    /* ═══ FOOTER ═══ */
    .footer { background: var(--brand-950); border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
    .footer-desc { font-size: 12px; color: rgba(164,188,253,0.4); line-height: 1.7; margin-top: 12px; }
    .footer-socials { display: flex; gap: 8px; margin-top: 16px; }
    .footer-social {
      width: 32px; height: 32px; border-radius: 6px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(164,188,253,0.4); text-decoration: none; font-size: 11px; transition: all 0.2s;
    }
    .footer-social:hover { color: #fff; background: rgba(255,255,255,0.08); }
    .footer-col-title {
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
      color: rgba(164,188,253,0.35); font-weight: 600; margin-bottom: 16px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a { font-size: 12px; color: rgba(164,188,253,0.5); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      margin-top: 40px; padding: 18px 0;
      border-top: 1px solid rgba(255,255,255,0.04);
      text-align: center; font-size: 11px; color: rgba(164,188,253,0.25);
    }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1100px) {
      .hero-grid { grid-template-columns: 1fr; }
      .offers-card { max-width: 420px; }
      .content-grid { grid-template-columns: 1fr; }
      .side-nav { display: none; }
      .right-sb { position: static; }
      .snapshot-top { grid-template-columns: 1fr; }
      .snapshot-chart { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .nav-links { display: none; }
      .players-grid { grid-template-columns: repeat(2, 1fr); }
      .related-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .hero h1 { font-size: 28px; }
      .takeaway-grid { grid-template-columns: 1fr; }
      .scope-grid { grid-template-columns: 1fr; }
      .players-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

/* Share buttons (added for PHP template) */
.share-btn {
  width:28px;height:28px;border-radius:6px;border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;
  color:var(--gray-400);text-decoration:none;font-size:11px;
  transition:all 0.15s;background:none;cursor:pointer;
}
.share-btn:hover { color:var(--brand-600); border-color:var(--brand-600); }