    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  RESET + BASE                                                  */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:           #0A0A0A;
      --bg-elev-1:    #111111;
      --bg-elev-2:    #161616;
      --bg-elev-3:    #1C1C1C;
      --border-soft:  rgba(255,255,255,0.06);
      --border:       rgba(255,255,255,0.1);
      --border-strong:rgba(255,255,255,0.18);
      --fg:           #FAFAFA;
      --fg-muted:     rgba(250,250,250,0.65);
      --fg-subtle:    rgba(250,250,250,0.42);
      --accent:       #2BD96C;
      --accent-hover: #36E677;
      --accent-soft:  rgba(43,217,108,0.10);
      --accent-line:  rgba(43,217,108,0.28);
      --radius-sm:    8px;
      --radius:       12px;
      --radius-lg:    18px;
      --max-w:        1240px;
      --pad-x:        clamp(20px, 5vw, 56px);
      --section-y:    clamp(48px, 6vw, 88px);
    }

    html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      font-feature-settings: 'ss01','cv11';
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; cursor: pointer; }

    ::selection { background: var(--accent); color: #000; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  LAYOUT                                                        */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding-left: var(--pad-x);
      padding-right: var(--pad-x);
    }
    section { padding: var(--section-y) 0; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  TYPOGRAPHY                                                    */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .eyebrow.muted { color: var(--fg-subtle); }

    .h-display {
      font-family: 'Inter', sans-serif;
      font-size: clamp(38px, 5.4vw, 78px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: var(--fg);
    }
    .h-display .line {
      display: block;
      white-space: nowrap;
    }
    .h-display em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--accent);
      font-size: 1em;
      position: relative;
      display: inline-block;
      padding: 0 0.02em;
      background-image: linear-gradient(180deg, transparent 64%, rgba(43,217,108,0.13) 64%, rgba(43,217,108,0.13) 93%, transparent 93%);
    }
    .h-display em::after {
      content: '';
      position: absolute;
      left: 6%;
      right: 6%;
      bottom: 0.08em;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.5;
      border-radius: 2px;
    }

    .h-section {
      font-size: clamp(32px, 4.4vw, 56px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }
    .h-section em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.01em;
    }

    .lead {
      font-size: clamp(16px, 1.6vw, 18px);
      color: var(--fg-muted);
      line-height: 1.6;
      max-width: 560px;
    }

    /* Positioning statement section */
    #positioning {
      padding: clamp(40px, 5vw, 72px) 0;
      border-bottom: 1px solid var(--border-soft);
    }
    .positioning-statement {
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 500;
      line-height: 1.32;
      letter-spacing: -0.02em;
      color: var(--fg);
    }
    .positioning-statement em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      color: var(--accent);
      font-size: 1.06em;
      letter-spacing: -0.01em;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  BUTTONS                                                       */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 22px;
      border-radius: 10px;
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      transition:
        background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
      border: 1px solid transparent;
      white-space: nowrap;
      will-change: transform;
    }
    .btn-primary {
      background: var(--accent);
      color: #04140A;
      box-shadow: 0 0 0 0 rgba(43,217,108,0);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -10px rgba(43,217,108,0.45);
    }
    .btn-primary:active { transform: translateY(0); transition-duration: 0.1s; }
    .btn-ghost {
      background: transparent;
      color: var(--fg);
      border-color: var(--border);
    }
    .btn-ghost:hover {
      border-color: var(--border-strong);
      background: var(--bg-elev-1);
      transform: translateY(-1px);
    }
    .btn-arrow::after {
      content: '→';
      font-weight: 500;
      transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  NAV                                                           */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    nav.site-nav {
      position: sticky; top: 0;
      z-index: 100;
      background: rgba(10,10,10,0.85);
      backdrop-filter: saturate(160%) blur(18px);
      -webkit-backdrop-filter: saturate(160%) blur(18px);
      border-bottom: 1px solid var(--border-soft);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px var(--pad-x);
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .brand {
      font-family: 'Inter', sans-serif;
      font-size: 19px;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--fg);
      display: inline-flex;
      align-items: baseline;
      gap: 0.22em;
      line-height: 1;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .brand .brand-accent {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--accent);
      font-size: 1.22em;
    }
    .brand-dot { display: none; }

    @media (min-width: 1024px) {
      .brand { font-size: 21px; }
    }
    .nav-links {
      display: flex; gap: 28px; list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-muted);
      transition: color 0.15s ease;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--fg); }
    .nav-cta-wrap { display: flex; align-items: center; gap: 12px; }

    .hamburger {
      display: none;
      width: 40px; height: 40px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: transparent;
      position: relative;
    }
    .hamburger span {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      width: 16px; height: 1.5px;
      background: var(--fg);
      transition: all 0.25s ease;
    }
    .hamburger span:nth-child(1) { transform: translate(-50%,calc(-50% - 5px)); }
    .hamburger span:nth-child(3) { transform: translate(-50%,calc(-50% + 5px)); }
    .hamburger.open span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

    /* Mobile nav slide-in panel */
    .mobile-panel {
      position: fixed;
      top: 0; right: 0;
      width: min(85vw, 360px);
      height: 100dvh;
      background: var(--bg-elev-1);
      border-left: 1px solid var(--border);
      padding: 80px 28px 32px;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-panel.open { transform: translateX(0); }
    .mobile-panel a {
      padding: 14px 0;
      font-size: 18px;
      font-weight: 500;
      color: var(--fg);
      border-bottom: 1px solid var(--border-soft);
    }
    .mobile-panel a:last-of-type { border-bottom: none; margin-bottom: 12px; }
    .mobile-panel .btn { margin-top: 16px; justify-content: center; padding: 16px; font-size: 15px; }
    .scrim {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(2px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease;
      z-index: 89;
    }
    .scrim.open { opacity: 1; pointer-events: auto; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  HERO                                                          */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #hero {
      padding-top: clamp(56px, 7vw, 96px);
      padding-bottom: clamp(56px, 7vw, 96px);
      position: relative;
    }
    .hero-grid {
      display: block;
    }
    .hero-center {
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-center .hero-sub {
      margin: 32px auto 0;
      max-width: 640px;
    }
    .hero-center .hero-actions {
      justify-content: center;
      margin-top: 36px;
    }
    .hero-left .eyebrow-line {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 14px 6px 10px;
      border: 1px solid var(--border);
      border-radius: 999px;
      margin-bottom: 28px;
      font-size: 12.5px;
      color: var(--fg-muted);
    }
    .pulse-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      position: relative;
    }
    .pulse-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      animation: pulse 2.4s ease-out infinite;
    }
    @keyframes pulse {
      0%   { opacity: 0.5; transform: scale(0.6); }
      80%  { opacity: 0;   transform: scale(2.2); }
      100% { opacity: 0; }
    }
    .hero-sub {
      margin-top: 32px;
      font-size: clamp(17px, 1.8vw, 19px);
      line-height: 1.55;
      color: var(--fg-muted);
      max-width: 540px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 40px;
    }
    .hero-meta {
      margin-top: 56px;
      display: flex;
      flex-wrap: wrap;
      gap: 32px 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border-soft);
    }
    .hero-meta-item .num {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--fg);
      line-height: 1;
      margin-bottom: 6px;
    }
    .hero-meta-item .lbl {
      font-size: 12px;
      letter-spacing: 0.05em;
      color: var(--fg-subtle);
      text-transform: uppercase;
    }

    /* Hero right: avatar stack */
    .avatar-stack {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
    }
    .avatar-stack .stack-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }
    .avatar-stack .stack-head h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
    }
    .stack-head .live-badge {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 4px 8px;
      background: var(--accent-soft);
      border-radius: 6px;
    }
    .city-mini {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      transition: background 0.15s ease;
    }
    .city-mini:hover { background: var(--bg-elev-2); }
    .city-mini img {
      width: 36px; height: 36px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--bg-elev-2);
    }
    .city-mini .name { font-size: 14px; font-weight: 600; color: var(--fg); }
    .city-mini .meta { font-size: 12px; color: var(--fg-subtle); }
    .city-mini-info { flex: 1; min-width: 0; }
    .city-mini-info .name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .city-mini-count { font-size: 13px; font-weight: 600; color: var(--fg-muted); flex-shrink: 0; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  STATS STRIP                                                   */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #stats {
      padding: 32px 0;
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stats-grid > div {
      padding: 14px 20px;
      border-right: 1px solid var(--border-soft);
    }
    .stats-grid > div:last-child { border-right: none; }
    .stat-num {
      font-size: clamp(28px, 3.4vw, 40px);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--fg);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-lbl {
      font-size: 12.5px;
      color: var(--fg-subtle);
      letter-spacing: 0.02em;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  CONCEPT (WHAT)                                                */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #what .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .pillar-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .pillar {
      padding: 24px 0;
      border-top: 1px solid var(--border-soft);
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 20px;
    }
    .pillar:last-child { border-bottom: 1px solid var(--border-soft); }
    .pillar .idx {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      padding-top: 2px;
    }
    .pillar h3 {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }
    .pillar p {
      font-size: 14.5px;
      color: var(--fg-muted);
      line-height: 1.6;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  HOW IT WORKS                                                  */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #how {
      background: var(--bg-elev-1);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }
    .how-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
    .how-head .lead { margin: 0 auto; }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border-soft);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-soft);
    }
    .step {
      background: var(--bg-elev-1);
      padding: 36px 28px;
      transition: background 0.2s ease;
    }
    .step:hover { background: var(--bg-elev-2); }
    .step .num {
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.1em;
      margin-bottom: 24px;
      text-transform: uppercase;
    }
    .step h3 {
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .step p {
      font-size: 14px;
      color: var(--fg-muted);
      line-height: 1.6;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  CITIES                                                        */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .cities-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .cities-head .right p {
      font-size: 14px;
      color: var(--fg-muted);
      max-width: 320px;
    }
    .cities {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .city {
      display: flex;
      flex-direction: column;
      padding: 24px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      transition:
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .city:hover {
      border-color: var(--border-strong);
      background-color: var(--bg-elev-2);
      transform: translateY(-3px);
      box-shadow: 0 22px 48px -22px rgba(0,0,0,0.6);
    }
    .city-info { flex: 1; min-width: 0; }
    .city-socials {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
      align-self: flex-start;
    }
    .city-socials a {
      width: 30px; height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--fg-muted);
      transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
      background: var(--bg-elev-2);
    }
    .city-socials a:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-elev-3); }
    .city-socials svg { width: 14px; height: 14px; }
    .city.feat { grid-column: span 2; }
    .city-top {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }
    .city-top .city-info { padding-top: 4px; }
    .city-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--bg-elev-2);
      flex-shrink: 0;
    }
    .city-verified {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 11.5px;
      color: var(--accent);
      font-weight: 500;
    }
    .city-verified svg { width: 12px; height: 12px; flex-shrink: 0; }
    .city .name {
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--fg);
    }
    .city .handle {
      font-size: 13px;
      color: var(--fg-muted);
      margin-top: 2px;
    }
    .city-foot {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--border-soft);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }
    .city-foot .count { color: var(--fg); font-weight: 600; }
    .city-foot .role  { color: var(--fg-subtle); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  PARTNERS MARQUEE                                              */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /* Trust bar — sits between nav and hero */
    #trust-bar {
      position: relative;
      background: var(--bg-elev-1);
      border-bottom: 1px solid var(--border-soft);
      overflow: hidden;
      padding: 20px 0;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .trust-label {
      flex-shrink: 0;
      padding-left: var(--pad-x);
      padding-right: 28px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--fg-subtle);
      border-right: 1px solid var(--border-soft);
      white-space: nowrap;
    }
    #trust-bar .marquee-wrap { flex: 1; min-width: 0; }
    .trust-chip {
      display: inline-flex;
      align-items: baseline;
      gap: 0;
      padding: 0 36px;
      white-space: nowrap;
      border-right: 1px solid var(--border-soft);
    }
    .trust-chip .name {
      font-size: 15px;
      font-weight: 600;
      color: var(--fg);
      letter-spacing: -0.015em;
    }
    .trust-chip .cat {
      font-size: 13px;
      font-weight: 400;
      color: var(--fg-subtle);
      letter-spacing: 0.01em;
    }
    .trust-chip .cat::before {
      content: '·';
      margin: 0 10px;
      color: var(--border-strong);
    }

    @media (max-width: 768px) {
      #trust-bar { padding: 16px 0; }
      .trust-chip { padding: 0 24px; }
      .trust-chip .name { font-size: 13.5px; }
      .trust-chip .cat { font-size: 12px; }
    }
    @media (max-width: 640px) {
      .trust-label { display: none; }
    }
    .marquee-wrap { position: relative; overflow: hidden; }
    .marquee-wrap::before,
    .marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }
    .marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-elev-1), transparent); }
    .marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg-elev-1), transparent); }
    .marquee {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: marquee 40s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .chip {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 32px;
      white-space: nowrap;
      border-right: 1px solid var(--border-soft);
    }
    .chip .name { font-size: 16px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
    .chip .cat  { font-size: 12px; color: var(--fg-subtle); letter-spacing: 0.04em; }
    .chip .sep  { color: var(--border-strong); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  WHY                                                           */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #why .grid-2 {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 80px;
      align-items: start;
    }
    .why-list { list-style: none; }
    .why-item {
      padding: 28px 0;
      border-top: 1px solid var(--border-soft);
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 24px;
      align-items: start;
    }
    .why-item:last-child { border-bottom: 1px solid var(--border-soft); }
    .why-num {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: 28px;
      color: var(--accent);
      line-height: 1;
    }
    .why-item h4 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.015em;
      margin-bottom: 8px;
    }
    .why-item p {
      font-size: 14.5px;
      color: var(--fg-muted);
      line-height: 1.6;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  PACKAGES                                                      */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #packages {
      background: var(--bg-elev-1);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }
    .pack-head { text-align: center; max-width: 600px; margin: 0 auto 44px; }
    .pack-head .lead { margin: 0 auto; }
    .packs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .pack {
      background: var(--bg-elev-2);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      transition:
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .pack:hover {
      border-color: var(--border-strong);
      transform: translateY(-4px);
      box-shadow: 0 26px 56px -22px rgba(0,0,0,0.65);
    }
    .pack.featured {
      background: var(--bg-elev-3);
      border-color: var(--accent-line);
    }
    .pack.featured:hover {
      border-color: rgba(43,217,108,0.5);
      box-shadow: 0 26px 56px -22px rgba(43,217,108,0.24), 0 18px 36px -16px rgba(0,0,0,0.6);
    }
    .pack-tier {
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--fg-subtle);
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .pack.featured .pack-tier { color: var(--accent); }
    .pack-subtitle {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: 17px;
      font-weight: 400;
      color: var(--accent);
      letter-spacing: -0.005em;
      margin: -2px 0 8px;
    }

    /* "X live" indicator on pack cards */
    .pack-head-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .pack-head-row h3 { margin-bottom: 0; }
    .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 11px 5px 9px;
      border-radius: 999px;
      background: rgba(43,217,108,0.10);
      border: 1px solid rgba(43,217,108,0.28);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--accent);
      text-transform: uppercase;
      white-space: nowrap;
    }
    .live-pill .live-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      position: relative;
      flex-shrink: 0;
    }
    .live-pill .live-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      animation: live-pulse 1.8s ease-out infinite;
    }
    @keyframes live-pulse {
      0%   { opacity: 0.55; transform: scale(0.5); }
      80%  { opacity: 0;    transform: scale(2.4); }
      100% { opacity: 0; }
    }
    .pack h3 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .pack-desc {
      font-size: 14.5px;
      color: var(--fg-muted);
      line-height: 1.6;
      margin-bottom: 28px;
    }
    .pack-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border-soft);
    }
    .pack-features li {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 12px;
      font-size: 14px;
      color: var(--fg);
      line-height: 1.5;
    }
    .pack-features li::before {
      content: '';
      width: 14px; height: 14px;
      margin-top: 4px;
      border-radius: 50%;
      background: var(--accent-soft);
      background-image: radial-gradient(circle, var(--accent) 28%, transparent 30%);
    }
    .pack .btn { width: 100%; justify-content: center; margin-top: auto; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  TESTIMONIALS                                                  */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .t-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .t-card {
      padding: 32px 28px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      transition:
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .t-card:hover {
      border-color: var(--border-strong);
      background-color: var(--bg-elev-2);
      transform: translateY(-3px);
      box-shadow: 0 22px 48px -22px rgba(0,0,0,0.55);
    }
    .t-category {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 5px 11px;
      background: var(--accent-soft);
      border: 1px solid var(--accent-line);
      border-radius: 999px;
      margin-bottom: 20px;
      white-space: nowrap;
    }
    .t-quote {
      font-size: 16px;
      line-height: 1.6;
      color: var(--fg);
      margin-bottom: 24px;
      flex: 1;
      letter-spacing: -0.005em;
    }
    .t-quote::before {
      content: '“';
      font-family: 'Instrument Serif', serif;
      font-size: 48px;
      color: var(--accent);
      line-height: 0.4;
      display: block;
      margin-bottom: 18px;
    }
    .t-attr {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--border-soft);
    }
    .t-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--bg-elev-3);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
    }
    .t-attr .name { font-size: 14px; font-weight: 600; color: var(--fg); }
    .t-attr .biz  { font-size: 12.5px; color: var(--fg-subtle); margin-top: 1px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  BOOK                                                          */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #book .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .book-left .lead { margin-top: 24px; margin-bottom: 36px; }
    .perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .perks li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 14px;
      font-size: 15px;
      color: var(--fg);
    }
    .perks li::before {
      content: '';
      width: 14px; height: 14px;
      margin-top: 4px;
      border-radius: 50%;
      background: var(--accent-soft);
      background-image: radial-gradient(circle, var(--accent) 28%, transparent 30%);
    }
    .runner-card {
      margin-top: 40px;
      padding: 20px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .runner-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }
    .runner-card .lbl { font-size: 11.5px; color: var(--fg-subtle); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
    .runner-card .name { font-size: 15px; font-weight: 600; color: var(--fg); }
    .runner-card .handle { font-size: 13px; color: var(--accent); margin-left: auto; }

    .form-card {
      background: var(--bg-elev-1);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .form-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .form-sub {
      font-size: 14px;
      color: var(--fg-muted);
      margin-bottom: 28px;
    }
    .field { margin-bottom: 16px; }
    .field label {
      display: block;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--fg-muted);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 14px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--fg);
      font-family: inherit;
      font-size: 14.5px;
      transition: border-color 0.15s ease, background 0.15s ease;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--accent-line);
      background: var(--bg-elev-3);
    }
    .field input::placeholder, .field textarea::placeholder { color: var(--fg-subtle); }
    .field textarea { resize: vertical; min-height: 96px; }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .submit-btn {
      width: 100%;
      padding: 15px;
      margin-top: 12px;
      background: var(--accent);
      color: #04140A;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      transition: background 0.15s ease, transform 0.15s ease;
    }
    .submit-btn:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
    .submit-btn:disabled { opacity: 0.6; cursor: wait; }
    .form-note {
      text-align: center;
      font-size: 12.5px;
      color: var(--fg-subtle);
      margin-top: 14px;
    }
    .success {
      display: none;
      text-align: center;
      padding: 24px;
    }
    .success.show { display: block; }
    .success h3 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 16px 0 8px;
    }
    .success p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.6; }
    .success .check {
      width: 56px; height: 56px;
      margin: 0 auto;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      font-weight: 600;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  FOOTER                                                        */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    footer {
      background: var(--bg-elev-1);
      border-top: 1px solid var(--border-soft);
      padding: 44px 0 28px;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 22px;
    }
    .foot-brand p {
      font-size: 14px;
      color: var(--fg-muted);
      line-height: 1.6;
      margin: 14px 0 24px;
      max-width: 300px;
    }
    .foot-brand a.brand { font-size: 16px; }
    .foot-col h5 {
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-subtle);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .foot-col a {
      font-size: 14px;
      color: var(--fg-muted);
      transition: color 0.15s ease;
    }
    .foot-col a:hover { color: var(--fg); }
    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: var(--fg-subtle);
    }
    .foot-bottom a { color: var(--accent); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  ANIMATIONS                                                    */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /* ─── Premium reveal system (only enabled when JS is active) ── */
    html.js .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    html.js .reveal.in { opacity: 1; transform: translateY(0); }

    /* ─── Staggered children ───────────────────────────────────── */
    html.js [data-stagger] > * {
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    html.js [data-stagger].in > * { opacity: 1; transform: translateY(0); }
    html.js [data-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
    html.js [data-stagger].in > *:nth-child(2) { transition-delay: 60ms; }
    html.js [data-stagger].in > *:nth-child(3) { transition-delay: 120ms; }
    html.js [data-stagger].in > *:nth-child(4) { transition-delay: 180ms; }
    html.js [data-stagger].in > *:nth-child(5) { transition-delay: 240ms; }
    html.js [data-stagger].in > *:nth-child(6) { transition-delay: 300ms; }
    html.js [data-stagger].in > *:nth-child(7) { transition-delay: 360ms; }
    html.js [data-stagger].in > *:nth-child(8) { transition-delay: 420ms; }

    @media (prefers-reduced-motion: reduce) {
      .reveal,
      [data-stagger] > * { opacity: 1; transform: none; transition: none; }
      .marquee { animation: none; }
      .pulse-dot::after,
      .live-pill .live-dot::after { animation: none; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /*  RESPONSIVE                                                    */
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .avatar-stack { max-width: 480px; }
      #what .grid-2,
      #why  .grid-2,
      #book .grid-2 { grid-template-columns: 1fr; gap: 56px; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .cities { grid-template-columns: repeat(2, 1fr); }
      .city.feat { grid-column: span 2; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid > div:nth-child(2) { border-right: none; }
      .stats-grid > div:nth-child(1),
      .stats-grid > div:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
      .packs { grid-template-columns: 1fr; max-width: 480px; }
      .t-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    /* Switch to mobile menu earlier so the desktop nav never gets cramped */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }
    @media (max-width: 480px) {
      .nav-cta-wrap .btn:not(.hamburger) { display: none; }
    }

    @media (max-width: 640px) {
      .hero-meta { gap: 24px 32px; }
      .hero-meta-item .num { font-size: 22px; }

      .hero-meta { gap: 24px 32px; }
      .hero-meta-item .num { font-size: 22px; }

      .cities { grid-template-columns: 1fr; }
      .city.feat { grid-column: span 1; }
      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }
      .stats-grid > div {
        padding: 16px 12px;
      }
      .stat-num { font-size: 24px; }
      .stat-lbl { font-size: 11.5px; }

      .steps { grid-template-columns: 1fr; }
      .form-card { padding: 24px; }
      .field-row { grid-template-columns: 1fr; gap: 0; }
      .cities-head { flex-direction: column; align-items: flex-start; gap: 16px; }
      .foot-grid { grid-template-columns: 1fr; gap: 36px; }
      .foot-bottom { flex-direction: column; align-items: flex-start; text-align: left; }

      .chip { padding: 14px 22px; }
      .partners-head { margin-bottom: 36px; }
      .runner-card { flex-wrap: wrap; }
      .runner-card .handle { margin-left: 58px; width: 100%; }
    }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*  MULTI-PAGE ADDITIONS                                          */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Active nav link */
.nav-links a.active { color: var(--fg); position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Hero treatment on interior pages (less padding than home) */
.hero-page {
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.hero-page .hero-center { max-width: 880px; }

/* Three- and five-column step variants for the How It Works pages */
.steps.three { grid-template-columns: repeat(3, 1fr); }
.steps.five  { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
  .steps.three { grid-template-columns: repeat(2, 1fr); }
  .steps.five  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .steps.three { grid-template-columns: 1fr; }
  .steps.five  { grid-template-columns: 1fr; }
}

/* Industry chip grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-chip {
  padding: 18px 20px;
  background: var(--bg-elev-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-align: center;
  transition:
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.industry-chip:hover {
  border-color: var(--border-strong);
  background-color: var(--bg-elev-2);
  transform: translateY(-2px);
}

/* CTA band at bottom of every interior page */
.cta-band {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(43,217,108,0.08), transparent 60%),
    var(--bg);
}
.cta-band-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band-inner .h-section {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

/* Book page layout — two-col on desktop */
#book-page .grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  #book-page .grid-2 { grid-template-columns: 1fr; gap: 48px; }
}
#book-page .h-display { line-height: 1.06; }
#book-page .perks { margin-top: 24px; }
