/* Creator hero */
    .ch-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
    .ch-hero::before {
      content: ""; position: absolute; inset: -200px;
      background:
        radial-gradient(ellipse 600px 400px at 18% 30%, rgba(0,230,118,0.16), transparent 70%),
        radial-gradient(ellipse 500px 350px at 85% 20%, rgba(245,166,35,0.08), transparent 70%);
      filter: blur(40px); pointer-events: none;
    }
    .ch-hero > * { position: relative; z-index: 1; }
    .ch-grid {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 920px) { .ch-grid { grid-template-columns: 1fr; gap: 40px; } }
    .ch-hero h1 {
      font-size: clamp(38px, 5.4vw, 60px);
      line-height: 1.04; letter-spacing: -0.025em;
      margin-bottom: 22px;
    }
    .ch-hero h1 .accent {
      background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .ch-hero .lede {
      font-size: 18px; color: var(--text);
      max-width: 540px; margin-bottom: 28px;
    }

    /* Host link card (right side of hero) */
    .ch-illo { position: relative; display: grid; place-items: center; min-height: 540px; }
    .host-card {
      width: 100%; max-width: 410px;
      background: radial-gradient(ellipse 380px 240px at 50% 0%, rgba(0,230,118,0.14), transparent 70%), var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 22px;
      position: relative; z-index: 2;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      animation: nmFloat 8s ease-in-out infinite;
    }
    @keyframes nmFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .host-card::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.22), transparent 50%, rgba(245,166,35,0.14));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.3;
    }
    .host-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .host-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: color-mix(in srgb, var(--accent) 22%, transparent);
      border: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
      color: var(--accent);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .host-avatar svg { width: 24px; height: 24px; }
    .host-handle { font-size: 16px; font-weight: 800; color: var(--text); }
    .host-sub { font-size: 12px; color: var(--text-sec); font-weight: 600; }
    .host-link {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 12.5px; font-weight: 700;
      color: var(--text);
      letter-spacing: 0.02em;
      margin-bottom: 16px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 10px;
    }
    .host-link .link-text { color: var(--accent); }
    .host-link .copy-pill {
      background: rgba(0, 230, 118, 0.15);
      color: var(--accent);
      padding: 3px 8px; border-radius: 6px;
      font-size: 10.5px; font-weight: 800;
    }
    .host-board-mini {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
      margin-bottom: 14px;
    }
    .host-board-mini .cell {
      aspect-ratio: 1; background: var(--cell-bg);
      border: 1.5px solid transparent;
      border-radius: 6px;
      display: grid; place-items: center; padding: 4px;
      text-align: center; font-size: 10.5px; font-weight: 600;
      line-height: 1.18; color: var(--text-sec); overflow: hidden;
      transition: background 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    }
    .host-board-mini .cell.hit {
      background: rgba(0, 230, 118, 0.35);
      border-color: var(--accent);
      box-shadow: 0 0 8px rgba(0, 230, 118, 0.35);
      color: var(--accent);
    }
    .host-board-mini .cell.miss {
      background: rgba(218, 32, 32, 0.18);
      border-color: rgba(218, 32, 32, 0.5);
      color: #ff6b6b;
    }
    .host-lb-head {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: 10.5px; font-weight: 800; letter-spacing: 0.10em;
      color: var(--text-dim); text-transform: uppercase;
      margin-bottom: 8px;
    }
    .host-lb-row {
      display: grid; grid-template-columns: 22px 1fr auto;
      gap: 10px; align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 10px;
      margin-bottom: 4px;
      font-size: 12px; font-weight: 700;
    }
    .host-lb-row .lb-rank { color: var(--text-dim); text-align: center; font-size: 11px; }
    .host-lb-row .lb-name { color: var(--text); }
    .host-lb-row .lb-pts {
      color: var(--accent); font-weight: 800;
      font-variant-numeric: tabular-nums;
    }
    .host-lb-row.host-row {
      background: rgba(245, 166, 35, 0.10);
      border-color: rgba(245, 166, 35, 0.4);
    }
    .host-lb-row.host-row .lb-name, .host-lb-row.host-row .lb-rank { color: var(--gold); }

    /* Orbit cells */
    .ch-orbit {
      position: absolute;
      background: rgba(0, 230, 118, 0.10);
      border: 1.5px solid rgba(0, 230, 118, 0.4);
      border-radius: 14px;
      display: grid; place-items: center;
      z-index: 1;
      box-shadow: 0 0 24px rgba(0, 230, 118, 0.18);
      backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
      animation: orbitFloat 7s ease-in-out infinite;
    }
    @keyframes orbitFloat {
      0%, 100% { transform: translate(0, 0) rotate(0); }
      33%      { transform: translate(8px, -12px) rotate(8deg); }
      66%      { transform: translate(-7px, 8px) rotate(-6deg); }
    }
    .ch-orbit.o1 { top: 4%; right: -10px; width: 60px; height: 60px; font-size: 22px; animation-delay: 0s; }
    .ch-orbit.o2 { bottom: 8%; left: -16px; width: 56px; height: 56px; font-size: 22px; animation-delay: 1.8s; }
    .ch-orbit.o3 {
      top: 42%; right: -34px; width: 44px; height: 44px;
      font-size: 17px; animation-delay: 3.2s;
      color: var(--accent); font-weight: 800;
    }
    .ch-orbit.o4 {
      bottom: 36%; left: -30px; width: 44px; height: 44px;
      font-size: 17px; animation-delay: 5s;
      color: var(--gold); font-weight: 800;
      background: rgba(245, 166, 35, 0.10);
      border-color: rgba(245, 166, 35, 0.4);
      box-shadow: 0 0 24px rgba(245, 166, 35, 0.22);
    }

    /* Section base */
    .ch-section { padding: 80px 0; }
    .ch-section-title {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1; letter-spacing: -0.022em;
      margin-bottom: 14px;
    }
    .ch-section-sub {
      color: var(--text-sec); font-size: 17px;
      max-width: 620px; margin-bottom: 48px;
    }

    /* 5-step row */
    .step-row {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      position: relative;
    }
    .step-row::before {
      content: ""; position: absolute;
      top: 24px; left: 5%; right: 5%; height: 2px;
      background: linear-gradient(90deg, var(--accent), #6effb0 50%, var(--gold));
      opacity: 0.4;
      z-index: 0;
    }
    @media (max-width: 880px) {
      .step-row { grid-template-columns: 1fr 1fr; }
      .step-row::before { display: none; }
    }
    @media (max-width: 480px) { .step-row { grid-template-columns: 1fr; } }
    .step-item {
      position: relative; z-index: 1;
      text-align: center;
      padding: 0 6px;
    }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--accent); color: #001b0c;
      display: grid; place-items: center;
      font-weight: 900; font-size: 18px;
      margin: 0 auto 16px;
      box-shadow: 0 10px 28px rgba(0, 230, 118, 0.4);
      position: relative;
    }
    .step-num::after {
      content: ""; position: absolute; inset: 0;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
      animation: stepPulse 2.4s ease-in-out infinite;
    }
    @keyframes stepPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
      50%      { box-shadow: 0 0 0 12px rgba(0, 230, 118, 0); }
    }
    .step-item h4 {
      font-size: 15.5px; letter-spacing: -0.01em;
      margin-bottom: 6px;
    }
    .step-item p { color: var(--text-sec); font-size: 13.5px; line-height: 1.5; margin: 0; }

    /* What creators get — 8 grid */
    .ch-perks {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    @media (max-width: 980px) { .ch-perks { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .ch-perks { grid-template-columns: 1fr; } }
    .ch-perk {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      position: relative; overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    }
    .ch-perk::before {
      content: ""; position: absolute; inset: -1px;
      background: radial-gradient(ellipse 280px 200px at 50% 0%, rgba(0,230,118,0.12), transparent 70%);
      opacity: 0; transition: opacity 0.4s; pointer-events: none;
    }
    .ch-perk:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 230, 118, 0.4);
      box-shadow: 0 22px 50px rgba(0, 230, 118, 0.08);
    }
    .ch-perk:hover::before { opacity: 1; }
    .ch-perk > * { position: relative; z-index: 1; }
    .ch-perk .ico {
      width: 42px; height: 42px; border-radius: 11px;
      background: rgba(0, 230, 118, 0.10);
      color: var(--accent);
      display: grid; place-items: center;
      font-size: 20px; margin-bottom: 14px;
    }
    .ch-perk h3 { font-size: 15px; letter-spacing: -0.01em; margin-bottom: 6px; }
    .ch-perk p { color: var(--text-sec); font-size: 13.5px; line-height: 1.5; margin: 0; }

    /* Before / During / After cards */
    .timeline-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    @media (max-width: 880px) { .timeline-grid { grid-template-columns: 1fr; } }
    .tl-card {
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.55) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      position: relative; overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    }
    .tl-card::before {
      content: ""; position: absolute; inset: -2px;
      background: radial-gradient(ellipse 380px 280px at 50% 0%, rgba(0,230,118,0.15), transparent 70%);
      opacity: 0; transition: opacity 0.4s; pointer-events: none;
    }
    .tl-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 230, 118, 0.4);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    }
    .tl-card:hover::before { opacity: 1; }
    .tl-card > * { position: relative; z-index: 1; }
    .tl-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .tl-tag::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
    .tl-quote {
      font-size: 19px; font-weight: 700;
      color: var(--text); line-height: 1.4;
      margin-bottom: 18px; letter-spacing: -0.012em;
    }
    .tl-meta {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: var(--text-sec);
    }
    .tl-meta .ava {
      width: 28px; height: 28px; border-radius: 50%;
      background: color-mix(in srgb, var(--accent) 22%, transparent);
      border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
      color: var(--accent);
      display: grid; place-items: center;
    }
    .tl-meta .ava svg { width: 15px; height: 15px; }

    /* Compliance band */
    .ch-compliance {
      max-width: 920px; margin: 80px auto 0;
      padding: 24px 28px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 18px;
      display: flex; align-items: center; gap: 18px;
      position: relative; overflow: hidden;
    }
    .ch-compliance::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 500px 200px at 25% 50%, rgba(0,230,118,0.06), transparent 70%);
      animation: bgDrift 12s ease-in-out infinite;
      pointer-events: none;
    }
    .ch-compliance > * { position: relative; z-index: 1; }
    .ch-compliance .shield {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(0, 230, 118, 0.10);
      color: var(--accent);
      display: grid; place-items: center; font-size: 20px;
      flex-shrink: 0;
    }
    .ch-compliance p {
      margin: 0; font-size: 14px; color: var(--text-sec);
      line-height: 1.55;
    }
    .ch-compliance p b { color: var(--text); }

    /* CTA */
    .ch-cta {
      padding: 100px 0; position: relative; overflow: hidden;
    }
    .ch-cta::before {
      content: ""; position: absolute; inset: -20%;
      background:
        radial-gradient(ellipse 700px 300px at 25% 50%, rgba(0,230,118,0.14), transparent 60%),
        radial-gradient(ellipse 600px 240px at 80% 50%, rgba(245,166,35,0.08), transparent 60%);
      animation: bgDrift 14s ease-in-out infinite;
      pointer-events: none;
    }
    .ch-cta > * { position: relative; z-index: 1; }
    .ch-cta-card {
      background-color: var(--surface);
      background-image:
        linear-gradient(135deg, rgba(10,12,15,0.92) 0%, rgba(10,12,15,0.82) 50%, rgba(10,12,15,0.94) 100%),
        url(../img/cta-creators.jpg);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 56px 44px;
      text-align: center;
      max-width: 760px; margin: 0 auto;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      position: relative; overflow: hidden;
    }
    .ch-cta-card::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 400px 200px at 50% 0%, rgba(0,230,118,0.10), transparent 70%);
      pointer-events: none;
    }
    .ch-cta-card > * { position: relative; z-index: 1; }
    .ch-cta-card h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      letter-spacing: -0.022em; margin-bottom: 12px;
    }
    .ch-cta-card p { color: var(--text-sec); font-size: 16px; margin-bottom: 28px; }
    .ch-cta-card .cta-row { justify-content: center; }

    /* ── Creator feature illustrations ── */
    /* Illo: host link */
    .fi-hostlink .hl-handle { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .fi-hostlink .hl-av {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, #F5A623, #d4890a);
      color: #001b0c; font-weight: 900; font-size: 16px;
      display: grid; place-items: center; flex-shrink: 0;
    }
    .fi-hostlink .hl-name { font-size: 15px; font-weight: 800; color: var(--text); }
    .fi-hostlink .hl-sub { font-size: 12px; color: var(--text-sec); }
    .fi-hostlink .hl-url {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 14px;
      font-size: 13.5px; font-weight: 700; color: var(--accent);
    }
    .fi-hostlink .hl-copy {
      background: rgba(0,230,118,0.15); color: var(--accent);
      padding: 4px 10px; border-radius: 6px; font-size: 10.5px; font-weight: 800;
    }

    /* Illo: mini board */
    .fi-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
    .fi-board .c { aspect-ratio: 1; background: var(--cell-bg); border-radius: 8px; border: 1.5px solid transparent; transition: all 0.5s; display: grid; place-items: center; padding: 4px; text-align: center; font-size: 8.5px; font-weight: 600; line-height: 1.15; color: var(--text-sec); overflow: hidden; }
    .fi-board .c.hit { background: rgba(0,230,118,0.30); border-color: var(--accent); box-shadow: 0 0 12px rgba(0,230,118,0.4); color: var(--accent); }
    .fi-board .c.miss { background: rgba(218, 32, 32, 0.18); border-color: rgba(218, 32, 32, 0.5); color: #ff6b6b; }

    /* Illo: leaderboard */
    .fi-lb .lb-row {
      display: grid; grid-template-columns: 24px 1fr auto; gap: 11px; align-items: center;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 9px; padding: 9px 12px; margin-bottom: 6px;
      font-size: 13px; font-weight: 700;
    }
    .fi-lb .lb-row:last-child { margin-bottom: 0; }
    .fi-lb .lb-row.host { background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.4); }
    .fi-lb .lb-row.host .r, .fi-lb .lb-row.host .nm { color: var(--gold); }
    .fi-lb .lb-row .r { color: var(--text-dim); text-align: center; }
    .fi-lb .lb-row .nm { color: var(--text); }
    .fi-lb .lb-row .pts { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }

    /* Illo: result card (app-style shareable result) */
    .fi-result { display: grid; place-items: center; width: 100%; }
    .fi-result .rc {
      width: 340px; max-width: 100%;
      background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
      border: 1px solid var(--border); border-radius: 20px;
      padding: 22px 22px 18px; position: relative; overflow: hidden;
      box-shadow: 0 22px 55px rgba(0,0,0,0.45);
    }
    .fi-result .rc::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 300px 190px at 50% 0%, rgba(0,230,118,0.16), transparent 65%);
      pointer-events: none;
    }
    .fi-result .rc > * { position: relative; z-index: 1; }
    .fi-result .rc-top {
      font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-dim); text-align: center; margin-bottom: 14px;
    }
    .fi-result .rc-trophy { font-size: 30px; text-align: center; line-height: 1; margin-bottom: 4px; }
    .fi-result .rc-bingo {
      font-size: 30px; font-weight: 900; letter-spacing: 0.04em; text-align: center;
      background: linear-gradient(135deg, var(--accent), #6effb0);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .fi-result .rc-subtitle { text-align: center; font-size: 12px; font-weight: 700; color: var(--text-sec); margin-top: 3px; margin-bottom: 16px; }
    .fi-result .rc-board { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; width: 152px; margin: 0 auto 18px; }
    .fi-result .rc-board i { aspect-ratio: 1; border-radius: 5px; background: var(--cell-bg); }
    .fi-result .rc-board i.h { background: rgba(0,230,118,0.28); box-shadow: inset 0 0 0 1.5px rgba(0,230,118,0.7); }
    .fi-result .rc-board i.w { background: rgba(0,230,118,0.5); box-shadow: 0 0 10px rgba(0,230,118,0.5), inset 0 0 0 1.5px var(--accent); }
    .fi-result .rc-board i.x { background: rgba(218,32,32,0.16); box-shadow: inset 0 0 0 1.5px rgba(218,32,32,0.45); }
    .fi-result .rc-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; padding: 5px 0; }
    .fi-result .rc-row span { color: var(--text-dim); font-weight: 700; letter-spacing: 0.04em; }
    .fi-result .rc-row b { color: var(--text); font-weight: 800; font-variant-numeric: tabular-nums; }
    .fi-result .rc-row.big b { color: var(--accent); font-size: 14px; }
    .fi-result .rc-foot {
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--border); padding-top: 13px; margin-top: 10px;
    }
    .fi-result .rc-who { display: flex; align-items: center; gap: 8px; min-width: 0; }
    .fi-result .rc-av {
      width: 24px; height: 24px; border-radius: 50%;
      background: color-mix(in srgb, var(--accent) 22%, transparent);
      border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
      color: var(--accent); display: grid; place-items: center; flex-shrink: 0;
    }
    .fi-result .rc-av svg { width: 13px; height: 13px; }
    .fi-result .rc-name { font-size: 12px; font-weight: 700; color: var(--text-sec); }
    .fi-result .rc-name b { color: var(--accent); font-weight: 800; }
    .fi-result .rc-share {
      background: var(--accent); color: #001b0c; border-radius: 999px;
      padding: 6px 15px; font-size: 11px; font-weight: 800; flex-shrink: 0;
    }

    /* Illo: story templates (app-style 9:16 phone) */
    .fi-story { display: grid; place-items: center; }
    .fi-story .phone {
      width: 248px; aspect-ratio: 9/16; border-radius: 32px;
      background: linear-gradient(165deg, #0f3320 0%, #0b2116 52%, #081310 100%);
      border: 6px solid #05080b; position: relative; overflow: hidden;
      padding: 20px 16px 18px; display: flex; flex-direction: column; gap: 14px;
      box-shadow: 0 26px 60px rgba(0,0,0,0.55);
    }
    .fi-story .phone::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 240px 220px at 50% 10%, rgba(0,230,118,0.30), transparent 60%);
      pointer-events: none;
    }
    .fi-story .phone::after {
      content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
      width: 78px; height: 6px; border-radius: 6px; background: rgba(0,0,0,0.45); z-index: 2;
    }
    .fi-story .phone > * { position: relative; z-index: 1; }
    .fi-story .st-bar { display: flex; gap: 4px; margin-top: 8px; }
    .fi-story .st-bar span { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.22); }
    .fi-story .st-bar span.on { background: var(--accent); }
    .fi-story .st-top { display: flex; align-items: center; gap: 9px; }
    .fi-story .st-av {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(0,230,118,0.18); border: 1.5px solid rgba(0,230,118,0.5);
      color: var(--accent); display: grid; place-items: center; flex-shrink: 0;
    }
    .fi-story .st-av svg { width: 16px; height: 16px; }
    .fi-story .st-who { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
    .fi-story .st-who b { font-size: 12.5px; font-weight: 800; color: #fff; }
    .fi-story .st-who span { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 600; }
    .fi-story .st-live {
      font-size: 9px; font-weight: 800; letter-spacing: 0.08em; color: #fff;
      background: var(--red); border-radius: 5px; padding: 3px 7px; flex-shrink: 0;
    }
    .fi-story .st-mid { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
    .fi-story .st-q { font-size: 20px; font-weight: 900; color: #fff; line-height: 1.25; letter-spacing: -0.01em; }
    .fi-story .st-board { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; width: 136px; }
    .fi-story .st-board i { aspect-ratio: 1; border-radius: 4px; background: rgba(255,255,255,0.08); }
    .fi-story .st-board i.h { background: var(--accent); box-shadow: 0 0 8px rgba(0,230,118,0.6); }
    .fi-story .st-link {
      text-align: center; font-size: 11px; font-weight: 700; color: #fff;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 999px; padding: 8px 0; backdrop-filter: blur(4px);
    }
    .fi-story .st-cta {
      background: var(--accent); color: #001b0c; border-radius: 999px;
      padding: 12px 0; text-align: center; font-size: 13px; font-weight: 800;
    }

    /* Illo: follow buttons */
    .fi-follow { text-align: center; }
    .fi-follow .fbtn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent); color: #001b0c;
      border-radius: 999px; padding: 12px 26px;
      font-size: 15px; font-weight: 800; margin-bottom: 18px;
    }
    .fi-follow .fcount {
      font-size: 38px; font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, var(--accent), #6effb0);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
      font-variant-numeric: tabular-nums; margin-bottom: 4px;
    }
    .fi-follow .flabel { font-size: 12.5px; color: var(--text-sec); font-weight: 600; }

    /* Illo: analytics chart */
    .fi-analytics { width: 100%; }
    .fi-analytics .ana-stats { display: flex; gap: 10px; margin-bottom: 16px; }
    .fi-analytics .ana-stat { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 10px; text-align: center; }
    .fi-analytics .ana-stat .v { font-size: 18px; font-weight: 900; color: var(--accent); font-variant-numeric: tabular-nums; }
    .fi-analytics .ana-stat .l { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-top: 4px; }
    .fi-analytics .ana-line { height: 70px; position: relative; }
    .fi-analytics .ana-line svg { width: 100%; height: 100%; overflow: visible; }
    .fi-analytics .ana-line path.area { fill: rgba(0,230,118,0.12); }
    .fi-analytics .ana-line path.line { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset 1.6s ease; }
    .fi-analytics.in path.line { stroke-dashoffset: 0; }

    /* Illo: founding host badge */
    .fi-badge { display: grid; place-items: center; }
    .fi-badge .medal {
      width: 120px; height: 120px; border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, rgba(245,166,35,0.35), rgba(245,166,35,0.08));
      border: 2px solid rgba(245,166,35,0.5);
      display: grid; place-items: center; position: relative;
      margin-bottom: 18px;
      animation: nmFloat 6s ease-in-out infinite;
    }
    .fi-badge .medal::before {
      content: ""; position: absolute; inset: -10px; border-radius: 50%;
      box-shadow: 0 0 40px rgba(245,166,35,0.3);
      animation: badgePulse 3s ease-in-out infinite;
    }
    @keyframes badgePulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
    .fi-badge .medal .star { font-size: 48px; }
    .fi-badge .b-title { font-size: 18px; font-weight: 900; color: var(--text); text-align: center; }
    .fi-badge .b-sub { font-size: 12.5px; color: var(--gold); font-weight: 700; text-align: center; margin-top: 4px; letter-spacing: 0.04em; }
