/* Access gate */
    .gate {
      min-height: calc(100vh - 64px);
      display: flex; align-items: center; justify-content: center;
      padding: 60px 24px;
      position: relative; overflow: hidden;
    }
    .gate::before {
      content: ""; position: absolute; inset: -20%;
      background:
        radial-gradient(ellipse 700px 400px at 25% 35%, rgba(0,230,118,0.18), transparent 65%),
        radial-gradient(ellipse 600px 350px at 80% 65%, rgba(245,166,35,0.10), transparent 65%);
      filter: blur(40px); pointer-events: none;
      animation: bgDrift 18s ease-in-out infinite;
    }
    .gate-card {
      width: 100%; max-width: 480px;
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative; z-index: 1;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
      text-align: center;
    }
    .gate-card::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.4), transparent 50%, rgba(245,166,35,0.3));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.45;
    }
    .gate-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(0, 230, 118, 0.10);
      border: 1px solid rgba(0, 230, 118, 0.25);
      color: var(--accent);
      padding: 6px 12px; border-radius: 999px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
      margin-bottom: 20px;
    }
    .gate-eyebrow .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
      box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
      animation: pulseDot 3s infinite;
    }
    .gate h1 {
      font-size: clamp(28px, 3.4vw, 36px);
      letter-spacing: -0.02em; margin-bottom: 12px;
    }
    .gate-sub {
      color: var(--text-sec); font-size: 15px;
      margin-bottom: 28px; line-height: 1.55;
    }
    .gate-form { display: flex; flex-direction: column; gap: 12px; }
    .gate-form input {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 13px 16px;
      color: var(--text);
      font-family: inherit; font-size: 15px;
      text-align: center;
      letter-spacing: 0.1em; font-weight: 700;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .gate-form input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
    }
    .gate-form input.error {
      border-color: var(--red);
      animation: gateShake 0.4s;
    }
    @keyframes gateShake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-8px); }
      75% { transform: translateX(8px); }
    }
    .gate-form button {
      background: var(--accent); color: #001b0c;
      border: 0; border-radius: 999px;
      padding: 13px 20px;
      font-size: 15px; font-weight: 800;
      cursor: pointer;
      position: relative; overflow: hidden;
      isolation: isolate;
      transition: transform .15s, box-shadow .2s;
    }
    .gate-form button::before {
      content: ""; position: absolute;
      top: 0; left: -120%; width: 80%; height: 100%;
      background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
      animation: ctaShine 5s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }
    .gate-form button:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0, 230, 118, 0.35);
    }
    .gate-link {
      margin-top: 18px;
      font-size: 13.5px; color: var(--text-sec);
    }
    .gate-link a { color: var(--accent); font-weight: 700; }
    .gate-link a:hover { text-decoration: underline; }

    /* Content (hidden until unlocked) */
    .pubs-content { display: none; }
    .pubs-content.unlocked { display: block; }

    /* Hero */
    .pub-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
    .pub-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;
    }
    .pub-hero > * { position: relative; z-index: 1; }
    .ph-grid {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 920px) { .ph-grid { grid-template-columns: 1fr; gap: 40px; } }
    .pub-hero h1 {
      font-size: clamp(40px, 5.6vw, 64px);
      line-height: 1.04; letter-spacing: -0.025em;
      margin-bottom: 22px;
    }
    .pub-hero h1 .accent {
      background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .pub-hero .lede {
      font-size: 18px; color: var(--text);
      max-width: 540px; margin-bottom: 28px;
    }
    .pub-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Hero illustration — animated QR table card + dashboard glimpse */
    .ph-illo { position: relative; display: grid; place-items: center; min-height: 480px; }
    .qr-card {
      width: 280px; background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px 24px;
      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); }
    }
    .qr-card::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.5), transparent 50%, rgba(245,166,35,0.32));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.55;
    }
    .qr-card .qr-eyebrow {
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 14px;
      text-align: center;
    }
    .qr-card .qr-title {
      font-size: 22px; font-weight: 900;
      text-align: center; margin-bottom: 4px;
      color: var(--text);
    }
    .qr-card .qr-pub {
      font-size: 13px; color: var(--accent);
      text-align: center; font-weight: 700;
      margin-bottom: 18px;
    }
    .qr-art {
      aspect-ratio: 1;
      background: #fff;
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 18px;
      display: grid; grid-template-columns: repeat(13, 1fr); gap: 2px;
    }
    .qr-pixel { aspect-ratio: 1; background: #000; border-radius: 1px; }
    .qr-pixel.off { background: transparent; }
    .qr-card .qr-foot {
      text-align: center; font-size: 13px;
      color: var(--text-sec); font-weight: 600;
    }
    .qr-card .qr-foot b { color: var(--text); }

    /* Floating orbit cells around QR */
    .ph-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); }
    }
    .ph-orbit.o1 { top: 8%; right: 5%; width: 60px; height: 60px; font-size: 22px; animation-delay: 0s; }
    .ph-orbit.o2 { bottom: 10%; left: 4%; width: 56px; height: 56px; font-size: 20px; animation-delay: 1.8s; }
    .ph-orbit.o3 {
      top: 40%; left: -10px; width: 44px; height: 44px;
      font-size: 16px; animation-delay: 3.2s;
      color: var(--accent); font-weight: 800;
    }
    .ph-orbit.o4 {
      bottom: 32%; right: -10px; width: 44px; height: 44px;
      font-size: 16px; 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 */
    .pub-section { padding: 80px 0; }
    .pub-section-title {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1; letter-spacing: -0.022em;
      margin-bottom: 14px;
    }
    .pub-section-sub {
      color: var(--text-sec); font-size: 17px;
      max-width: 640px; margin-bottom: 48px;
    }

    /* Benefits grid (what the pub gets) */
    .pub-benefits {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    @media (max-width: 980px) { .pub-benefits { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .pub-benefits { grid-template-columns: 1fr; } }
    .pub-benefit {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px 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;
    }
    .pub-benefit::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;
    }
    .pub-benefit:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 230, 118, 0.4);
      box-shadow: 0 22px 50px rgba(0, 230, 118, 0.08);
    }
    .pub-benefit:hover::before { opacity: 1; }
    .pub-benefit > * { position: relative; z-index: 1; }
    .pub-benefit .ico {
      width: 46px; height: 46px; border-radius: 13px;
      background: rgba(0, 230, 118, 0.10);
      border: 1px solid rgba(0, 230, 118, 0.18);
      color: var(--accent);
      display: grid; place-items: center;
      margin-bottom: 16px;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s;
    }
    .pub-benefit .ico svg { width: 24px; height: 24px; }
    .pub-benefit:hover .ico {
      transform: translateY(-3px) rotate(-6deg) scale(1.08);
      background: rgba(0, 230, 118, 0.18);
      box-shadow: 0 10px 24px rgba(0, 230, 118, 0.25);
    }
    .pub-benefit h3 { font-size: 16px; letter-spacing: -0.01em; margin-bottom: 6px; }
    .pub-benefit p { color: var(--text-sec); font-size: 14px; line-height: 1.55; }

    /* Why pubs (3 large reasons) */
    .pub-why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    @media (max-width: 880px) { .pub-why-grid { grid-template-columns: 1fr; } }
    .pub-why-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: 36px 32px;
      position: relative; overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    }
    .pub-why-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;
    }
    .pub-why-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 230, 118, 0.45);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    }
    .pub-why-card:hover::before { opacity: 1; }
    .pub-why-card > * { position: relative; z-index: 1; }
    .pub-why-card .wn-emoji {
      font-size: 40px; margin-bottom: 22px;
      animation: nmFloat 5s ease-in-out infinite;
    }
    .pub-why-card h3 {
      font-size: 22px; letter-spacing: -0.015em;
      margin-bottom: 10px;
    }
    .pub-why-card p { color: var(--text-sec); font-size: 15px; line-height: 1.6; }

    /* CTA section */
    .pub-cta {
      padding: 100px 0; position: relative; overflow: hidden;
    }
    .pub-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;
    }
    .pub-cta > * { position: relative; z-index: 1; }
    .pub-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-pubs.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;
    }
    .pub-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;
    }
    .pub-cta-card > * { position: relative; z-index: 1; }
    .pub-cta-card h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      letter-spacing: -0.022em; margin-bottom: 12px;
    }
    .pub-cta-card p { color: var(--text-sec); font-size: 16px; margin-bottom: 28px; }
    .pub-cta-card .cta-row { justify-content: center; }

    /* Compliance line */
    .compliance-line {
      text-align: center;
      font-size: 12.5px; color: var(--text-dim);
      letter-spacing: 0.04em;
      margin-top: 28px;
    }

    /* ── Live venue dashboard showcase ── */
    .dash-section { padding: 80px 0; position: relative; overflow: hidden; }
    .dash-grid {
      display: grid; grid-template-columns: 1fr 1.05fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 920px) { .dash-grid { grid-template-columns: 1fr; gap: 40px; } }
    .dash-copy h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1; letter-spacing: -0.022em; margin-bottom: 14px;
    }
    .dash-copy .lede { color: var(--text-sec); font-size: 17px; margin-bottom: 26px; }
    .dash-points { list-style: none; display: grid; gap: 14px; }
    .dash-points li {
      display: flex; align-items: flex-start; gap: 13px;
      font-size: 15px; color: var(--text); font-weight: 600;
    }
    .dash-points li .tick {
      width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
      background: rgba(0, 230, 118, 0.14); color: var(--accent);
      display: grid; place-items: center; font-size: 13px; font-weight: 900;
      margin-top: 1px;
    }
    .dash-points li span.sub { color: var(--text-sec); font-weight: 500; }

    /* Dashboard mockup card */
    .dash-illo { position: relative; display: grid; place-items: center; }
    .dash-card {
      width: 100%; max-width: 460px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 22px;
      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;
    }
    .dash-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: 24px; z-index: -1; filter: blur(22px); opacity: 0.3;
    }
    .dash-head {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 16px;
    }
    .dash-venue { font-size: 16px; font-weight: 800; color: var(--text); }
    .dash-venue span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
    .dash-live {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(218, 32, 32, 0.12); color: var(--red);
      padding: 5px 11px; border-radius: 999px;
      font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em;
    }
    .dash-live::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red);
      animation: livePulse 2.4s ease-in-out infinite;
    }
    @keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
    .dash-match {
      display: flex; align-items: center; gap: 12px;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 12px; padding: 12px 14px; margin-bottom: 14px;
    }
    .dash-match img { width: 28px; height: 28px; object-fit: contain; }
    .dash-match .dm-body { flex: 1; }
    .dash-match .dm-label { font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
    .dash-match .dm-teams { font-size: 14px; font-weight: 700; color: var(--text); }
    .dash-match .dm-time { font-size: 12px; color: var(--text-dim); font-weight: 700; }
    .dash-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px;
    }
    .dash-stat {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 12px; padding: 12px 8px; text-align: center;
    }
    .dash-stat .v {
      font-size: 22px; font-weight: 900; color: var(--accent);
      font-variant-numeric: tabular-nums; line-height: 1;
    }
    .dash-stat .v .unit { font-size: 12px; color: var(--text-sec); }
    .dash-stat .l { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }
    .dash-lb-head { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
    .dash-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: 8px 11px; margin-bottom: 5px;
      font-size: 12.5px; font-weight: 700;
    }
    .dash-lb-row:last-child { margin-bottom: 0; }
    .dash-lb-row .lb-rank { color: var(--text-dim); text-align: center; }
    .dash-lb-row .lb-table { color: var(--text); }
    .dash-lb-row .lb-hits { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }
    .dash-lb-row.lead { background: rgba(0, 230, 118, 0.10); border-color: rgba(0, 230, 118, 0.35); }

    /* Floating decorative cells */
    .dash-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; font-size: 20px;
      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;
    }
    .dash-orbit.d1 { top: 2%; left: -14px; width: 54px; height: 54px; animation-delay: 0s; }
    .dash-orbit.d2 { bottom: 6%; right: -16px; width: 50px; height: 50px; animation-delay: 2s;
      color: var(--gold); 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.2); }

    /* ── Alternating feature rows ── */
    .feat-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
      padding: 56px 0;
    }
    .feat-row.reverse .feat-copy { order: 2; }
    .feat-row.reverse .feat-illo { order: 1; }
    @media (max-width: 920px) {
      .feat-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
      .feat-row.reverse .feat-copy { order: 1; }
      .feat-row.reverse .feat-illo { order: 2; }
    }
    .feat-copy .feat-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 16px;
    }
    .feat-copy .feat-eyebrow .n {
      width: 24px; height: 24px; border-radius: 7px;
      background: rgba(0,230,118,0.14); color: var(--accent);
      display: grid; place-items: center; font-size: 12px; font-weight: 900;
    }
    .feat-copy h3 {
      font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12;
      letter-spacing: -0.02em; margin-bottom: 14px;
    }
    .feat-copy p { color: var(--text-sec); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
    .feat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .feat-tag {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 999px; padding: 6px 13px;
      font-size: 12.5px; font-weight: 700; color: var(--text-sec);
    }
    .feat-tag .dot { color: var(--accent); margin-right: 5px; }

    .feat-illo { position: relative; display: grid; place-items: center; min-height: 320px; }
    .feat-box {
      width: 100%; max-width: 420px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      position: relative; z-index: 2;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
      animation: nmFloat 8s ease-in-out infinite;
    }
    .feat-box::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.20), transparent 50%, rgba(245,166,35,0.12));
      border-radius: 24px; z-index: -1; filter: blur(22px); opacity: 0.3;
    }
    .feat-mini-label {
      font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-dim); margin-bottom: 14px;
    }

    /* Illo: QR card */
    .fi-qr { text-align: center; }
    .fi-qr .qr-grid {
      width: 150px; height: 150px; margin: 0 auto 16px;
      background: #fff; border-radius: 14px; padding: 11px;
      display: grid; grid-template-columns: repeat(13, 1fr); gap: 2px;
    }
    .fi-qr .qr-grid div { aspect-ratio: 1; border-radius: 1px; }
    .fi-qr .qr-grid div.on { background: #000; }
    .fi-qr .qr-cap { font-size: 14px; font-weight: 800; color: var(--text); }
    .fi-qr .qr-sub { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 3px; }

    /* Illo: mini bingo 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: poster */
    .fi-poster {
      aspect-ratio: 3/4; max-width: 280px; width: 100%;
      border-radius: 16px; overflow: hidden; position: relative;
      background: linear-gradient(160deg, #0d2818, #0a1a11);
      border: 1px solid var(--border);
      display: flex; flex-direction: column; justify-content: space-between;
      padding: 22px;
    }
    .fi-poster::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 300px 200px at 50% 0%, rgba(0,230,118,0.18), transparent 65%);
      pointer-events: none;
    }
    .fi-poster > * { position: relative; z-index: 1; }
    .fi-poster .pst-top { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-align: center; }
    .fi-poster .pst-teams { display: flex; align-items: center; justify-content: center; gap: 14px; }
    .fi-poster .pst-teams img { width: 52px; height: 52px; object-fit: contain; }
    .fi-poster .pst-vs { font-size: 20px; font-weight: 900; color: var(--text-dim); }
    .fi-poster .pst-name { text-align: center; font-size: 19px; font-weight: 900; color: var(--text); letter-spacing: -0.02em; line-height: 1.1; white-space: nowrap; }
    .fi-poster .pst-foot { text-align: center; }
    .fi-poster .pst-time { font-size: 26px; font-weight: 900; color: var(--accent); }
    .fi-poster .pst-cta { font-size: 11px; font-weight: 700; color: var(--text-sec); margin-top: 4px; }

    /* Illo: bar chart (guest counter) */
    .fi-chart { width: 100%; }
    .fi-chart .bars { display: flex; align-items: flex-end; gap: 14px; padding: 0 6px; }
    .fi-chart .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .fi-chart .bar-track { width: 100%; height: 150px; position: relative; }
    .fi-chart .bar {
      position: absolute; left: 0; right: 0; bottom: 0;
      border-radius: 8px 8px 0 0;
      background: linear-gradient(180deg, var(--accent), rgba(0,230,118,0.3));
      height: 0; transition: height 1.1s cubic-bezier(0.16,1,0.3,1);
    }
    .fi-chart .bar-lbl { font-size: 11px; font-weight: 700; color: var(--text-sec); }
    .fi-chart .bar-val { font-size: 13px; font-weight: 800; color: var(--accent); }

    /* Illo: pub-wide competition (prize + leaderboard) */
    .fi-group .fi-prize {
      display: flex; align-items: center; gap: 12px;
      background: linear-gradient(135deg, rgba(245,166,35,0.16), rgba(245,166,35,0.04));
      border: 1px solid rgba(245,166,35,0.4);
      border-radius: 12px; padding: 11px 14px; margin-bottom: 16px;
    }
    .fi-group .fi-prize-ico { font-size: 26px; line-height: 1; }
    .fi-group .fi-prize-label { font-size: 10px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text); }
    .fi-group .fi-prize-name { font-size: 16px; font-weight: 800; color: var(--gold); }
    .fi-group .lb-row {
      display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 11px; margin-bottom: 5px;
      font-size: 12.5px; font-weight: 700;
    }
    .fi-group .lb-row.win { background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.4); }
    .fi-group .lb-row.win span:nth-child(2) { color: var(--gold); }
    .fi-group .lb-row .r { color: var(--text-dim); text-align: center; }
    .fi-group .lb-row .h { color: var(--accent); font-weight: 800; }
    .fi-group .lb-foot { font-size: 11px; color: var(--text-sec); font-weight: 600; text-align: center; margin-top: 10px; }

    /* Illo: pricing (free month) */
    .fi-price { text-align: center; }
    .fi-price .badge {
      display: inline-block; background: rgba(0,230,118,0.14); color: var(--accent);
      border: 1px solid rgba(0,230,118,0.3);
      padding: 5px 14px; border-radius: 999px;
      font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .fi-price .big {
      font-size: 52px; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
      background: linear-gradient(135deg, var(--accent), #6effb0);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
      margin-bottom: 6px;
    }
    .fi-price .sub { font-size: 13px; color: var(--text-sec); margin-bottom: 18px; }
    .fi-price .months { display: flex; gap: 6px; justify-content: center; }
    .fi-price .m {
      flex: 1; max-width: 56px; padding: 10px 0; border-radius: 9px;
      font-size: 11px; font-weight: 800;
      background: var(--bg); border: 1px solid var(--border); color: var(--text-dim);
    }
    .fi-price .m.free { background: rgba(0,230,118,0.14); border-color: var(--accent); color: var(--accent); }

    /* Illo: support chat */
    .fi-chat { display: flex; flex-direction: column; gap: 10px; width: 100%; }
    .fi-chat .msg {
      max-width: 80%; padding: 11px 14px; border-radius: 14px;
      font-size: 13.5px; line-height: 1.45;
    }
    .fi-chat .msg.them {
      align-self: flex-start; background: var(--bg); border: 1px solid var(--border);
      color: var(--text); border-bottom-left-radius: 4px;
    }
    .fi-chat .msg.us {
      align-self: flex-end; background: var(--accent); color: #001b0c;
      font-weight: 600; border-bottom-right-radius: 4px;
    }
    .fi-chat .typing {
      align-self: flex-start; display: inline-flex; gap: 4px;
      background: var(--bg); border: 1px solid var(--border);
      padding: 12px 14px; border-radius: 14px; border-bottom-left-radius: 4px;
    }
    .fi-chat .typing span {
      width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim);
      animation: typingDot 1.4s ease-in-out infinite;
    }
    .fi-chat .typing span:nth-child(2) { animation-delay: 0.2s; }
    .fi-chat .typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typingDot {
      0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
      30% { opacity: 1; transform: translateY(-4px); }
    }

    /* Why pubs — animated stat numbers */
    .pub-why-card .wn-stat {
      font-size: clamp(34px, 4vw, 46px);
      font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      font-variant-numeric: tabular-nums;
    }
    .pub-why-card .wn-stat .unit {
      font-size: 0.5em; -webkit-text-fill-color: var(--accent); color: var(--accent);
    }
