    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --indigo:      #2D2A8F;
      --indigo-deep: #1E1A6E;
      --magenta:     #C41F7A;
      --yellow:      #F5C800;
      --lavender:    #EAE8F8;
      --lavender-dark: #B8B3E8;
      --white:       #FFFFFF;
      --gray-50:     #F8F8FC;
      --gray-100:    #EEECF8;
      --gray-700:    #3A3560;
      --gray-900:    #1A1830;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--indigo-deep);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 105px;
    }
    .nav-logo {
      display: inline-flex; align-items: center; gap: 0;
      color: var(--white); font-weight: 900; font-size: 2.125rem;
      letter-spacing: -0.04em; text-decoration: none;
      line-height: 1; white-space: nowrap; user-select: none;
    }
    .nav-logo img { height: 85px; width: auto; display: block; margin-right: -0.55rem; }
    .nav-logo .x { color: var(--yellow); }

    .nav-links { display: flex; gap: 1.7rem; list-style: none; align-items: center; }
    .nav-links > li { position: relative; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      font-size: 1.23rem; font-weight: 600; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--yellow); }
    .nav-cta {
      background: var(--magenta); color: var(--white) !important;
      padding: 0.72rem 1.8rem; border-radius: 10px;
      font-size: 1.23rem; font-weight: 800 !important; letter-spacing: 0.01em;
      box-shadow: 0 6px 22px rgba(196,31,122,0.5);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
    }
    .nav-cta:hover {
      transform: translateY(-2px); background: #d62a88;
      box-shadow: 0 10px 30px rgba(196,31,122,0.6);
    }
    .nav-cta .cta-badge {
      background: var(--yellow); color: var(--indigo-deep);
      font-size: 0.72rem; font-weight: 900; letter-spacing: 0.03em;
      padding: 0.18rem 0.5rem; border-radius: 999px; margin-left: 0.55rem;
      vertical-align: middle;
    }
    .nav-cta.pulse { animation: cta-pulse 2.4s ease-in-out infinite; }
    @keyframes cta-pulse {
      0%, 100% { box-shadow: 0 6px 22px rgba(196,31,122,0.5); }
      50%      { box-shadow: 0 6px 28px rgba(196,31,122,0.85), 0 0 0 6px rgba(196,31,122,0.12); }
    }
    @media (prefers-reduced-motion: reduce) { .nav-cta.pulse { animation: none; } }

    /* ── ANNOUNCEMENT BAR ── */
    .announce-bar {
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      flex-wrap: wrap;
      background: var(--yellow); color: var(--indigo-deep);
      text-decoration: none; font-size: 0.95rem; font-weight: 600;
      padding: 0.7rem 5%; text-align: center;
      transition: background 0.2s;
    }
    .announce-bar:hover { background: #ffd61f; }
    .announce-bar strong { font-weight: 900; }
    .announce-bar .announce-cta {
      font-weight: 800; text-decoration: underline; text-underline-offset: 3px;
    }

    /* ── HAMBURGER + MOBILE MENU ── */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px;
      z-index: 320;
    }
    .nav-hamburger span {
      display: block; height: 3px; width: 100%; background: var(--white);
      border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mobile-menu {
      position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
      background: var(--indigo-deep); z-index: 310;
      padding: 96px 1.4rem 2rem; overflow-y: auto;
      transform: translateX(100%); transition: transform 0.3s ease;
      box-shadow: -12px 0 40px rgba(0,0,0,0.4);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a {
      display: block; color: rgba(255,255,255,0.88); text-decoration: none;
      font-size: 1.05rem; font-weight: 600; padding: 0.85rem 0.6rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu a:hover { color: var(--yellow); }
    .mobile-menu-group {
      color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 1.2rem 0.6rem 0.3rem; margin: 0;
    }
    .mobile-menu a.mobile-menu-sub { padding-left: 1.4rem; font-size: 0.98rem; font-weight: 500; color: rgba(255,255,255,0.7); }
    .mobile-menu a.mobile-menu-cta {
      background: var(--magenta); color: var(--white); text-align: center;
      border-radius: 8px; margin-top: 1.4rem; border: none; font-weight: 800;
    }
    .menu-backdrop {
      display: none; position: fixed; inset: 0; z-index: 305;
      background: rgba(10,8,40,0.5); opacity: 0; transition: opacity 0.3s;
    }
    .menu-backdrop.open { display: block; opacity: 1; }

    /* ── NAV DROPDOWN ── */
    .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.3rem; }
    .nav-dropdown-toggle .caret { font-size: 0.7rem; transition: transform 0.2s; }
    .nav-dropdown:hover .caret { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
      background: var(--white); border-radius: 10px; list-style: none;
      padding: 0.5rem; min-width: 220px;
      box-shadow: 0 16px 40px rgba(10,8,40,0.28);
      opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s;
      z-index: 300;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px);
    }
    .nav-dropdown-menu::before {
      content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
    }
    .nav-dropdown-menu li { width: 100%; }
    .nav-dropdown-menu a {
      display: block; padding: 0.6rem 0.9rem; border-radius: 7px;
      color: var(--gray-900) !important; font-size: 0.85rem; font-weight: 600;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu a:hover { background: var(--lavender); color: var(--indigo) !important; }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 88vh;
      display: flex; align-items: center;
      background: var(--indigo); overflow: hidden; padding: 80px 6%;
    }
    .hero-photo {
      position: absolute; right: 0; top: 0; height: 100%; width: 58%;
      object-fit: cover; object-position: center; user-select: none; pointer-events: none;
    }
    .hero-overlay {
      position: absolute; inset: 0; pointer-events: none;
      background:
        linear-gradient(90deg,
          var(--indigo) 0%, var(--indigo) 34%,
          rgba(45,42,143,0.85) 48%, rgba(45,42,143,0.45) 64%,
          rgba(45,42,143,0.15) 82%, rgba(45,42,143,0.05) 100%),
        linear-gradient(0deg, rgba(30,26,110,0.45) 0%, transparent 35%);
    }
    .hero-content { position: relative; max-width: 720px; }
    .hero-photo-credit {
      position: absolute; right: 1.8rem; bottom: 1.6rem; z-index: 2;
      color: var(--white); font-size: 1.4rem; font-weight: 700;
      letter-spacing: 0.01em; text-shadow: 0 2px 12px rgba(10,8,40,0.7);
    }

    .eyebrow {
      display: inline-block;
      background: var(--yellow); color: var(--indigo-deep);
      font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
      text-transform: none; padding: 0.3rem 0.85rem;
      border-radius: 4px; margin-bottom: 1.4rem;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 900;
      color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
      letter-spacing: -1.5px;
    }
    .hero h1 em { font-style: normal; color: var(--yellow); }
    .hero-subhead {
      font-size: 1.15rem; color: rgba(255,255,255,0.85);
      max-width: 600px; margin-bottom: 2rem; line-height: 1.7;
    }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2rem; }

    /* Early-bird primary CTA */
    .btn-earlybird {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-size: 1.1rem; padding: 1rem 1.6rem;
    }
    .btn-earlybird .eb-tag {
      background: var(--magenta); color: var(--white);
      font-size: 0.78rem; font-weight: 800; letter-spacing: 0.02em;
      padding: 0.3rem 0.7rem; border-radius: 999px; white-space: nowrap;
    }

    /* Key info line — plain metadata, NOT buttons */
    .hero-keyinfo {
      display: flex; flex-wrap: wrap; align-items: center;
      gap: 0.5rem 1.8rem; margin-top: 0.4rem;
    }
    .hero-keyinfo-item {
      display: inline-flex; align-items: center; gap: 0.5rem;
      white-space: nowrap; font-size: 1.05rem; font-weight: 700;
      color: rgba(255,255,255,0.9); position: relative;
    }
    .hero-keyinfo-item + .hero-keyinfo-item::before {
      content: ''; position: absolute; left: -0.9rem; top: 50%;
      transform: translateY(-50%); height: 1.1em; width: 1px;
      background: rgba(255,255,255,0.28);
    }
    .hero-keyinfo-item .ki-icon { font-size: 1.2rem; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-block; background: var(--yellow); color: var(--indigo-deep);
      font-weight: 800; font-size: 1rem; padding: 0.95rem 2.1rem;
      border-radius: 8px; text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      box-shadow: 0 4px 20px rgba(245,200,0,0.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,200,0,0.45); }

    .btn-secondary {
      display: inline-block; background: transparent; color: var(--white);
      font-weight: 600; font-size: 0.95rem; padding: 0.9rem 1.8rem;
      border-radius: 8px; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .btn-ghost-white {
      display: inline-block; background: transparent; color: rgba(255,255,255,0.8);
      font-weight: 600; font-size: 0.9rem; padding: 0.75rem 1.5rem;
      border-radius: 8px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
    }
    .btn-ghost-white:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

    .btn-solid-white {
      display: inline-block; background: var(--white); color: var(--indigo-deep);
      font-weight: 800; font-size: 1rem; padding: 0.95rem 2.1rem;
      border-radius: 8px; text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      box-shadow: 0 4px 20px rgba(255,255,255,0.15);
    }
    .btn-solid-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.25); }

    /* ── FACTS STRIP ── */
    .facts-strip {
      background: var(--yellow);
      padding: 2.4rem 6% 3rem;
      margin-top: 0;
      position: relative;
      border-top: 6px solid var(--indigo-deep);
      border-bottom: 6px solid var(--indigo-deep);
    }
    .facts-banner-label {
      text-align: center; font-size: 0.82rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--indigo-deep); margin-bottom: 1.8rem;
    }
    .facts-banner-label::after {
      content: ''; display: block; width: 48px; height: 3px;
      background: var(--indigo-deep); margin: 0.7rem auto 0; border-radius: 2px;
    }
    .facts-inner {
      display: grid; grid-template-columns: repeat(4, auto); gap: 1.5rem;
      justify-content: center; align-items: stretch;
      max-width: 1300px; margin: 0 auto;
    }
    .fact-item {
      display: flex; align-items: center; gap: 1rem;
      text-align: left;
      padding: 0.4rem 1.2rem;
      position: relative;
    }
    .fact-item + .fact-item::before {
      content: ''; position: absolute; left: 0; top: 8%; height: 84%;
      width: 2px; background: rgba(30,26,110,0.22);
    }
    .fact-item .fi {
      display: flex; align-items: center; justify-content: center;
      width: 58px; height: 58px; flex-shrink: 0;
      background: var(--indigo-deep); border-radius: 14px;
      font-size: 1.7rem; line-height: 1;
      box-shadow: 0 4px 14px rgba(30,26,110,0.25);
    }
    .fact-text { display: flex; flex-direction: column; gap: 0.15rem; }
    .fact-item .fact-value {
      color: var(--indigo-deep); font-weight: 900;
      font-size: 1.3rem; letter-spacing: -0.03em; line-height: 1.1;
    }
    .fact-item .fact-label {
      color: rgba(30,26,110,0.6); font-weight: 700;
      font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
    }

    /* ── PAST SPEAKERS ── */
    .past-speakers-section {
      background: var(--indigo-deep);
      padding: 3rem 0 2.5rem;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .section-tag {
      text-align: center; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.13em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-bottom: 1.6rem;
    }

    .speakers-marquee-track { overflow: hidden; width: 100%; }
    .speakers-marquee-inner {
      display: flex; gap: 1rem; width: max-content;
      animation: scroll-speakers 52s linear infinite;
    }
    .speakers-marquee-track:hover .speakers-marquee-inner { animation-play-state: paused; }
    @keyframes scroll-speakers {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .speaker-card {
      display: flex; align-items: center; gap: 1.3rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px; padding: 1.3rem 1.8rem;
      min-width: 360px; cursor: default;
      transition: background 0.2s, border-color 0.2s;
    }
    .speaker-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); }
    .speaker-photo {
      width: 84px; height: 84px; border-radius: 50%;
      object-fit: cover; object-position: top center;
      flex-shrink: 0;
      border: 3px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
    }
    .speaker-card:hover .speaker-photo { border-color: var(--yellow); }
    .speaker-info { display: flex; flex-direction: column; gap: 0.22rem; }
    .speaker-info strong { font-size: 1.18rem; font-weight: 800; color: var(--white); line-height: 1.2; }
    .speaker-info .sp-title { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
    .speaker-info .sp-org { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

    /* ── COMBINED COMMUNITY — two scrolling rows, one category ── */
    .community-section {
      background: var(--indigo-deep);
      padding: 3.5rem 0 3.5rem;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .community-heading {
      text-align: center; font-size: 1.7rem; font-weight: 900;
      color: var(--white); letter-spacing: -0.02em;
    }
    .community-sub {
      text-align: center; font-size: 0.9rem; font-weight: 500;
      color: rgba(255,255,255,0.45); margin-top: 0.3rem; margin-bottom: 2.4rem;
    }
    .marquee-track { overflow: hidden; width: 100%; padding: 0.6rem 0; }
    .marquee-inner {
      display: flex; gap: 1.2rem; align-items: center;
      width: max-content;
      animation: scroll-logos 42s linear infinite;
    }
    .marquee-inner.reverse { animation-direction: reverse; }
    .marquee-track:hover .marquee-inner { animation-play-state: paused; }
    @keyframes scroll-logos {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    /* unified logo chip — used for both companies and institutions */
    .logo-chip {
      display: flex; align-items: center; justify-content: center;
      gap: 0.65rem; flex-shrink: 0;
      background: var(--white); border-radius: 12px;
      padding: 0.85rem 1.5rem; height: 76px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.18);
      transition: transform 0.2s;
    }
    .logo-chip:hover { transform: translateY(-3px); }
    .chip-logo {
      max-height: 44px; max-width: 190px; width: auto; object-fit: contain;
    }
    .chip-icon {
      height: 38px; width: 38px; object-fit: contain; border-radius: 6px; flex-shrink: 0;
    }
    .chip-name {
      font-size: 1rem; font-weight: 800; color: var(--indigo-deep);
      white-space: nowrap; letter-spacing: -0.01em;
    }

    /* ── SECTIONS ── */
    section { padding: 96px 6%; }
    .section-eyebrow {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--magenta); margin-bottom: 0.8rem;
    }
    .section-heading {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
      color: var(--gray-900); line-height: 1.2; letter-spacing: -0.5px; max-width: 700px;
    }
    .section-heading.center { text-align: center; max-width: 100%; }
    .section-lead {
      font-size: 1.05rem; color: var(--gray-700);
      max-width: 640px; margin-top: 1rem; line-height: 1.75;
    }

    /* ── WHY ATTEND ── */
    .why-attend { background: var(--gray-50); }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem; margin-top: 3rem;
    }
    .why-card {
      background: var(--white); border-radius: 12px; padding: 2rem;
      border: 1px solid var(--gray-100);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .why-card:hover { box-shadow: 0 8px 32px rgba(45,42,143,0.1); transform: translateY(-3px); }
    .why-icon { font-size: 2rem; margin-bottom: 1rem; }
    .why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--indigo); margin-bottom: 0.6rem; }
    .why-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.65; }

    /* ── PROGRAM ── */
    .program { background: var(--white); }
    .agenda-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 2.5rem;
    }
    .agenda-item {
      border-left: 4px solid var(--magenta); padding: 1.2rem 1.5rem;
      background: var(--lavender); border-radius: 0 10px 10px 0;
    }
    .agenda-item p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }
    .agenda-note {
      margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gray-100); border-radius: 8px; padding: 0.7rem 1.2rem;
      font-size: 0.85rem; color: var(--gray-700); font-weight: 500;
    }

    /* ── WHO ── */
    .who { background: var(--lavender); }
    .roles-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
    .role-pill {
      background: var(--white); color: var(--indigo); font-weight: 600;
      font-size: 0.85rem; padding: 0.5rem 1.1rem; border-radius: 999px;
      border: 1.5px solid var(--lavender-dark);
      transition: background 0.2s, color 0.2s;
    }
    .role-pill:hover { background: var(--indigo); color: var(--white); border-color: var(--indigo); }

    /* ── MID CTA ── */
    .cta-band { background: var(--indigo); padding: 88px 6%; text-align: center; }
    .cta-band .section-heading { color: var(--white); max-width: 100%; margin: 0 auto 1rem; }
    .cta-band p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
    .cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

    /* ── STRATEGY COLLABORATIVE ── */
    .strategy { background: var(--indigo-deep); padding: 96px 6%; }
    .strategy-eyebrow {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--lavender-dark); margin-bottom: 0.8rem;
    }
    .strategy-title {
      font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 900;
      color: var(--white); line-height: 1.15; letter-spacing: -0.5px;
      max-width: 660px; margin-bottom: 0.6rem;
    }
    .strategy-title .sc-name { color: var(--yellow); display: block; }
    .strategy-subtitle {
      font-size: 1rem; color: rgba(255,255,255,0.6);
      max-width: 620px; margin-bottom: 1.8rem; line-height: 1.7;
    }
    .strategy-detail {
      font-size: 0.95rem; color: rgba(255,255,255,0.65);
      line-height: 1.75; max-width: 640px; margin-top: 1rem;
    }
    .strategy-detail strong { color: var(--lavender-dark); }

    /* ── PAST EVENT GALLERY ── */
    .gallery-section {
      background: var(--indigo-deep);
      padding: 0 6% 3.5rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .gallery-section .section-tag { padding-top: 3rem; }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1rem; max-width: 1200px; margin: 1.4rem auto 0;
    }
    .gallery-item {
      border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 2;
      background: rgba(255,255,255,0.06);
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      opacity: 1; transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }

    /* ── VENUE & LOCATION ── */
    .venue-section { background: var(--white); }
    .venue-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
      align-items: center; max-width: 1150px; margin: 0 auto;
    }
    .venue-photo-wrap { position: relative; }
    .venue-photo {
      width: 100%; height: 100%; max-height: 420px; object-fit: cover;
      border-radius: 16px; display: block;
      box-shadow: 0 16px 48px rgba(45,42,143,0.18);
      opacity: 1; transition: opacity 0.45s ease;
    }
    .venue-host-badge {
      position: absolute; bottom: 1rem; left: 1rem;
      background: var(--yellow); color: var(--indigo-deep);
      font-weight: 800; font-size: 0.82rem; padding: 0.5rem 1rem;
      border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
    .venue-days { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0; }
    .venue-day {
      display: flex; flex-direction: column; gap: 0.25rem;
      border-left: 4px solid var(--magenta); padding: 0.6rem 0 0.6rem 1rem;
      text-decoration: none; transition: border-color 0.2s, transform 0.2s;
    }
    .venue-day:hover { border-left-color: var(--indigo); transform: translateX(3px); }
    .venue-day:hover .vd-addr { color: var(--indigo); }
    .vd-label { font-weight: 800; font-size: 0.92rem; color: var(--indigo); }
    .vd-addr { font-size: 0.9rem; color: var(--gray-700); }

    /* ── ABOUT + FOUNDER ── */
    .about-section { background: var(--gray-50); }
    .about-note { font-size: 0.78rem; color: var(--lavender-dark); font-style: italic; margin-top: 0.6rem; }
    .about-links {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem; margin-top: 2.4rem;
    }
    .about-link-card {
      display: flex; flex-direction: column; gap: 0.3rem;
      background: var(--white); border: 1px solid var(--gray-100);
      border-radius: 12px; padding: 1.3rem 1.5rem; text-decoration: none;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    }
    .about-link-card:hover { box-shadow: 0 8px 28px rgba(45,42,143,0.12); transform: translateY(-3px); border-color: var(--lavender-dark); }
    .about-link-card .al-title { font-size: 1rem; font-weight: 800; color: var(--indigo); }
    .about-link-card .al-sub { font-size: 0.82rem; color: var(--gray-700); }

    .founder-card {
      display: flex; align-items: center; gap: 1.8rem;
      background: var(--white); border: 1px solid var(--gray-100);
      border-radius: 16px; padding: 2rem; margin-top: 2.5rem; max-width: 720px;
    }
    .founder-photo {
      width: 110px; height: 110px; border-radius: 50%;
      object-fit: cover; flex-shrink: 0;
      border: 4px solid var(--lavender);
    }
    .founder-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--magenta);
    }
    .founder-name { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin: 0.2rem 0 0.5rem; }
    .founder-bio { font-size: 0.95rem; color: var(--gray-700); line-height: 1.65; }
    .founder-bio em { color: var(--lavender-dark); }

    /* ── CLOSING CTA ── */
    .closing { background: var(--magenta); padding: 80px 6%; text-align: center; }
    .closing .section-heading { color: var(--white); max-width: 100%; margin: 0 auto 0.8rem; }
    .closing p { color: rgba(255,255,255,0.88); margin: 0 auto 2rem; max-width: 500px; font-size: 1rem; line-height: 1.7; }

    /* ── FOOTER ── */
    footer {
      background: var(--gray-900); padding: 48px 6%;
      display: flex; flex-wrap: wrap; align-items: flex-start;
      justify-content: space-between; gap: 2rem;
    }
    .footer-brand-block { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-logo-main {
      display: flex; align-items: center; gap: 0;
      color: var(--white); font-weight: 900; font-size: 2.6rem;
      letter-spacing: -0.05em; line-height: 1; white-space: nowrap;
    }
    .footer-logo-main img { height: 56px; width: auto; display: block; margin-right: -0.3rem; }
    .footer-logo-main .x { color: var(--yellow); }
    .footer-logo-bracket {
      color: rgba(255,255,255,0.35); font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.06em;
    }
    .footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; align-items: center; }
    .footer-links a {
      color: rgba(255,255,255,0.5); text-decoration: none;
      font-size: 0.85rem; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-copy {
      color: rgba(255,255,255,0.3); font-size: 0.78rem;
      width: 100%; text-align: center; margin-top: 0.5rem;
    }

    /* ── RESPONSIVE ── */
    /* Big nav text needs room — collapse to hamburger earlier */
    @media (max-width: 1180px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* Facts strip needs more room per item than other content — switch to 2x2 earlier */
    @media (max-width: 960px) {
      .facts-inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0.8rem; }
      .fact-item + .fact-item::before { display: none; }
    }

    @media (max-width: 768px) {
      /* Nav */
      nav { height: 60px; padding: 0 5%; }
      .nav-logo { font-size: 1.28rem; gap: 0; }
      .nav-logo img { height: 44px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      /* Hero — photo becomes full-bleed background on mobile */
      .hero { padding: 48px 6% 52px; min-height: auto; }
      .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
      .hero-subhead { font-size: 0.95rem; }
      .hero-photo { width: 100%; height: 100%; opacity: 0.9; }
      .hero-overlay {
        background:
          linear-gradient(0deg, var(--indigo) 8%, rgba(45,42,143,0.78) 45%, rgba(45,42,143,0.6) 100%);
      }
      .hero-buttons { gap: 0.7rem; }
      .hero-buttons a { flex: 1 1 auto; text-align: center; }
      .hero-keyinfo { gap: 0.4rem 1.4rem; }
      .hero-keyinfo-item { font-size: 0.95rem; }

      /* Facts strip */
      .facts-strip { padding: 2rem 5%; border-top-width: 4px; border-bottom-width: 4px; }
      .facts-banner-label { font-size: 0.74rem; margin-bottom: 1.4rem; }
      .fact-item { padding: 0 0.5rem; gap: 0.7rem; }
      .fact-item .fact-value { font-size: 1.1rem; }
      .fact-item .fi { width: 44px; height: 44px; font-size: 1.3rem; flex-shrink: 0; }

      /* Community — logo chips + speaker cards */
      .community-section { padding: 2.6rem 0; }
      .community-heading { font-size: 1.35rem; }
      .community-sub { font-size: 0.82rem; margin-bottom: 1.8rem; padding: 0 5%; }
      .logo-chip { height: 60px; padding: 0.6rem 1.1rem; gap: 0.5rem; }
      .chip-logo { max-height: 34px; max-width: 140px; }
      .chip-icon { height: 30px; width: 30px; }
      .chip-name { font-size: 0.88rem; }
      .marquee-inner { animation-duration: 32s; gap: 0.9rem; }

      .speaker-card { min-width: 280px; padding: 1rem 1.3rem; gap: 1rem; }
      .speaker-photo { width: 64px; height: 64px; }
      .speaker-info strong { font-size: 1.02rem; }
      .speaker-info .sp-title { font-size: 0.82rem; }
      .speakers-marquee-inner { animation-duration: 60s; }

      /* Generic sections */
      section { padding: 56px 6%; }
      .section-heading { font-size: 1.6rem; }
      .section-lead { font-size: 0.95rem; }
      .why-grid { grid-template-columns: 1fr; gap: 1rem; }
      .agenda-grid { grid-template-columns: 1fr; }
      .roles-grid { gap: 0.5rem; }

      /* CTAs */
      .cta-band { padding: 56px 6%; }
      .cta-buttons { flex-direction: column; align-items: stretch; }
      .cta-buttons a, .cta-buttons button { text-align: center; }
      .strategy { padding: 56px 6%; }
      .strategy-title { font-size: 1.7rem; }
      .closing { padding: 56px 6%; }
      .closing .cta-buttons { flex-direction: column; align-items: stretch; }

      /* Footer */
      footer { padding: 36px 6%; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .footer-logo-main { font-size: 2rem; }
      .footer-logo-main img { height: 44px; }
      .footer-links { gap: 1rem 1.4rem; }

      /* Gallery + Venue */
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
      .gallery-section { padding: 0 5% 2.6rem; }
      .venue-grid { grid-template-columns: 1fr; gap: 1.6rem; }
      .venue-photo { max-height: 280px; }

      /* About + Founder */
      .about-links { grid-template-columns: 1fr; }
      .founder-card { flex-direction: column; text-align: center; padding: 1.6rem; gap: 1.1rem; }
      .founder-name { font-size: 1.3rem; }

      .nav-logo img { margin-right: -0.3rem; }
    }

    @media (max-width: 420px) {
      .hero h1 { font-size: 1.7rem; }
      .hero .eyebrow { font-size: 0.68rem; }
      .nav-logo span, .nav-logo { font-size: 1.1rem; }
      .nav-logo img { height: 39px; }
      .footer-logo-main { font-size: 1.7rem; }
      .footer-logo-main img { height: 38px; }
      .community-heading { font-size: 1.2rem; }
      .section-heading { font-size: 1.4rem; }
      .strategy-title { font-size: 1.45rem; }
      .speaker-card { min-width: 250px; }
    }
/* ===================================================================
   SUB-PAGE SHARED STYLES (advisory, events, speakers, gallery)
   =================================================================== */
.subpage-hero {
  background: var(--indigo); color: var(--white);
  padding: 88px 6% 72px; position: relative; overflow: hidden;
}
.subpage-hero .eyebrow { margin-bottom: 1rem; }
.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -1px; line-height: 1.1; max-width: 820px;
}
.subpage-hero h1 em { font-style: normal; color: var(--yellow); }
.subpage-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  max-width: 680px; margin-top: 1.1rem; line-height: 1.7;
}
.subpage-hero .meta-row {
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem;
}
.subpage-hero .meta-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.55rem 1rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
}

/* People grid — advisory board + speakers */
.people-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.person-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 14px; overflow: hidden; text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.person-card:hover { box-shadow: 0 12px 36px rgba(45,42,143,0.14); transform: translateY(-4px); }
.person-photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top center;
  display: block; background: var(--lavender);
}
.person-body { padding: 1.1rem 1.2rem 1.3rem; }
.person-name { font-size: 1.05rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.person-title { font-size: 0.85rem; color: var(--gray-700); margin-top: 0.3rem; line-height: 1.4; }
.person-org { font-size: 0.82rem; color: var(--magenta); font-weight: 700; margin-top: 0.35rem; }
.person-linkedin {
  display: inline-block; margin-top: 0.7rem; font-size: 0.78rem; font-weight: 700;
  color: var(--indigo); text-decoration: none;
}
.person-linkedin:hover { text-decoration: underline; }

/* Compact speaker card variant (smaller, denser) */
.people-grid.compact { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.people-grid.compact .person-body { padding: 0.85rem 0.95rem 1rem; }
.people-grid.compact .person-name { font-size: 0.92rem; }
.people-grid.compact .person-title { font-size: 0.78rem; }
.people-grid.compact .person-org { font-size: 0.76rem; }

/* Gallery page grid */
.gallery-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.gallery-page-grid figure { margin: 0; }
.gallery-page-grid .gp-item {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--lavender);
}
.gallery-page-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s;
}
.gallery-page-grid .gp-item:hover img { transform: scale(1.05); }
.gallery-page-grid figcaption { font-size: 0.82rem; color: var(--gray-700); margin-top: 0.5rem; font-weight: 600; }

/* Generic content section helpers */
.content-section { background: var(--white); }
.content-section.alt { background: var(--gray-50); }
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 1.6rem;
}
.value-card.lav { background: var(--lavender); border-color: var(--lavender-dark); }
.value-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--indigo); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

@media (max-width: 768px) {
  .subpage-hero { padding: 56px 6% 48px; }
  .subpage-hero h1 { font-size: 1.9rem; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .people-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
}

/* ── SUBPAGE CORE UTILITIES & LAYOUTS ── */
.section-padding { padding: 80px 6%; }
.page-container { max-width: 900px; margin: 0 auto; }
.page-container-wide { max-width: 1050px; margin: 0 auto; }

.about-mission-heading { font-size: 2.2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.about-mission-lead { font-size: 1.15rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 2.5rem; }
.about-initiative-heading { font-size: 1.8rem; font-weight: 800; color: var(--gray-900); text-align: center; margin-bottom: 2.5rem; letter-spacing: -0.5px; }

/* Biography Layout (e.g. founder.html) */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.bio-left {
  position: sticky;
  top: 130px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10,8,40,0.04);
}
.bio-left .founder-photo {
  width: 170px;
  height: 170px;
  margin: 0 auto 1.5rem;
  border: 6px solid var(--lavender);
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.bio-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.5rem;
}
.bio-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  padding: 0.6rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.bio-link-item:hover {
  background: var(--lavender);
  color: var(--indigo-deep);
}
.bio-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.bio-content p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.roles-list {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.roles-list h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--indigo-deep);
  margin-bottom: 1.2rem;
}
.role-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.role-bullet {
  background: var(--magenta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.2rem;
}
.role-details {
  display: flex;
  flex-direction: column;
}
.role-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
}
.role-org {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bio-left {
    position: relative;
    top: 0;
    max-width: 450px;
    margin: 0 auto;
  }
}
