/* Shipsy Event Kit — shared component styles (nav, buttons, hero, bento, agenda,
   about, leaders, why cards, voices lightbox, case-study modal, reg modal,
   light/dark sections, footer, reveal). Link this on every event page.
   Event pages must NOT redefine brand tokens; those live in tokens.css. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    

    body { font-family: var(--sans); background: var(--ink); color: #fff; -webkit-font-smoothing: antialiased; padding-top: 64px; }
    h1, h2, h3, h4 { font-family: var(--sans); }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(18px); filter: blur(3px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), filter 0.65s var(--ease); }
    .reveal.in { opacity: 1; transform: none; filter: none; }
    .rv1 { transition-delay: 0ms; }
    .rv2 { transition-delay: 80ms; }
    .rv3 { transition-delay: 160ms; }
    .rv4 { transition-delay: 240ms; }
    .rv5 { transition-delay: 320ms; }
    .rv6 { transition-delay: 400ms; }
    .rv7 { transition-delay: 480ms; }

    /* Label */
    .lbl { display: inline-flex; align-items: center; gap: 10px; font: 700 13px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(100,160,255,0.90); margin-bottom: 24px; }
    .lbl::before { content: ''; width: 22px; height: 1px; background: currentColor; }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; gap: 8px; font: 600 13px/1 var(--sans); padding: 12px 24px; border-radius: 8px; border: 1.5px solid transparent; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.1s var(--ease); -webkit-user-select: none; user-select: none; }
    .btn:active { transform: scale(0.97); }
    .btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
    @media (hover: hover) and (pointer: fine) { .btn-blue:hover { background: var(--blue-600); box-shadow: 0 4px 18px rgba(47,91,255,0.40); } }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 6%;
      background: rgba(7,12,24,0.9); backdrop-filter: blur(16px) saturate(160%);
      border-bottom: 1px solid var(--border-dk);
      transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    }
    nav.scrolled { box-shadow: 0 4px 36px rgba(0,0,0,0.50); border-bottom-color: rgba(255,255,255,0.13); }
    .nav-logo { height: 22px; width: auto; display: block; }
    .nav-cta { font: 600 13px/1 var(--sans); padding: 10px 20px; border-radius: 8px; background: var(--blue); color: #fff; border: 1.5px solid var(--blue); text-decoration: none; white-space: nowrap; transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.1s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .nav-cta:hover { background: var(--blue-600); box-shadow: 0 4px 18px rgba(47,91,255,0.40); } }
    .nav-cta:active { transform: scale(0.97); }

    /* Nav co-host lockup (Shipsy + partner) */
    .nav-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
    .nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.20); flex: none; }
    .nav-event { font: 700 12px/1 var(--mono); letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.80); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .nav-partners { display: flex; align-items: center; gap: 14px; min-width: 0; }
    .nav-partner-lbl { font: 700 10px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.42); white-space: nowrap; }
    .nav-partner-link { display: flex; align-items: center; text-decoration: none; }
    .nav-partner-logo { height: 22px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.18s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .nav-partner-link:hover .nav-partner-logo { opacity: 1; } }
    @media (max-width: 720px) { .nav-partners, .nav-partner-only { display: none; } }

    /* ── PAGE (single column) ── */
    .page-grid { display: block; }
    .col-content { min-width: 0; background: var(--ink); }

    /* Hero CTA */
    .hero-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 6px; font: 700 15px/1 var(--sans); padding: 16px 30px; border-radius: 10px; background: var(--blue); color: #fff; border: 1.5px solid var(--blue); text-decoration: none; cursor: pointer; transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.15s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .hero-cta:hover { background: var(--blue-600); box-shadow: 0 10px 30px rgba(47,91,255,0.45); transform: translateY(-2px); } }
    .hero-cta:active { transform: scale(0.98); }

    /* ── MODAL ── */
    .modal-overlay { position: fixed; inset: 0; z-index: 500; display: flex; align-items: flex-start; justify-content: center; padding: 6vh 20px; background: rgba(3,8,20,0.72); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease); overflow-y: auto; }
    .modal-overlay.open { opacity: 1; visibility: visible; }
    .modal-card { position: relative; width: 100%; max-width: 460px; background: var(--ink-c); border: 1px solid var(--border-md); border-radius: 16px; padding: 34px 30px 30px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); transform: translateY(14px) scale(0.98); transition: transform 0.3s var(--ease); }
    .modal-overlay.open .modal-card { transform: none; }
    .modal-close { position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-dk); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; cursor: pointer; transition: background 0.18s var(--ease); }
    .modal-close:hover { background: rgba(255,255,255,0.12); }
    body.modal-open { overflow: hidden; }

    /* ── ABOUT LIMITLESS ── */
    #about { background: var(--ink-b); }
    .about-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; margin-bottom: 34px; }
    .about-body p { font-size: 16px; color: var(--text-dim); line-height: 1.85; margin-bottom: 16px; }
    .about-body p:last-child { margin-bottom: 0; }
    .about-stats { display: flex; flex-direction: column; gap: 22px; }
    .about-stat .num { font: 800 40px/1 var(--sans); color: var(--blue-b); font-variant-numeric: tabular-nums; }
    .about-stat .cap { font: 400 13px/1.4 var(--sans); color: var(--text-muted); margin-top: 6px; }
    .about-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 172px; gap: 12px; }
    .about-gallery figure { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-dk); }
    .about-gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
    .about-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .about-gallery figure:hover img { transform: scale(1.05); } }

    /* ── HERO ── */
    #hero {
      min-height: calc(100vh - 64px);
      display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
      padding: 88px 7% 96px;
      position: relative; overflow: hidden;
      background:
        linear-gradient(180deg, rgba(6,11,22,0.86) 0%, rgba(6,11,22,0.48) 42%, rgba(6,11,22,0.92) 100%),
        radial-gradient(105% 90% at 50% 42%, rgba(6,11,22,0.22) 0%, rgba(6,11,22,0.80) 100%),
        var(--hero-img) center 46% / cover no-repeat;
    }
    /* soft brand glow behind the headline */
    #hero::before {
      content: ''; position: absolute; z-index: 0; pointer-events: none;
      top: 8%; left: 50%; transform: translateX(-50%); width: 720px; height: 620px; border-radius: 50%;
      background: radial-gradient(circle, rgba(47,91,255,0.24) 0%, rgba(47,91,255,0) 66%);
      filter: blur(18px);
    }
    .hero-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
    .hero-event-tag { display: inline-flex; align-items: center; gap: 10px; font: 700 13px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 22px; padding: 8px 15px 8px 13px; border: 1px solid rgba(120,170,255,0.28); border-radius: 100px; background: rgba(47,91,255,0.08); }
    .hero-event-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-b); box-shadow: 0 0 0 0 rgba(47,91,255,0.6); animation: pulseDot 2.4s ease-out infinite; }

    h1 { font-size: clamp(42px, 5.6vw, 74px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; color: #fff; margin-bottom: 22px; text-wrap: balance; text-shadow: 0 2px 30px rgba(4,10,26,0.5); }
    .hero-theme { font-size: clamp(16px, 1.8vw, 19px); font-family: var(--sans); font-weight: 500; color: rgba(100,160,255,0.90); margin-bottom: 36px; line-height: 1.4; }

    /* Event card */
    .hero-events { display: grid; grid-template-columns: minmax(280px, 380px); gap: 12px; justify-content: center; margin: 0 auto; text-align: left; }
    .event-card { display: flex; flex-direction: column; background: rgba(8,16,34,0.66); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 20px 22px 20px; text-decoration: none; box-shadow: 0 20px 50px rgba(2,7,20,0.45); transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .event-card:hover { border-color: rgba(120,170,255,0.4); transform: translateY(-2px); } }
    .event-cityrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
    .event-city { display: inline-flex; align-items: center; gap: 8px; font: 700 12px/1 var(--mono); letter-spacing: 0.13em; text-transform: uppercase; color: rgba(120,170,255,0.98); }
    .event-city .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-b); box-shadow: 0 0 0 0 rgba(47,91,255,0.6); animation: pulseDot 2.4s ease-out infinite; }
    .event-seats { font: 700 10px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: #8AA8FF; padding: 5px 9px; border: 1px solid rgba(138,168,255,0.35); border-radius: 100px; background: rgba(47,91,255,0.14); }
    .event-date { font: 700 20px/1.15 var(--sans); color: #fff; margin-bottom: 3px; font-variant-numeric: tabular-nums; }
    .event-time { font: 400 13px/1 var(--sans); color: rgba(255,255,255,0.6); font-variant-numeric: tabular-nums; }
    .event-venue { display: flex; gap: 9px; align-items: flex-start; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.12); }
    .event-venue svg { flex-shrink: 0; margin-top: 2px; color: rgba(120,170,255,0.9); }
    .event-venue-name { display: block; font: 600 13px/1.4 var(--sans); color: rgba(255,255,255,0.92); }
    .event-venue-sub  { display: block; font: 400 12px/1.4 var(--sans); color: rgba(255,255,255,0.5); }
    @media (hover: hover) and (pointer: fine) { .event-card:hover .event-venue-name { text-decoration: underline; } }

    /* CTA row + microcopy */
    .hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
    .hero-note { font: 500 13px/1.5 var(--sans); color: rgba(255,255,255,0.6); }
    .hero-note strong { color: rgba(255,255,255,0.9); font-weight: 600; }

    /* Scroll cue */
    .scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; display: inline-flex; align-items: center; gap: 9px; font: 600 11px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
    .scroll-cue svg { animation: nudge 1.8s var(--ease) infinite; }

    @keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(47,91,255,0.55); } 70% { box-shadow: 0 0 0 9px rgba(47,91,255,0); } 100% { box-shadow: 0 0 0 0 rgba(47,91,255,0); } }
    @keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
    @media (prefers-reduced-motion: reduce) { .event-city .dot, .hero-event-tag::before { animation: none; } .scroll-cue svg { animation: none; } }

    /* ── SECTION base ── */
    .content-section { padding: 72px 7% 80px; border-top: 1px solid var(--border-dk); }
    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: clamp(28px, 3.6vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
    .section-header p { font-size: 17px; color: var(--text-dim); line-height: 1.7; max-width: 520px; }

    /* ── GIVEAWAYS ── */
    .giveaway-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
    .giveaway-card { background: var(--ink-c); border: 1px solid var(--border-dk); border-radius: 14px; padding: 24px 20px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .giveaway-card:hover { transform: translateY(-3px); border-color: rgba(120,170,255,0.28); } }
    .giveaway-img { width: 100%; height: 150px; display: flex; align-items: center; justify-content: center; }
    .giveaway-img img { max-height: 140px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
    .giveaway-card h3 { font-size: 14px; font-weight: 700; color: #fff; }
    @media (max-width: 860px) { .giveaway-cards { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 560px) { .giveaway-cards { grid-template-columns: repeat(2, 1fr); } }

    /* ── PARTNERS (co-host lockup) ── */
    .partner-row { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
    .partner-pill { text-decoration: none; display: flex; align-items: center; justify-content: center; height: 108px; padding: 22px 40px; background: #fff; border: 1px solid #E8E2D6; border-radius: 16px; box-shadow: 0 6px 20px rgba(10,23,52,0.06); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .partner-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,23,52,0.11); } }
    .partner-pill img { width: auto; max-width: 100%; height: 40px; object-fit: contain; }
    .partner-x { width: 22px; height: 1px; background: rgba(11,20,36,0.22); }
    @media (max-width: 560px) {
      .partner-row { gap: 20px; }
      .partner-pill { height: 84px; padding: 16px 26px; }
      .partner-pill img { height: 30px; }
      .partner-x { display: none; }
    }

    /* ── BENTO ── */
    #at-event { background: var(--ink-b); }
    .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; height: 400px; }
    .bento-card { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--border-dk); display: flex; flex-direction: column; justify-content: flex-end; }
    .bento-bg { position: absolute; inset: 0; }
    .bento-body { position: relative; z-index: 1; padding: 26px 22px; }
    .bento-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: var(--blue); font: 700 12px/1 var(--mono); color: #fff; margin-bottom: 12px; }
    .bento-tag { font: 700 11px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(100,160,255,0.80); margin-bottom: 8px; }
    .bento-card h3 { font-size: 18px; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
    .bento-card p { font-size: 13px; color: rgba(255,255,255,0.86); line-height: 1.6; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

    /* ── LIGHT SECTIONS (Shipsy warm paper) ── */
    .section-light { background: #FAF8F4; color: #0B1424; border-top-color: #E8E2D6; }
    .section-light .lbl { color: var(--blue); }
    .section-light .section-header h2 { color: #0B1424; }
    .section-light .section-header p { color: rgba(11,20,36,0.64); }
    .section-light .leaders-desc { color: rgba(11,20,36,0.64); }
    .section-light .logo-pill { background: #fff; border-color: #E8E2D6; box-shadow: 0 6px 20px rgba(10,23,52,0.06); }
    @media (hover: hover) and (pointer: fine) { .section-light .logo-pill:hover { box-shadow: 0 12px 28px rgba(10,23,52,0.11); } }
    .section-light .why-card { background: #fff; border-color: #E8E2D6; box-shadow: 0 6px 20px rgba(10,23,52,0.06); }
    .section-light .why-card h3 { color: #0B1424; }
    .section-light .why-card p { color: rgba(11,20,36,0.6); }
    .section-light .why-ic { background: #EEF3FF; color: #1E45E0; }

    /* ── THE SHIFT / VALUE ── */
    #why .section-header { margin-bottom: 40px; }
    #why .section-header p { max-width: 680px; }
    .why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .why-card { background: var(--ink-c); border: 1px solid var(--border-dk); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; }
    .why-ic { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(47,91,255,0.13); color: var(--blue-b); }
    .why-ic svg { width: 22px; height: 22px; }
    .why-card h3 { font-size: 16px; font-weight: 700; line-height: 1.3; color: #fff; }
    .why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ── AGENDA ── */
    #agenda {
      position: relative;
      background:
        linear-gradient(to right, rgba(6,15,32,0.975) 0%, rgba(6,15,32,0.93) 42%, rgba(6,15,32,0.74) 100%),
        linear-gradient(to bottom, var(--ink-b) 0%, rgba(6,15,32,0) 15%, rgba(6,15,32,0) 85%, var(--ink-b) 100%),
        var(--agenda-img) center 42% / cover no-repeat;
    }
    .agenda-list { list-style: none; max-width: 720px; }
    .agenda-item { display: grid; grid-template-columns: 132px 1fr; gap: 24px; }
    .agenda-time { font: 600 13px/1.5 var(--mono); color: rgba(138,168,255,0.95); text-align: right; padding-top: 1px; white-space: nowrap; font-variant-numeric: tabular-nums; }
    .agenda-body { position: relative; padding: 0 0 30px 28px; }
    .agenda-body::before { content: ''; position: absolute; left: 0; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: var(--blue-b); box-shadow: 0 0 0 4px rgba(47,91,255,0.15); z-index: 1; }
    .agenda-body::after { content: ''; position: absolute; left: 5px; top: 14px; bottom: -4px; width: 1.5px; background: var(--border-md); }
    .agenda-item:last-child .agenda-body::after { display: none; }
    .agenda-title { font: 600 16px/1.4 var(--sans); color: #fff; }
    .agenda-item.key .agenda-title { color: var(--blue-b); font-weight: 700; }
    .agenda-item.key .agenda-body::before { width: 13px; height: 13px; top: 3px; left: -1px; box-shadow: 0 0 0 5px rgba(47,91,255,0.20); }
    .agenda-tag { display: inline-flex; vertical-align: middle; font: 700 10px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-b); background: rgba(47,91,255,0.14); border-radius: 100px; padding: 5px 9px; margin-left: 10px; }

    /* ── LEADERS ── */
    #leaders.section-light { background: #FAF8F4; }
    .leaders-desc { font-size: 17px; color: var(--text-dim); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
    .logo-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .logo-pill { display: flex; align-items: center; justify-content: center; height: 72px; width: 168px; padding: 16px 22px; background: #fff; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
    @media (hover: hover) and (pointer: fine) { .logo-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.30); } }
    .logo-pill img { max-height: 38px; max-width: 124px; width: auto; height: auto; object-fit: contain; }
    .logo-pill.lg { padding: 12px 14px; }
    .logo-pill.lg img { max-height: 50px; max-width: 144px; }
    .logo-pill.xl { width: 220px; padding: 10px 16px; }
    .logo-pill.xl img { max-height: 46px; max-width: 188px; }
    .logo-pill.big { padding: 8px 14px; }
    .logo-pill.big img { max-height: 58px; max-width: 150px; }
    .logo-pill.more { background: transparent; border: 1px dashed var(--border-md); }

    /* ── SEE IT IN ACTION (voices) ── */
    #voices { background: var(--ink-b); }
    .voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .voice-card { display: block; text-decoration: none; cursor: pointer; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dk); border-radius: 16px; overflow: hidden; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
    @media (hover: hover) and (pointer: fine) {
      .voice-card:hover { border-color: var(--border-md); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
      .voice-card:hover .voice-thumb-img { transform: scale(1.04); }
      .voice-card:hover .voice-play-btn  { background: rgba(0,0,0,0.20); }
      .voice-card:hover .voice-play-icon { background: var(--blue); }
      .voice-card:hover .voice-play-icon svg path { fill: #fff; }
    }
    .voice-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
    .voice-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
    .voice-play-btn  { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.28); transition: background 0.2s var(--ease); }
    .voice-play-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease); }
    .voice-play-icon svg { display: block; margin-left: 3px; }
    .voice-info    { padding: 20px 22px 22px; }
    .voice-company { font: 700 10px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(120,170,255,0.85); margin-bottom: 9px; }
    .voice-title   { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.38; margin-bottom: 8px; }
    .voice-speaker { font-size: 12px; color: var(--text-muted); }

    /* Video lightbox */
    #video-overlay { position: fixed; inset: 0; z-index: 600; background: rgba(0,0,0,0.88); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 40px 24px; }
    #video-overlay.open { display: flex; }
    #video-container { position: relative; width: 100%; max-width: 980px; }
    #video-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: rgba(255,255,255,0.70); font-size: 32px; line-height: 1; cursor: pointer; padding: 4px 8px; transition: color 0.15s; font-family: inherit; }
    #video-close:hover { color: #fff; }
    #video-wrap { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
    #video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

    /* ── FINAL CTA ── */
    #cta { padding: 44px 7% 92px; background: var(--ink); }
    .cta-panel {
      position: relative; overflow: hidden;
      max-width: 1180px; margin: 0 auto;
      border-radius: 28px; padding: clamp(56px, 8vw, 104px) 32px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.10);
      background:
        radial-gradient(115% 135% at 16% -8%, rgba(45,120,255,0.42) 0%, rgba(45,120,255,0) 44%),
        radial-gradient(90% 120% at 94% 112%, rgba(255,106,61,0.32) 0%, rgba(255,106,61,0) 46%),
        linear-gradient(158deg, #0c1a3a 0%, #081428 55%, #060d1e 100%);
    }
    .cta-eyebrow { font: 500 13px/1 var(--mono); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(120,170,255,0.98); margin-bottom: 22px; }
    .cta-panel h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin: 0 auto 20px; max-width: 15ch; text-wrap: balance; }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,0.64); line-height: 1.6; max-width: 520px; margin: 0 auto 36px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .cta-primary, .cta-ghost { display: inline-flex; align-items: center; gap: 9px; font: 600 15px/1 var(--sans); padding: 16px 30px; border-radius: 10px; text-decoration: none; cursor: pointer; transition: background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.15s var(--ease); }
    .cta-primary { background: var(--blue); color: #fff; border: 1.5px solid var(--blue); }
    .cta-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.28); }
    @media (hover: hover) and (pointer: fine) {
      .cta-primary:hover { background: var(--blue-600); box-shadow: 0 10px 30px rgba(47,91,255,0.45); transform: translateY(-2px); }
      .cta-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
    }

    /* ── FOOTER ── */
    footer { padding: 32px 7% 36px; display: flex; flex-direction: column; gap: 22px; border-top: 1px solid var(--border-dk); }
    .footer-gartner { font-size: 12.5px; line-height: 1.65; color: var(--text-muted); max-width: 760px; }
    .footer-gartner strong { color: var(--text-dim); font-weight: 600; }
    .footer-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .footer-logo { height: 18px; width: auto; opacity: 0.50; }
    .footer-note { font-size: 13px; color: rgba(255,255,255,0.32); }

    /* ── STICKY FORM COLUMN ── */
    .col-form {
      background: var(--ink-c);
      border-left: 1px solid var(--border-dk);
      position: relative;
    }
    .form-sticky {
      position: sticky; top: 64px;
      padding: 36px 28px;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    .form-title { font: 700 18px/1.2 var(--sans); color: #fff; margin-bottom: 6px; }
    .form-subtitle { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 28px; }

    /* Form placeholder (until form link is added) */
    .form-placeholder { border: 1.5px dashed var(--border-md); border-radius: 10px; padding: 28px 20px; text-align: center; color: var(--text-muted); font-size: 13px; line-height: 1.6; }

    /* HubSpot form overrides */
    .hs-form-private { width: 100% !important; }
    .hs-form-private .hs-form-field { margin-bottom: 14px; }
    .hs-form-private label { display: block; font: 600 11px/1 var(--mono) !important; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted) !important; margin-bottom: 7px; }
    .hs-form-private input[type="text"],
    .hs-form-private input[type="email"],
    .hs-form-private input[type="tel"],
    .hs-form-private select,
    .hs-form-private textarea { background: rgba(255,255,255,0.06) !important; border: 1.5px solid var(--border-dk) !important; border-radius: 8px !important; padding: 11px 13px !important; font: 400 14px/1 var(--sans) !important; color: #fff !important; outline: none !important; width: 100% !important; box-shadow: none !important; transition: border-color 0.18s var(--ease); }
    .hs-form-private input:focus,
    .hs-form-private select:focus { border-color: var(--blue) !important; }
    .hs-form-private input::placeholder { color: rgba(255,255,255,0.26) !important; }
    .hs-form-private .hs-fieldtype-booleancheckbox label,
    .hs-form-private .legal-consent-container { color: var(--text-muted) !important; font-size: 12px !important; }
    .hs-form-private .hs-error-msgs { list-style: none; margin-top: 4px; }
    .hs-form-private .hs-error-msgs label { color: #ff7070 !important; font-size: 12px !important; letter-spacing: 0; text-transform: none; }
    .hs-form-private .hs-button { width: 100% !important; padding: 14px !important; background: var(--blue) !important; color: #fff !important; border: none !important; border-radius: 8px !important; font: 700 14px/1 var(--sans) !important; cursor: pointer !important; transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease) !important; margin-top: 4px !important; }
    .hs-form-private .hs-button:hover { background: var(--blue-600) !important; box-shadow: 0 4px 18px rgba(47,91,255,0.40) !important; }
    .submitted-message { color: var(--text-dim) !important; font-size: 15px !important; line-height: 1.7 !important; text-align: center; padding: 16px 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .page-grid { grid-template-columns: 1fr 360px; }
    }
    @media (max-width: 860px) {
      .page-grid { grid-template-columns: 1fr; }
      .col-form { border-left: none; border-top: 1px solid var(--border-dk); }
      .form-sticky { position: static; max-height: none; }
      .bento-grid { grid-template-columns: 1fr 1fr; height: auto; }
      .bento-card { height: 220px; }
      .why-cards { grid-template-columns: 1fr 1fr; }
      .voices-grid { grid-template-columns: 1fr; }
      .about-top { grid-template-columns: 1fr; gap: 28px; }
      .about-stats { flex-direction: row; flex-wrap: wrap; gap: 28px; }
      .about-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    }
    @media (max-width: 560px) {
      .bento-grid { grid-template-columns: 1fr; }
      .why-cards { grid-template-columns: 1fr; }
      .bento-card { height: 200px; }
      .agenda-item { grid-template-columns: 92px 1fr; gap: 14px; }
      .agenda-time { font-size: 12px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-events { grid-template-columns: 1fr; }
      .footer-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    }

    /* Animations */
    @keyframes numPop { 0%{opacity:0;transform:scale(0.60)} 60%{transform:scale(1.18)} 100%{opacity:1;transform:scale(1)} }
    .bento-card.in .bento-num { animation: numPop 0.45s cubic-bezier(.33,1,.68,1) 0.22s both; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none !important; }
      .bento-card.in .bento-num { animation: none !important; }
    }
