/* Sparket — shared stylesheet, extracted from homepage v24 */
  /* ── TOKENS ─────────────────────────────────────── */
  :root {
    --yellow:    #F5C400;
    --yellow-dk: #C99D00;
    --black:     #0A0A0A;
    --dark:      #111111;
    --dark2:     #161616;
    --dark3:     #1E1E1E;
    --border:    rgba(255,255,255,0.08);
    --white:     #FFFFFF;
    --gray:      #999999;
    --gray-lt:   #CCCCCC;
    --radius:    6px;
    --radius-lg: 12px;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --max:       1200px;
    --transition: 0.25s ease;
  }

  /* ── RESET ───────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  /* Anchored sections stop below the fixed 68px nav, not under it */
  section[id] { scroll-margin-top: 84px; }
  .product-card[id] { scroll-margin-top: 120px; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── UTILITY ─────────────────────────────────────── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
  .tag {
    display: inline-block;
    background: rgba(245,196,0,0.12);
    color: var(--yellow);
    border: 1px solid rgba(245,196,0,0.3);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
  }
  .divider {
    width: 48px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 24px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--yellow);
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-primary:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); transform: translateY(-1px); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-ghost:hover { gap: 10px; }
  .arrow { font-size: 16px; }

  /* ── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
  }
  .nav-logo img { height: 32px; width: auto; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gray-lt);
    padding: 8px 14px;
    border-radius: var(--radius);
    display: block;
    transition: var(--transition);
  }
  .nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
  .nav-links > li > a.has-dropdown { white-space: nowrap; }
  .nav-links > li > a.has-dropdown::after { content: '\00A0▾'; font-size: 10px; opacity: 0.5; }
  .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 200;
  }
  .nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a {
    display: block;
    padding: 9px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-lt);
    border-radius: var(--radius);
    transition: var(--transition);
  }
  .dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-demo {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
  }
  .nav-demo:hover { background: var(--yellow-dk); transform: translateY(-1px); }

  /* ── HERO ─────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
  }
  /* Animated grid background */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(245,196,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,196,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  }
  /* Yellow glow orb */
  .hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(245,196,0,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 80px 0;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  .hero-eyebrow .tag { margin-bottom: 0; }
  .cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--gray-lt);
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .cert-pill .dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--yellow);
  }
  .hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-lt);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .hero-proof-item {
    text-align: center;
  }
  .hero-proof-num {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
  }
  .hero-proof-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }
  .hero-proof-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
  }

  /* Hero right: phone mockup */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark2);
    border-radius: 36px;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  }
  .phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--black);
    border-radius: 12px;
    z-index: 10;
  }
  .phone-screen {
    position: absolute;
    inset: 0;
    padding: 48px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .phone-brand {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .live-badge {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .live-dot { width: 5px; height: 5px; background: #ef4444; border-radius: 50%; animation: pulse 1.5s infinite; }
  .bet-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
  }
  .bet-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .bet-event {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }
  .bet-type {
    font-size: 10px;
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .bet-pool {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    color: var(--yellow);
  }
  .bet-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
  }
  .bet-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 7px 10px;
    cursor: pointer;
    transition: var(--transition);
  }
  .bet-option:hover { background: rgba(245,196,0,0.1); }
  .bet-option.selected { background: rgba(245,196,0,0.15); border: 1px solid rgba(245,196,0,0.4); }
  .bet-player { font-size: 11px; font-weight: 600; color: var(--gray-lt); }
  .bet-odds { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--white); }
  .bet-btn {
    margin-top: 10px;
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
  }
  .mini-leaderboard {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
  }
  .lb-title {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
  }
  .lb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .lb-row:last-child { border-bottom: none; }
  .lb-rank { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--gray); width: 20px; }
  .lb-name { font-size: 12px; color: var(--gray-lt); flex: 1; padding: 0 8px; }
  .lb-amount { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--yellow); }
  /* Floating glow behind phone */
  .phone-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245,196,0,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }
  /* Floating stat cards */
  .float-card {
    position: absolute;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    backdrop-filter: blur(8px);
  }
  .float-card.left {
    left: -60px;
    top: 30%;
  }
  .float-card.right {
    right: -40px;
    bottom: 25%;
  }
  .float-card-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
  }
  .float-card-label {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
  }

  /* ── TRUST / PARTNER STRIPS (Trusted By + Powered By) ── */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 44px 0;
    background: var(--dark);
    overflow: hidden;
  }
  .trust-bar-label {
    text-align: center;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 32px;
  }
  /* Logo grid — static, centered, curated set */
  .logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 44px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
  }
  /* Each partner logo slot. During the logo pass, drop an <img> inside.
     Slots are balanced by VISUAL AREA, not raw height: wide wordmarks are
     width-capped, tall crests get extra height so they don't render small. */
  .logo-slot {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Logos display in their real colors. A logo too dark for the
       black background should be swapped for a lighter brand variant. */
    transition: opacity 0.25s ease;
  }
  .logo-slot img {
    max-height: 46px;
    max-width: 150px;
    width: auto;
    height: auto;
    display: block;
  }
  /* --- Shape buckets: balance perceived size across logo silhouettes --- */
  /* Wordmark: wide & short — cap width so it doesn't dominate the row. */
  .logo-slot.shape-wordmark { height: 40px; }
  .logo-slot.shape-wordmark img { max-height: 40px; max-width: 178px; }
  /* Standard: roughly square-ish — baseline sizing. */
  .logo-slot.shape-standard { height: 50px; }
  .logo-slot.shape-standard img { max-height: 50px; max-width: 132px; }
  /* Crest: tall & narrow — give extra height, looser width so it reads big. */
  .logo-slot.shape-crest { height: 76px; }
  .logo-slot.shape-crest img { max-height: 76px; max-width: 110px; }
  /* Placeholder state — shown until real logo images are dropped in */
  .logo-slot.placeholder {
    filter: none;
    opacity: 1;
    min-width: 130px;
    padding: 12px 20px;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .logo-slot.placeholder:hover { opacity: 1; }
  /* "Powered By" variant sits inside a section, slightly different framing */
  .powered-by {
    padding: 56px 0 8px;
    text-align: center;
  }
  .powered-by .trust-bar-label {
    color: var(--gray);
    margin-bottom: 28px;
  }
  @media (max-width: 700px) {
    .logo-grid { gap: 16px 28px; }
    .logo-slot { height: 36px; }
    .logo-slot img { max-height: 36px; max-width: 110px; }
    .logo-slot.shape-wordmark { height: 32px; }
    .logo-slot.shape-wordmark img { max-height: 32px; max-width: 138px; }
    .logo-slot.shape-standard { height: 40px; }
    .logo-slot.shape-standard img { max-height: 40px; max-width: 104px; }
    .logo-slot.shape-crest { height: 58px; }
    .logo-slot.shape-crest img { max-height: 58px; max-width: 86px; }
  }

  /* ── STATS BAND ───────────────────────────────────── */
  .stats-band {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }

  /* ── SECTION HEADERS ──────────────────────────────── */
  .section-header {
    margin-bottom: 56px;
  }
  .section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-header h2 em {
    font-style: normal;
    color: var(--yellow);
  }
  .section-header p {
    font-size: 17px;
    color: var(--gray-lt);
    max-width: 560px;
    line-height: 1.7;
  }
  .section-header.center { text-align: center; }
  .section-header.center p { margin: 0 auto; }

  /* ── HOW IT WORKS ─────────────────────────────────── */
  .how-section {
    padding: 112px 0;
    background: var(--black);
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
  }
  .pillar {
    background: var(--dark);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
  }
  .pillar:hover {
    background: var(--dark2);
    border-color: rgba(245,196,0,0.2);
    transform: translateY(-4px);
  }
  .pillar-num {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 900;
    color: rgba(245,196,0,0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
  }
  .pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(245,196,0,0.1);
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .pillar h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--white);
  }
  .pillar p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ── ECOSYSTEM (HUB DIAGRAM — v4) ───────────────────── */
.ecosystem-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
  }

.ecosystem-pitch {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-lt);
  }

.ecosystem-pitch strong { color: var(--white); font-weight: 600; }

/* ════════════════════════════════════════════════
     SPARKET.AI HUB DIAGRAM (tightened)
     viewBox + container = 760 x 480
     Hub centered at (380, 240), hub box ≈ 300 x 200
     ════════════════════════════════════════════════ */
  .hub-diagram {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    aspect-ratio: 760 / 480;
  }

.hub-diagram svg.connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

/* The central hub — FIXED dimensions so SVG line math is reliable */
  .hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(245,196,0,0.14) 0%, rgba(245,196,0,0.04) 100%);
    border: 1.5px solid rgba(245,196,0,0.55);
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(245,196,0,0.08), 0 0 80px rgba(245,196,0,0.15);
  }

.hub-center::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 1px solid rgba(245,196,0,0.18);
    pointer-events: none;
  }

.hub-tier {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 8px;
  }

.hub-name {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 6px;
  }

.hub-name span { color: var(--yellow); }

.hub-tagline {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-lt);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 12px;
  }

.hub-stat {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 10px;
  }

.hub-stat small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
    opacity: 0.75;
  }

.hub-patent {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid rgba(245,196,0,0.4);
    padding-bottom: 2px;
    transition: all 0.2s ease;
  }

.hub-patent:hover {
    color: var(--white);
    border-color: var(--white);
  }

/* Spoke nodes */
  .spoke-node {
    position: absolute;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-lt);
    white-space: nowrap;
    z-index: 2;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 7px;
  }

.spoke-node:hover {
    border-color: rgba(245,196,0,0.5);
    color: var(--white);
    background: var(--dark3);
  }

.spoke-node::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(245,196,0,0.12);
  }

.spoke-node.featured {
    background: rgba(245,196,0,0.08);
    border-color: rgba(245,196,0,0.45);
    color: var(--yellow);
  }

.spoke-node.featured::before {
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(245,196,0,0.2);
  }

/*
    Spoke positions — tightened. Container = 760 x 480.
    Hub edges: roughly x: 230–530, y: 140–340.
    Spokes positioned just outside hub edges.
  */
  /* Pixel positions — spokes well clear of the 300x240 hub at (380,240) */
  .spoke-1 { top: 14px; left: 50%; transform: translateX(-50%); }

/* top: Sports */
  .spoke-2 { top: 50px; right: 14px; }

/* top-right: Pop Culture */
  .spoke-3 { top: 50%;  right: 14px; transform: translateY(-50%); }

/* right: Reality TV */
  .spoke-4 { bottom: 50px; right: 14px; }

/* bottom-right: Esports */
  .spoke-5 { bottom: 14px; left: 50%; transform: translateX(-50%); }

/* bottom: Custom & Local */
  .spoke-6 { bottom: 50px; left: 14px; }

/* bottom-left: Award Shows */
  .spoke-7 { top: 50%;  left: 14px; transform: translateY(-50%); }

/* left: Current Events */
  .spoke-8 { top: 50px;  left: 14px; }

/* top-left: Politics */

  /* ════════════════════════════════════════════════
     ORBITAL SPIN-IN
     Each spoke rotates one full orbit around the hub
     before landing in its final position.
     Triggered by .animated class added via IntersectionObserver.
     ════════════════════════════════════════════════ */

  /* Pre-animation state */
  .hub-diagram:not(.animated) .spoke-node { opacity: 0; }

.hub-diagram:not(.animated) svg.connectors { opacity: 0; }

/* Lines fade in after spokes have all landed */
  .hub-diagram.animated svg.connectors {
    opacity: 1;
    transition: opacity 0.7s ease-out 1.5s;
  }

/* Each spoke runs a shared keyframe; transform-origin is set per-spoke
     so the rotation happens around the hub center.
     The 'rotate' CSS property composes with the existing 'transform' property
     instead of overriding it, so the spoke's positional transform is preserved. */
  .hub-diagram.animated .spoke-node {
    animation: spokeOrbit 1.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  }

/* Transform-origin for each spoke: offset from spoke center to hub center.
     Spoke positions (approximate centers in container px) and hub center (380, 240):
       spoke-1 top (380, 31)       → origin offset (0, +209)
       spoke-2 top-right (691, 67) → origin offset (-311, +173)
       spoke-3 right (691, 240)    → origin offset (-311, 0)
       spoke-4 bot-right (691, 413)→ origin offset (-311, -173)
       spoke-5 bottom (380, 449)   → origin offset (0, -209)
       spoke-6 bot-left (69, 413)  → origin offset (+311, -173)
       spoke-7 left (69, 240)      → origin offset (+311, 0)
       spoke-8 top-left (69, 67)   → origin offset (+311, +173)
     transform-origin uses (x y) where positive values move right/down from element's own center. */
  .hub-diagram.animated .spoke-1 { transform-origin: 50%  calc(50% + 209px); animation-delay: 0.00s; }

.hub-diagram.animated .spoke-2 { transform-origin: calc(50% - 311px) calc(50% + 173px); animation-delay: 0.08s; }

.hub-diagram.animated .spoke-3 { transform-origin: calc(50% - 311px) 50%;  animation-delay: 0.16s; }

.hub-diagram.animated .spoke-4 { transform-origin: calc(50% - 311px) calc(50% - 173px); animation-delay: 0.24s; }

.hub-diagram.animated .spoke-5 { transform-origin: 50%  calc(50% - 209px); animation-delay: 0.32s; }

.hub-diagram.animated .spoke-6 { transform-origin: calc(50% + 311px) calc(50% - 173px); animation-delay: 0.40s; }

.hub-diagram.animated .spoke-7 { transform-origin: calc(50% + 311px) 50%;  animation-delay: 0.48s; }

.hub-diagram.animated .spoke-8 { transform-origin: calc(50% + 311px) calc(50% + 173px); animation-delay: 0.56s; }

/* One full orbit (360°) ending at 0°.
     Using 'rotate' (the standalone CSS property) instead of 'transform: rotate()'
     so it composes with each spoke's existing positional 'transform'. */
  @keyframes spokeOrbit {
    0%   { opacity: 0; rotate: -360deg; }
    20%  { opacity: 1; }
    100% { opacity: 1; rotate: 0deg; }
  }

/* Respect user preference */
  @media (prefers-reduced-motion: reduce) {
    .hub-diagram .spoke-node { opacity: 1 !important; animation: none !important; rotate: 0 !important; }
    .hub-diagram svg.connectors { opacity: 1 !important; transition: none !important; }
  }

/* Golf quote tucked under Custom & Local on desktop */
  .golf-quote {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    white-space: nowrap;
    z-index: 2;
  }

.golf-quote .emoji { font-style: normal; font-size: 16px; }

/* ════════════════════════════════════════════════
     POWERS DIVIDER
     ════════════════════════════════════════════════ */
  .powers-divider {
    margin: 80px auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    position: relative;
  }

.powers-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--yellow));
  }

.powers-line.right {
    background: linear-gradient(to left, transparent, var(--yellow));
  }

.powers-pill {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 0 4px rgba(245,196,0,0.12), 0 0 40px rgba(245,196,0,0.25);
  }

.powers-pill svg {
    width: 18px;
    height: 18px;
  }

.powers-arrow {
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
  }

.powers-arrow svg {
    width: 640px;
    max-width: 100%;
    height: 56px;
  }

/* ════════════════════════════════════════════════
     LAYER CARDS
     ════════════════════════════════════════════════ */
  .layer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
    position: relative;
  }

.layer-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.25s ease;
    position: relative;
  }

.layer-box:hover {
    border-color: rgba(245,196,0,0.4);
    transform: translateY(-2px);
  }

.layer-box .layer-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

.layer-box h3 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--yellow);
    margin-bottom: 18px;
  }

.layer-box h3 em { font-style: normal; color: var(--white); }

.layer-feats { list-style: none; padding: 0; margin: 0; }

.layer-feats li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }

.layer-feats li:first-child { border-top: none; padding-top: 4px; }

.feat-mark {
    color: var(--yellow);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 14px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 1px;
  }

.feat-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2px;
  }

.feat-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
  }

/* ════════════════════════════════════════════════
     BRACKET CONNECTOR (Layers → Built For)
     ════════════════════════════════════════════════ */
  .bracket-wrap {
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
  }

.bracket-wrap svg {
    width: 100%;
    max-width: 720px;
    height: 72px;
    display: block;
  }

/* ════════════════════════════════════════════════
     BUILT FOR ROW
     ════════════════════════════════════════════════ */
  .built-for-wrap { margin-bottom: 36px; }

.built-for-label {
    text-align: center;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
  }

.built-for-label::before,
  .built-for-label::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 120px;
    background: linear-gradient(to right, transparent, rgba(245,196,0,0.5), transparent);
  }

.built-for {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

.audience {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 14px;
    text-align: center;
    transition: all 0.25s ease;
  }

.audience:hover {
    border-color: rgba(245,196,0,0.4);
    background: rgba(245,196,0,0.04);
    transform: translateY(-2px);
  }

.audience-mark {
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
  }

.audience-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 4px;
  }

.audience-desc {
    font-size: 11.5px;
    color: var(--gray);
    line-height: 1.4;
  }

/* ════════════════════════════════════════════════
     CTA STRIP
     ════════════════════════════════════════════════ */
  .ecosystem-cta-strip {
    background: linear-gradient(135deg, rgba(245,196,0,0.08) 0%, rgba(245,196,0,0.02) 100%);
    border: 1px solid rgba(245,196,0,0.3);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-lt);
    margin-top: 40px;
  }

.ecosystem-cta-strip strong { color: var(--white); font-weight: 600; }

/* ════════════════════════════════════════════════
     MOBILE
     ════════════════════════════════════════════════ */
  @media (max-width: 900px) {
    .ecosystem-section .section-header h2 { font-size: 32px; }

    /* Hub diagram collapses to flex column: hub on top, spokes below as wrapped pills */
    .hub-diagram {
      aspect-ratio: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .hub-diagram svg.connectors { display: none; }

    .hub-center {
      position: static;
      transform: none;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
    }

    /* All spokes become flex items in document order */
    .spoke-node {
      position: static;
      transform: none;
      display: inline-flex;
      margin: 0;
    }

    /* Reordered list: top → top-right → right → bottom-right → bottom-left → left → top-left, custom&local LAST */
    .spokes-mobile-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      max-width: 480px;
    }
    .spokes-mobile-wrap .spoke-node {
      flex: 0 0 auto;
    }
    .golf-quote-mobile-only {
      display: block;
      text-align: center;
      font-size: 14px;
      color: var(--gray);
      font-style: italic;
      margin-top: 4px;
    }
    .golf-quote-desktop { display: none; }

    .layer-row { grid-template-columns: 1fr; }
    .built-for { grid-template-columns: repeat(2, 1fr); }
    .bracket-wrap { display: none; }
  }

/* Desktop-only: hide mobile-only golf quote */
  @media (min-width: 901px) {
    .golf-quote-mobile-only { display: none; }
    .spokes-mobile-wrap { display: contents; }
  }

  /* ── SPARKET.AI CALLOUT ────────────────────────────── */
  .ai-section {
    padding: 112px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .ai-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,196,0,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .ai-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }
  .ai-left h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .ai-left h2 em {
    color: var(--yellow);
    font-style: normal;
  }
  .ai-left p {
    font-size: 16px;
    color: var(--gray-lt);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .ai-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 32px;
  }
  .ai-metric {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
  }
  .ai-metric-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
  }
  .ai-metric-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }
  .ai-pilot {
    background: var(--dark2);
    border: 1px solid rgba(245,196,0,0.25);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
  }
  .ai-pilot .pilot-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
  }
  .ai-pilot h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .ai-pilot ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ai-pilot ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-lt);
    line-height: 1.5;
  }
  .ai-pilot ul li::before {
    content: '→';
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  @media (max-width: 900px) {
    .layers-grid { grid-template-columns: 1fr; }
    .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ── PRODUCTS ──────────────────────────────────────── */
  .products-section {
    padding: 112px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 64px;
  }
  .product-card {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
  }
  .product-card:hover::before { transform: scaleX(1); }
  .product-card:hover { border-color: rgba(245,196,0,0.2); background: var(--dark2); }
  .product-card-badge {
    display: inline-block;
    background: rgba(245,196,0,0.1);
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(245,196,0,0.2);
    margin-bottom: 20px;
  }
  .product-card h3 {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .product-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .product-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
  }
  .product-stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow);
  }
  .product-stat-label {
    font-size: 13px;
    color: var(--gray);
  }
  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }
  .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-lt);
  }
  .product-features li::before {
    content: '▸';
    color: var(--yellow);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
  }
  .product-card-icon {
    position: absolute;
    bottom: 32px;
    right: 32px;
    font-size: 64px;
    opacity: 0.06;
    line-height: 1;
  }

  /* ── CASE STUDY ───────────────────────────────────── */
  .case-section {
    padding: 112px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
  }
  .case-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .case-quote {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
    padding-left: 28px;
  }
  .case-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 64px;
    color: var(--yellow);
    font-family: Georgia, serif;
    line-height: 1;
  }
  .case-attr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .case-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    flex-shrink: 0;
  }
  .case-attr-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
  }
  .case-attr-role {
    font-size: 13px;
    color: var(--gray);
  }
  .case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .case-metric {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 28px 24px;
  }
  .case-metric-num {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
  }
  .case-metric-label {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
  }
  .case-partner {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
  }
  .case-partner-logo {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .case-partner-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .case-partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .partner-tag {
    font-size: 12px;
    color: var(--gray-lt);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
  }

  /* ── IMPLEMENTATION ────────────────────────────────── */
  .impl-section {
    padding: 112px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
  }
  .timeline {
    display: flex;
    gap: 0;
    margin-top: 64px;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
  }
  .timeline-step {
    flex: 1;
    padding-top: 72px;
    padding-right: 24px;
    position: relative;
  }
  .timeline-dot {
    position: absolute;
    top: 24px;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--yellow);
    border-radius: 50%;
    border: 3px solid var(--dark);
    z-index: 1;
  }
  .timeline-week {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
  }
  .timeline-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }
  .timeline-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ── COMPLIANCE ────────────────────────────────────── */
  .compliance-section {
    padding: 112px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
  }
  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .compliance-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 40px;
  }
  .compliance-badge {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 28px 24px;
    transition: var(--transition);
  }
  .compliance-badge:hover { border-color: rgba(245,196,0,0.2); }
  .compliance-badge-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .compliance-badge h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }
  .compliance-badge p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
  }
  .state-map-placeholder {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
  }
  .state-count {
    font-family: var(--font-head);
    font-size: 96px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
  }
  .state-label {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }
  .state-sub {
    font-size: 14px;
    color: var(--gray);
  }

  /* ── AWARDS ────────────────────────────────────────── */
  .awards-section {
    padding: 80px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
  }
  .awards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
  }
  .award-item:hover { opacity: 1; }
  .award-badge {
    width: 72px;
    height: 72px;
    background: rgba(245,196,0,0.08);
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  .award-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    max-width: 80px;
    line-height: 1.4;
  }

  /* ── BLOG ───────────────────────────────────────────── */
  .blog-section {
    padding: 112px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
  }
  .blog-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 36px 32px;
    transition: var(--transition);
    cursor: pointer;
  }
  .blog-card:hover { background: var(--dark2); border-color: rgba(245,196,0,0.2); transform: translateY(-4px); }
  .blog-cat {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .blog-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--white);
  }
  .blog-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  /* ── FINAL CTA ──────────────────────────────────────── */
  .cta-section {
    padding: 120px 0;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .cta-section p {
    font-size: 18px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--black);
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-dark:hover { background: var(--dark2); border-color: var(--dark2); }
  .btn-transparent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--black);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius);
    border: 2px solid rgba(0,0,0,0.4);
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-transparent:hover { border-color: var(--black); background: rgba(0,0,0,0.06); }

  /* ── FOOTER ─────────────────────────────────────────── */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .footer-brand img { height: 28px; width: auto; margin-bottom: 16px; }
  .footer-tagline {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
  }
  .footer-socials {
    display: flex;
    gap: 10px;
  }
  .footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
  }
  .footer-social:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
  .footer-col h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-legal {
    font-size: 13px;
    color: var(--gray);
  }
  .footer-certs {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .cert-badge {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
  }

  /* ── RESPONSIVE ─────────────────────────────────────── */
  @media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .float-card { display: none; }
    .phone-frame { width: 240px; height: 480px; }
    .hero-visual { justify-content: center; }
    .case-inner { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    /* Mobile nav: keep visible, shrink, allow wrapping, hide secondary CTAs */
    .nav-inner { flex-wrap: wrap; padding: 8px 16px; gap: 8px; }
    .nav-logo img { height: 26px !important; }
    .nav-links { display: flex; flex-wrap: wrap; gap: 0; font-size: 12px; order: 3; width: 100%; justify-content: center; }
    .nav-links > li > a { padding: 6px 8px !important; font-size: 12px !important; letter-spacing: 0.04em !important; }
    .nav-links .dropdown { display: none !important; }
    .nav-cta .btn-ghost { font-size: 12px !important; letter-spacing: 0.04em !important; }
    .nav-cta { gap: 8px; }
    .nav-demo { padding: 8px 14px !important; font-size: 12px !important; }
    nav { height: auto !important; min-height: 56px; }
    .container { padding: 0 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: 1fr; }
    .case-metrics { grid-template-columns: 1fr; }
    .compliance-badges { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .awards-row { gap: 24px; }
    .timeline { flex-direction: column; }
    .timeline::before { display: none; }
    .timeline-step { padding-top: 0; padding-left: 36px; padding-bottom: 32px; }
    .timeline-dot { top: 0; left: 0; }
  }
