    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #000;
      --surface: #0b0b0e;
      --surface-2: #101015;
      --fg: #f5f6fa;
      --muted: #9499ab;
      --stone: #5b6070;
      --line: rgba(255,255,255,0.10);
      --line-2: rgba(255,255,255,0.20);
      --font-mono: 'Space Mono', ui-monospace, Menlo, monospace;
      --font-sans: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, sans-serif;
      --nav-h: 76px;
      --devocion: #1a7d4b;
      --page-pad: clamp(20px, 4vw, 64px);
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg); color: var(--fg);
      font-family: var(--font-sans);
      -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
      line-height: 1.5; overflow-x: hidden;
    }
    ::selection { background: #fff; color: #000; }
    a { color: inherit; text-decoration: none; }

    .wrap { width: 100%; max-width: min(1600px, 94vw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
    .eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); }

    /* ---------- NAV — Editorial masthead (FT / Monocle) ---------- */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
      /* Double hairlines top + bottom, masthead style */
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
    }
    /* Inner thin hairline beneath the bottom border for the doubled-rule masthead feel */
    .nav::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
      height: 1px; background: var(--line); pointer-events: none;
    }
    .nav .wrap { display: flex; align-items: baseline; justify-content: space-between; gap: 32px; min-height: var(--nav-h); padding-top: 18px; padding-bottom: 18px; }
    .mark { display: inline-flex; align-items: baseline; gap: 10px; color: #fff; line-height: 1; }
    .mark-aim { font-family: var(--font-sans); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; text-shadow: 6px 0 7px rgba(255,255,255,0.22), -6px 0 7px rgba(255,255,255,0.22); }
    .mark-lockup { display: flex; flex-direction: column; gap: 3px; border-left: 1px solid var(--line-2); padding-left: 10px; }
    .mark-lockup span { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); line-height: 1.1; }
    .mark-lockup span:first-child { color: var(--fg); }
    .mark-sm .mark-aim { font-size: 18px; }

    /* Masthead wordmark — large serif, set in the same row as the links */
    .nav .mark-aim { display: none; }
    .nav .mark-lockup { border-left: none; padding-left: 0; gap: 0; }
    .nav .mark-lockup span {
      font-family: 'Iowan Old Style','Charter','Times New Roman',Georgia,serif;
      font-weight: 400;
      font-size: clamp(22px, 2.2vw, 28px);
      letter-spacing: 0.015em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
    }

    /* Right cluster — small-caps mono row, links sized for real clickability */
    .nav-right { display: flex; align-items: center; gap: 6px; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a,
    .nav-cta {
      font-family: var(--font-mono);
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e8e8e8;
      background: none;
      border: none;
      border-radius: 4px;
      padding: 10px 14px;
      box-shadow: none;
      transition: color 0.18s, background 0.18s, opacity 0.18s;
      line-height: 1;
      cursor: pointer;
    }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.09); }
    .nav-links a::after { display: none; }

    /* "→ JOIN" terminus — bright filled chip, clearly the primary action */
    .nav-cta {
      color: #000;
      background: #fff;
      font-weight: 700;
      padding: 11px 18px;
      margin-left: 10px;
      border-radius: 2px;
    }
    .nav-cta::before { content: '→\00a0\00a0'; opacity: 0.9; }
    .nav-cta:hover {
      color: #000;
      background: #fff;
      opacity: 1;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(255,255,255,0.22);
    }

    /* "↗ Visit Zacc.AI" — ghost/outlined button, parent-site toggle next to Join */
    .nav-visit {
      font-family: var(--font-mono);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e8e8e8;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 2px;
      padding: 10px 14px;
      line-height: 1;
      margin-left: 4px;
      text-decoration: none;
      transition: color 0.18s, background 0.18s, border-color 0.18s, transform 0.18s;
    }
    .nav-visit::before { content: '↗\00a0\00a0'; opacity: 0.85; }
    .nav-visit:hover {
      color: #fff;
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.55);
      transform: translateY(-1px);
    }

    @media (max-width: 820px){ .nav-links { gap: 2px; } .nav-right { gap: 4px; } .nav-links a, .nav-cta { padding-left: 11px; padding-right: 11px; } .nav-visit { padding-left: 11px; padding-right: 11px; } }
    @media (max-width: 680px){
      .nav .wrap { padding-top: 14px; padding-bottom: 14px; }
      .nav .mark-lockup span { font-size: 18px; }
      .nav-links a:not(.nav-cta){ display: none; }
      .nav-visit { display: none; }
      .nav-right { gap: 0; }
      .nav-cta { margin-left: 0; }
    }

    /* ---------- HERO — calm, centered, logo-dominant, balanced ---------- */
    .hero {
      position: relative;
      min-height: calc(100vh - var(--nav-h));
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: clamp(20px, 3vh, 56px) var(--page-pad) clamp(28px, 4vh, 56px);
    }

    /* Center column — logo dominates, then tagline → RSVP → schedule */
    .hero-center {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
      max-width: 1080px;
      gap: clamp(14px, 2.2vh, 30px);
      /* Bias content toward upper-center so the hero doesn't feel bottom-heavy */
      padding-bottom: clamp(24px, 5vh, 72px);
    }
    .logo-hero {
      width: min(760px, 88vw);
      aspect-ratio: 2.4 / 1;
      max-height: 42vh;
      display: block;
      background-image: url(./aim-logo.jpeg);
      background-repeat: no-repeat;
      background-position: center 53%;
      background-size: 150% auto;
      filter: brightness(1.08) contrast(1.05);
      animation: logoReveal 1.1s cubic-bezier(.2,.7,.2,1) both;
    }
    @keyframes logoReveal {
      0%   { opacity: 0; transform: translateY(8px); filter: blur(10px) brightness(1.08) contrast(1.05); }
      60%  { opacity: 1; }
      100% { opacity: 1; transform: translateY(0); filter: blur(0) brightness(1.08) contrast(1.05); }
    }
    .tagline {
      margin: 0;
      font-family: var(--font-mono);
      font-size: clamp(13px, 1.3vw, 16px);
      font-weight: 400;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      line-height: 1.4;
      color: var(--muted);
      animation: rise 0.9s ease-out 0.45s both;
    }

    /* RSVP — green accent action, centered below tagline */
    .hero-rsvp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      background: var(--devocion);
      padding: 17px 30px;
      border-radius: 2px;
      border: 1px solid var(--devocion);
      transition: transform .18s ease, box-shadow .2s ease, filter .18s ease, gap .2s ease;
      box-shadow: 0 6px 24px rgba(26,125,75,0.28);
      animation: rise 0.9s ease-out 0.6s both;
    }
    .hero-rsvp:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 36px rgba(26,125,75,0.4); gap: 14px; }
    .hero-rsvp .arr { transition: transform 0.2s; display: inline-block; }
    .hero-rsvp:hover .arr { transform: translateX(3px); }

    /* Schedule — centered below RSVP, restrained */
    .hero-schedule {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: rise 0.9s ease-out 0.75s both;
    }
    .hs-row {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 14px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      line-height: 1;
    }
    .hs-row b { color: #fff; font-weight: 700; }
    .hs-row span { color: var(--muted); font-weight: 400; }
    .hs-loc {
      margin-top: 4px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* Bottom edge — static partner strip, single tidy row */
    .hero-partners {
      position: relative;
      z-index: 1;
      width: calc(100% + var(--page-pad) * 2);
      margin-left: calc(-1 * var(--page-pad));
      margin-right: calc(-1 * var(--page-pad));
      margin-top: 0;
      padding: 18px var(--page-pad) 18px;
      border-top: 1px solid var(--line);
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      animation: rise 0.9s ease-out 0.9s both;
    }
    .hero-partners .fw-label { display: flex; align-items: center; justify-content: center; gap: 10px; }
    .hero-partners .fw-label .hs-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c97a; box-shadow: 0 0 12px rgba(34,201,122,0.85); }
    .hero-partners .fw-label span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.86); font-weight: 700; }
    .hero-partners .fw-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
    .hero-partners .partner-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 3vw, 40px);
      flex-wrap: wrap;
    }
    .hero-partners .partner-row .spon-x { font-family: var(--font-sans); font-weight: 300; font-size: 16px; line-height: 1; color: var(--stone); flex: none; }

    @media (max-width: 720px) {
      .hero { padding-top: 32px; padding-bottom: 24px; }
      .hero-center { gap: 18px; padding-bottom: 24px; }
      .logo-hero { width: min(560px, 92vw); max-height: 36vh; }
    }
    .cta-text {
      font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg);
      padding: 14px 26px; margin: 8px 0; position: relative; display: inline-flex; align-items: center; gap: 9px;
      border: 1px solid rgba(255,255,255,0.55); border-radius: 2px;
      transition: color 0.2s, gap 0.2s, border-color 0.2s, background 0.2s;
    }
    .cta-text:hover { gap: 14px; color: #fff; border-color: #fff; background: rgba(255,255,255,0.04); }
    .cta-text .arr { transition: transform 0.2s; }
    .cta-text:hover .arr { transform: translateX(3px); }
    @keyframes rise { from{ opacity:0; transform: translateY(16px);} to{ opacity:1; transform:none;} }
    .btn {
      font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 15px 28px; border-radius: 2px; cursor: pointer; border: 1px solid transparent; transition: all 0.18s; display: inline-flex; align-items: center; gap: 9px;
    }
    .btn-primary { background: #fff; color: #000; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.14); }
    .btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
    .scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: rise 1s ease-out 0.9s both; }
    .scrollcue::after { content: ''; width: 1px; height: 26px; background: linear-gradient(var(--line-2), transparent); animation: cue 1.8s ease-in-out infinite; }
    @keyframes cue { 0%,100%{ opacity:0.3; transform: scaleY(0.6); transform-origin: top;} 50%{ opacity:1; transform: scaleY(1);} }

    /* ---------- STATS STRIP ---------- */
    .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat { padding: 26px 18px; text-align: center; border-right: 1px solid var(--line); }
    .stat:last-child { border-right: none; }
    .stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
    .stat small { display: block; margin-top: 7px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
    @media (max-width: 680px){ .strip .wrap{ grid-template-columns: repeat(2,1fr);} .stat:nth-child(2){border-right:none;} .stat:nth-child(1),.stat:nth-child(2){border-bottom:1px solid var(--line);} }

    /* ---------- SECTIONS ---------- */
    section.block { padding: 96px 0; }
    .sec-head { margin-bottom: 44px; }
    .sec-head .eyebrow { display: block; margin-bottom: 14px; }
    .sec-head h2 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; text-transform: uppercase; }
    .sec-head p { margin-top: 16px; max-width: 560px; color: var(--muted); font-size: 16px; }

    /* THE RUN */
    .run-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
    .run-rows { border-top: 1px solid var(--line); }
    .run-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--line); align-items: baseline; }
    .run-row dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
    .run-row dd { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
    .run-row dd .tbd { font-family: var(--font-mono); font-size: 11px; font-weight: 400; letter-spacing: 0.12em; color: #000; background: var(--muted); padding: 3px 8px; border-radius: 2px; text-transform: uppercase; vertical-align: middle; }
    .map-card {
      aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: 4px; position: relative; overflow: hidden;
      background:
        linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
        repeating-linear-gradient(0deg, transparent 0 38px, var(--line) 38px 39px),
        repeating-linear-gradient(90deg, transparent 0 38px, var(--line) 38px 39px);
      display: flex; align-items: center; justify-content: center;
    }
    .map-card .route { position: absolute; inset: 0; }
    .map-card .pin { position: relative; z-index: 2; text-align: center; }
    .map-card .pin .dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; margin: 0 auto 12px; box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 0 30px rgba(255,255,255,0.4); }
    .map-card .pin small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
    @media (max-width: 760px){ .run-grid{ grid-template-columns: 1fr; gap: 30px;} }

    /* PACES */
    .paces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .pace {
      border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px 26px; background: var(--surface);
      position: relative; transition: border-color 0.2s, transform 0.2s, background 0.2s; overflow: hidden;
    }
    .pace:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--surface-2); }
    .pace .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--stone); }
    .pace h3 { margin-top: 18px; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
    .pace .range { margin-top: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; color: var(--fg); }
    .pace .range .unit { color: var(--stone); }
    .pace .bars { margin-top: 18px; display: flex; gap: 5px; }
    .pace .bars i { height: 5px; flex: 1; border-radius: 3px; background: rgba(255,255,255,0.12); }
    .pace .bars i.on { background: #fff; }
    .pace p { margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
    @media (max-width: 760px){ .paces{ grid-template-columns: 1fr; } }

    /* HOW IT WORKS */
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .step { border-top: 2px solid #fff; padding-top: 22px; }
    .step .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--stone); }
    .step h4 { margin-top: 14px; font-size: 21px; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; }
    .step p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.6; }
    @media (max-width: 760px){ .steps{ grid-template-columns: 1fr; gap: 28px; } }

    /* JOIN / RSVP */
    .join { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
    .join-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
    .join-copy h2 { font-size: clamp(34px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; }
    .join-copy p { margin-top: 18px; color: var(--muted); font-size: 16px; max-width: 380px; }
    .next-run { margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line-2); border-radius: 3px; padding: 12px 16px; }
    .next-run .pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); animation: pulse 2s infinite; }
    @keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.5);} 70%{ box-shadow: 0 0 0 9px rgba(255,255,255,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0);} }
    .next-run small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
    .next-run b { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg); }

    .form-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 34px 32px; }
    .field { margin-bottom: 18px; }
    .field label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 9px; }
    .field input, .field select {
      width: 100%; font-family: var(--font-sans); font-size: 16px; color: var(--fg);
      background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 4px; padding: 14px 15px; outline: none; transition: border-color 0.18s, background 0.18s;
      -webkit-appearance: none; appearance: none;
    }
    .field input::placeholder { color: var(--stone); }
    .field input:focus, .field select:focus { border-color: #fff; background: rgba(255,255,255,0.05); }
    .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239499ab' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
    .field select option { background: #101015; color: var(--fg); }
    .form-actions { margin-top: 24px; }
    .form-actions .btn { width: 100%; justify-content: center; }
    .form-foot { margin-top: 16px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--stone); line-height: 1.7; }
    .form-foot a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
    .form-foot a:hover { color: #fff; }
    .err { color: #ff8d8d; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; margin-top: 10px; min-height: 14px; }

    /* success state */
    .success { display: none; text-align: center; padding: 12px 4px; }
    .form-card.is-done .form-live { display: none; }
    .form-card.is-done .success { display: block; animation: rise 0.5s ease-out both; }
    .success .check { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid #fff; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; }
    .success .check svg { width: 26px; height: 26px; }
    .success h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; }
    .success p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.6; }
    .success p b { color: var(--fg); }
    .success .btn { margin-top: 24px; }

    /* ---------- RSVP modal (Saturday / Sunday session cards) ---------- */
    .session-card button.s-link { cursor: pointer; -webkit-appearance: none; appearance: none; text-align: left; }
    button.hero-rsvp, button.btn { -webkit-appearance: none; appearance: none; }
    .rsvp-modal {
      position: fixed; inset: 0; margin: auto;
      border: 1px solid var(--line-2); border-radius: 10px;
      background: var(--surface-2); color: var(--fg);
      width: min(440px, calc(100vw - 36px)); max-width: 440px;
      height: fit-content; max-height: calc(100vh - 48px); overflow-y: auto;
      padding: 0; box-shadow: 0 40px 120px rgba(0,0,0,0.7);
    }
    .rsvp-modal::backdrop { background: rgba(0,0,0,0.66); backdrop-filter: blur(6px) saturate(120%); }
    .rsvp-modal[open] { animation: modalIn 0.32s cubic-bezier(0.22,0.61,0.36,1) both; }
    @keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
    .rsvp-modal-inner { padding: 34px 30px 30px; position: relative; }
    .rsvp-close {
      position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: none; border: 1px solid var(--line); border-radius: 4px;
      color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer;
      transition: border-color 0.18s, color 0.18s, background 0.18s;
    }
    .rsvp-close:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.04); }
    .rsvp-modal #rsvpModalTitle { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; text-transform: uppercase; margin: 14px 0 0; }
    .rsvp-modal .rsvp-modal-sub { margin: 10px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .rsvp-luma {
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      width: 100%; padding: 16px 18px; margin: 0 0 22px;
      background: var(--devocion); color: #fff; text-decoration: none;
      border: 2px solid var(--devocion); border-radius: 2px;
      font: 700 13px/1 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .rsvp-luma:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -10px var(--devocion); background: #1f9258; }
    .rsvp-luma .rsvp-luma-host { color: rgba(255,255,255,0.7); font-weight: 400; letter-spacing: 0.12em; font-size: 10.5px; display: block; margin-bottom: 4px; }
    .rsvp-luma .rsvp-luma-arrow { font-size: 18px; opacity: 0.9; }
    .luma-link {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
      color: var(--devocion); text-decoration: none;
      font: 600 11.5px/1 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase;
      border-bottom: 1px solid rgba(26,125,75,0.4); padding-bottom: 4px;
      transition: color .2s ease, border-color .2s ease, transform .2s ease;
    }
    .luma-link:hover { color: #2aa969; border-bottom-color: #2aa969; transform: translateX(2px); }
    .rsvp-divider {
      display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
      font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
    }
    .rsvp-divider::before, .rsvp-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
    .rsvp-modal.is-done .form-live { display: none; }
    .rsvp-modal.is-done .rsvp-luma,
    .rsvp-modal.is-done .rsvp-divider { display: none; }
    .rsvp-modal.is-done .success { display: block; animation: rise 0.5s ease-out both; }

    /* ---------- Event detail modal (clicking any calendar / upcoming event) ---------- */
    .event-modal #evModalTitle { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; text-transform: uppercase; margin: 10px 0 6px; }
    .ev-type-pill {
      display: inline-block; padding: 4px 10px; margin: 0 0 18px;
      font: 600 9.5px/1 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase;
      border-radius: 2px; border: 1px solid var(--line-2);
    }
    .ev-type-pill.type-session { color: var(--devocion); border-color: rgba(26,125,75,0.5); background: rgba(26,125,75,0.08); }
    .ev-type-pill.type-race { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
    .ev-type-pill.type-city { color: var(--muted); border-color: var(--line-2); background: rgba(255,255,255,0.02); }
    .ev-meta {
      display: grid; gap: 10px; padding: 14px 0; margin: 0 0 18px;
      border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    }
    .ev-meta-row { display: grid; grid-template-columns: 78px 1fr; gap: 14px; align-items: baseline; }
    .ev-meta-label { font: 500 10px/1 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
    .ev-meta-val { color: #e8eaf0; font-size: 14px; line-height: 1.4; }
    .ev-desc { margin: 0 0 22px; color: #c4c8d4; font-size: 14px; line-height: 1.6; }
    .ev-foot { margin: 14px 0 0; color: var(--stone); font-size: 12px; line-height: 1.5; text-align: center; }
    .ev-foot a { color: var(--devocion); text-decoration: none; border-bottom: 1px solid rgba(26,125,75,0.3); }
    .ev-foot a:hover { color: #2aa969; border-bottom-color: #2aa969; }

    @media (max-width: 820px){ .join-grid{ grid-template-columns: 1fr; gap: 36px; } }

    /* ---------- SPONSORS ---------- */
    /* Devoción logo image — crop the JPEG's black padding, drop the black via screen blend */
    .dv-logo { display: block; object-fit: cover; object-position: center; mix-blend-mode: screen; }
    .dv-logo-hero { height: 62px; width: 196px; }
    /* GYM NYC wordmark — white-on-black PNG, black dropped via screen blend (same as Devoción) */
    .gn-logo { display: block; object-fit: contain; mix-blend-mode: screen; }
    .gn-logo-hero { height: 42px; width: auto; }
    /* multi-partner hero lockup */
    .spon-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; }
    .spon-side { display: flex; align-items: center; gap: 26px; }
    .spon-side-l { justify-content: flex-end; }
    .spon-side-r { justify-content: flex-start; }
    .spon-div { width: 1px; height: 34px; background: var(--line-2); flex: none; }
    /* Mora + GYM NYC read as one pair (Mora is GYM NYC's in-house café) */
    .spon-pair { display: flex; align-items: center; gap: 16px; }
    .spon-plus { font-family: var(--font-sans); font-weight: 300; font-size: 22px; line-height: 1; color: var(--stone); flex: none; }
    /* Mora — transparent white PNG (berry + wordmark + tagline), stacked so it sizes taller than the single-line wordmarks */
    .mora-logo { display: block; object-fit: contain; }
    .mora-logo-hero { height: 66px; width: auto; }
    /* House brands (Zacc.AI × chala.ai) — the club's own / builder brands, centered in the row */
    .spon-house { display: flex; align-items: center; gap: 18px; }
    .spon-x { font-family: var(--font-sans); font-weight: 300; font-size: 18px; line-height: 1; color: var(--stone); flex: none; }
    /* Zacc.AI — transparent white wordmark (no globe); pure lettering, so sized smaller than stacked marks to match their visual letter height */
    .zai-logo { display: block; object-fit: contain; }
    .zai-logo-hero { height: 29px; width: auto; }
    /* chala.ai — transparent white PNG (CHALA + crown + tagline), the app being built */
    .chala-logo { display: block; object-fit: contain; }
    .chala-logo-hero { height: 64px; width: auto; }
    .fw-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
    .fw-tag.g { color: var(--devocion); }
    .partner-strip { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
    @media (max-width: 480px){ .dv-logo-hero { height: 36px; width: 134px; } .gn-logo-hero { height: 26px; } .mora-logo-hero { height: 40px; } .zai-logo-hero { height: 24px; } .chala-logo-hero { height: 40px; } .spon-plus, .spon-x { font-size: 16px; } .spon-pair, .spon-house { gap: 12px; } .spon-row { grid-template-columns: 1fr; gap: 16px; } .spon-side { justify-content: center; } .spon-div { display: none; } }

    /* featured partner */
    .sponsor-feature { margin-top: 64px; display: grid; grid-template-columns: 0.85fr 1.15fr; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface); }
    .sf-logo { display: flex; align-items: center; justify-content: center; padding: 52px 40px; background: #000; border-right: 1px solid var(--line); position: relative; }
    .sf-logo .dv-logo { height: clamp(56px, 8vw, 78px); width: clamp(184px, 26vw, 250px); }
    .sf-badge { position: absolute; top: 16px; left: 16px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--devocion); border: 1px solid rgba(26,125,75,0.45); border-radius: 100px; padding: 5px 11px; }
    .sf-body { padding: 40px 38px; }
    .sf-body .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--devocion); }
    .sf-body h3 { margin-top: 13px; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
    .sf-body p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 440px; }
    .sf-meta { margin-top: 26px; display: flex; gap: 32px; flex-wrap: wrap; }
    .sf-meta .m small { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
    .sf-meta .m b { font-size: 15px; font-weight: 700; }
    .sf-link { margin-top: 28px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg); border-bottom: 1px solid var(--line-2); padding-bottom: 4px; transition: gap 0.2s, color 0.2s, border-color 0.2s; }
    .sf-link:hover { gap: 14px; color: var(--devocion); border-color: var(--devocion); }
    .sf-link .arr { transition: transform 0.2s; }
    @media (max-width: 760px){ .sponsor-feature{ grid-template-columns: 1fr; } .sf-logo{ border-right: none; border-bottom: 1px solid var(--line); padding: 46px 30px; } }

    /* partnership loop */
    .loop { margin-top: 66px; }
    .loop-head { text-align: center; margin-bottom: 36px; }
    .loop-head .eyebrow { display: block; margin-bottom: 12px; }
    .loop-head h3 { font-size: clamp(22px, 3.4vw, 32px); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
    .loop-ring { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .loop-step { border: 1px solid var(--line); border-radius: 8px; padding: 24px 20px; background: var(--surface); position: relative; }
    .loop-step .ls-n { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--devocion); }
    .loop-step h4 { margin-top: 12px; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; line-height: 1.18; }
    .loop-step p { margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .loop-step .arrow { position: absolute; right: -12px; top: 50%; transform: translateY(-50%); z-index: 3; color: var(--stone); font-size: 15px; background: var(--bg); padding: 4px 0; }
    .loop-step:last-child .arrow { color: var(--devocion); }
    .loop-cap { margin-top: 22px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
    .loop-cap .g { color: var(--devocion); }
    @media (max-width: 860px){ .loop-ring{ grid-template-columns: repeat(2,1fr); } .loop-step .arrow{ display: none; } }
    @media (max-width: 460px){ .loop-ring{ grid-template-columns: 1fr; } }

    /* become a partner */
    .partner { margin-top: 58px; border: 1px dashed var(--line-2); border-radius: 10px; padding: 44px 36px; text-align: center; }
    .partner h3 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
    .partner p { margin-top: 14px; color: var(--muted); font-size: 15px; max-width: 470px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    .partner-slots { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .pslot { width: 148px; height: 62px; border: 1px dashed var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); transition: border-color 0.2s, color 0.2s; }
    .pslot:hover { border-color: var(--line-2); color: var(--muted); }
    .partner .btn { margin-top: 30px; }

    /* ---------- PARTNERS CAROUSEL ---------- */
    .partners-carousel { padding: clamp(60px, 9vh, 100px) 0; }
    .partners-carousel .sec-head { margin-bottom: 38px; }
    .pc-stage {
      position: relative;
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
      overflow: hidden;
    }
    .pc-stage::after {
      content: ""; position: absolute; left: 0; right: 0; top: 4px;
      border-top: 1px solid var(--line); pointer-events: none;
    }
    .pc-track { position: relative; min-height: clamp(420px, 56vh, 520px); }
    .pc-slide {
      position: absolute; inset: 0;
      display: grid;
      grid-template-columns: clamp(72px, 7vw, 96px) 1.2fr 1fr;
      gap: clamp(24px, 3.4vw, 56px);
      align-items: center;
      padding: clamp(36px, 5vh, 64px) clamp(40px, 5vw, 72px);
      opacity: 0; visibility: hidden;
      transition: opacity 0.6s ease, visibility 0.6s;
      pointer-events: none;
    }
    .pc-slide.is-current { opacity: 1; visibility: visible; pointer-events: auto; }

    /* Left metadata strip — anchors each slide */
    .pc-meta {
      display: flex; flex-direction: column;
      gap: clamp(10px, 1.4vh, 16px);
      align-items: flex-start;
      align-self: stretch;
      border-right: 1px solid var(--line);
      padding-right: clamp(14px, 1.8vw, 22px);
      padding-top: 4px;
    }
    .pc-meta-index {
      font-family: var(--font-sans);
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800; letter-spacing: -0.03em;
      line-height: 1; color: #fff; margin: 0;
    }
    .pc-meta-index .pc-meta-total {
      font-family: var(--font-mono); font-size: 0.4em;
      font-weight: 500; letter-spacing: 0.08em;
      color: var(--stone); margin-left: 4px; vertical-align: top;
    }
    .pc-meta-rule {
      width: clamp(20px, 2vw, 32px); height: 1px;
      background: var(--line-2);
    }
    .pc-meta-tag {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--stone);
      font-weight: 600; line-height: 1.4;
    }
    .pc-slide.is-headline .pc-meta-index { color: var(--devocion); }

    /* Logo — dominant element */
    .pc-logo {
      display: flex; align-items: center; justify-content: center;
      border-right: 1px solid var(--line);
      padding-right: clamp(20px, 3vw, 44px);
      min-height: clamp(240px, 32vh, 360px);
    }
    .pc-logo img {
      max-width: 100%;
      width: clamp(220px, 26vw, 360px);
      max-height: clamp(220px, 30vh, 340px);
      object-fit: contain;
      filter: brightness(1.05);
      mix-blend-mode: screen;
    }
    .pc-slide.is-headline .pc-logo img {
      width: clamp(260px, 30vw, 420px);
      max-height: clamp(260px, 34vh, 380px);
    }

    /* Body — demoted name, prominent perk pill */
    .pc-body {
      display: flex; flex-direction: column;
      gap: 12px; position: relative;
      align-self: center;
    }
    .pc-eyebrow {
      font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--stone); font-weight: 600; margin: 0;
    }
    .pc-slide.is-headline .pc-eyebrow { color: var(--devocion); }
    .pc-name {
      font-family: var(--font-sans);
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 700; letter-spacing: 0.01em;
      text-transform: uppercase; line-height: 1.1;
      margin: 0; color: #fff;
    }
    .pc-tagline {
      font-size: clamp(15px, 1.35vw, 17px);
      color: #c4c8d4; line-height: 1.55; margin: 4px 0 0; max-width: 46ch;
    }
    .pc-perk-pill {
      display: inline-flex; align-items: center; align-self: flex-start;
      margin-top: 12px;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.16em; text-transform: uppercase;
      font-weight: 700; color: #0a0a0a;
      background: var(--devocion);
      padding: 8px 14px; border-radius: 2px;
      max-width: 100%;
    }
    .pc-link {
      margin-top: 16px; align-self: flex-start;
      font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
      text-transform: uppercase; font-weight: 700;
      color: var(--devocion); text-decoration: none;
      padding: 12px 18px; border: 1px solid var(--devocion); border-radius: 2px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .pc-link:hover { background: var(--devocion); color: #000; }

    /* Controls */
    .pc-prev, .pc-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(0,0,0,0.6); border: 1px solid var(--line-2); color: #fff;
      width: 44px; height: 44px; border-radius: 2px;
      font-family: var(--font-mono); font-size: 16px; cursor: pointer;
      transition: background 0.2s, border-color 0.2s; z-index: 2;
    }
    .pc-prev:hover, .pc-next:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
    .pc-prev { left: clamp(10px, 1.5vw, 18px); }
    .pc-next { right: clamp(10px, 1.5vw, 18px); }
    .pc-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
    .pc-dot {
      width: 28px; height: 2px; background: rgba(255,255,255,0.2);
      border: none; cursor: pointer; padding: 0; border-radius: 0;
      transition: background 0.3s, width 0.3s;
    }
    .pc-dot:hover { background: rgba(255,255,255,0.5); }
    .pc-dot.is-current { background: var(--devocion); width: 44px; }
    @media (max-width: 760px) {
      .pc-slide {
        grid-template-columns: 1fr;
        padding: 32px 22px 40px;
        text-align: center;
        gap: 22px;
      }
      .pc-meta {
        flex-direction: row;
        align-items: center; justify-content: center;
        border-right: none; border-bottom: 1px solid var(--line);
        padding: 0 0 16px;
        gap: 14px;
      }
      .pc-meta-rule { width: 16px; }
      .pc-logo {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 0 0 22px;
        min-height: 180px;
      }
      .pc-logo img { width: clamp(200px, 60vw, 280px); }
      .pc-body { align-items: center; }
      .pc-tagline { text-align: center; }
      .pc-perk-pill, .pc-link { align-self: center; }
      .pc-name { font-size: clamp(20px, 5vw, 26px); }
      .pc-prev, .pc-next { top: auto; bottom: -52px; transform: none; }
      .pc-prev { left: calc(50% - 56px); }
      .pc-next { right: calc(50% - 56px); }
      .pc-dots { margin-top: 64px; }
    }

    /* ---------- WHAT AIM IS ---------- */
    .lede { max-width: 660px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.7; }
    .lede b { color: var(--fg); font-weight: 700; }
    .disc-row { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px; max-width: 880px; }
    .disc {
      font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg);
      border: 1px solid var(--line); border-radius: 100px; padding: 11px 19px; transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .disc:hover { border-color: #fff; background: rgba(255,255,255,0.05); transform: translateY(-2px); }

    /* ---------- THE SESSIONS ---------- */
    #sessions { padding-top: clamp(48px, 7vh, 76px); }
    #sessions .sec-head { border-top: 1px solid var(--line); padding-top: clamp(34px, 5vh, 52px); }
    #sessions .sec-head p { color: #c4c8d4; }

    .sessions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
    .session-card {
      display: flex; flex-direction: column;
      border: 1px solid var(--line); border-radius: 0; background: var(--surface); padding: 40px 34px 34px;
      position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s, background 0.2s;
    }
    .session-card:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--surface-2); }
    .session-card.is-feature { border-top: 2px solid var(--devocion); }
    .session-card .s-index { font-family: var(--font-sans); font-weight: 900; font-size: clamp(40px, 5.5vw, 66px); letter-spacing: -0.04em; line-height: 0.9; color: var(--devocion); text-transform: uppercase; margin-bottom: 6px; }
    .session-card .s-day { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
    .session-card h3 { margin-top: 6px; min-height: 1.4em; font-size: clamp(17px, 1.9vw, 23px); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.15; color: #c4c8d4; }
    .session-card .s-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px 30px; border-top: 1px solid var(--line); padding-top: 20px; }
    .session-card .s-meta .it { display: flex; flex-direction: column; gap: 7px; }
    .session-card .s-meta small { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
    .session-card .s-meta b { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); }
    .session-card p { margin-top: 20px; color: #c4c8d4; font-size: 14px; line-height: 1.65; max-width: 360px; }
    .session-card .s-link {
      margin-top: auto; align-self: flex-start;
      display: inline-flex; align-items: center; gap: 10px;
      padding: 13px 20px; border: 1px solid var(--devocion); border-radius: 2px;
      background: transparent; color: var(--devocion);
      font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      transition: background 0.2s, color 0.2s, gap 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .session-card .s-link:hover { background: var(--devocion); color: #fff; gap: 14px; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,125,75,0.32); }
    .session-card .s-link .arr { transition: transform 0.2s; }
    .session-card.is-feature .s-link { background: var(--devocion); color: #fff; }
    .session-card.is-feature .s-link:hover { background: #1f9357; box-shadow: 0 8px 24px rgba(26,125,75,0.42); }
    .session-card .s-badge { position: absolute; top: 22px; right: 22px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--devocion); border: 1px solid rgba(26,125,75,0.45); border-radius: 2px; padding: 5px 11px; }
    @media (max-width: 760px){ .sessions{ grid-template-columns: 1fr; } .session-card h3 { min-height: 0; } }

    /* ---------- FOUNDERS PAGE (dedicated /founders surface) ---------- */
    .phero { padding: 92px 0 58px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
    .phero .back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 26px; transition: color 0.18s; }
    .phero .back:hover { color: var(--fg); }
    .phero .eyebrow { display: block; margin-bottom: 18px; }
    .phero h1 { font-size: clamp(40px, 8vw, 88px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.93; text-transform: uppercase; }
    .phero p { margin-top: 24px; max-width: 580px; color: var(--muted); font-size: 17px; }

    .people { padding: 64px 0 80px; }
    .pgrid { display: flex; flex-direction: column; gap: 32px; }
    .person { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; border: 1px solid var(--line); background: var(--surface); padding: 36px; transition: border-color 0.2s; }
    .person:hover { border-color: var(--line-2); }
    .pphoto { width: 200px; height: 250px; background: linear-gradient(135deg, #15151c, #0a0a0d); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
    .pphoto img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05) brightness(0.95); transition: filter 0.4s; }
    .person:hover .pphoto img { filter: grayscale(0) contrast(1.02) brightness(1); }
    .pphoto .initials { font-family: var(--font-sans); font-weight: 900; letter-spacing: -0.04em; font-size: clamp(28px, 3.4vw, 40px); color: rgba(255,255,255,0.5); text-transform: uppercase; }
    .pphoto .ph-tag { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
    .pbody { padding: 0; }
    .pname { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; text-transform: uppercase; }
    .prole { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--devocion); }
    .ptags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
    .ptag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); border: 1px solid var(--line); padding: 5px 11px; border-radius: 2px; }
    .pbio { margin-top: 16px; color: #c4c8d4; font-size: 15px; line-height: 1.65; max-width: 560px; }
    .psocial { margin-top: 22px; display: flex; gap: 10px; }
    .psocial a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); border: 1px solid var(--line); padding: 7px 13px; border-radius: 2px; transition: all 0.18s; }
    .psocial a:hover { color: var(--fg); border-color: var(--line-2); }
    @media (max-width: 640px) {
      .person { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }
      .pphoto { width: 100%; height: 280px; }
      .pbody { text-align: left; }
    }
    .pcta { border-top: 1px solid var(--line); padding: 70px 0; text-align: center; }
    .pcta h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; }
    .pcta p { margin-top: 14px; color: var(--muted); }
    .pcta .btn { margin-top: 28px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; background: #fff; color: #000; padding: 16px 32px; border-radius: 2px; transition: transform 0.18s, box-shadow 0.18s; }
    .pcta .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.14); }

    /* ---------- FOUNDERS (home teaser only) ---------- */
    .founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .founder { border: 1px solid var(--line); border-radius: 10px; background: var(--surface); padding: 34px 32px; display: flex; gap: 24px; align-items: flex-start; transition: border-color 0.2s, transform 0.2s, background 0.2s; }
    .founder:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--surface-2); }
    .f-avatar { width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface-2); display: flex; align-items: center; justify-content: center; flex: none; font-family: var(--font-sans); font-weight: 800; font-size: 27px; color: var(--fg); letter-spacing: -0.02em; position: relative; overflow: hidden; }
    .f-avatar small { position: absolute; bottom: 9px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
    .f-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.92); }
    .f-info .f-name { font-size: 23px; font-weight: 800; letter-spacing: -0.015em; text-transform: uppercase; }
    .f-info .f-role { margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
    .f-info p { margin-top: 15px; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .founders-belief { margin-top: 30px; text-align: center; font-family: var(--font-mono); font-size: clamp(13px, 1.9vw, 16px); letter-spacing: 0.05em; color: var(--muted); line-height: 1.6; }
    .founders-belief b { color: #fff; font-weight: 700; }
    @media (max-width: 760px){ .founders-grid{ grid-template-columns: 1fr; } }

    /* ---------- JOURNAL — vlog / article / race cards ---------- */
    .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 2.4vw, 32px);
      margin-top: clamp(32px, 4vh, 56px);
    }
    .j-card {
      display: flex;
      flex-direction: column;
      background: var(--surface);
      border: 1px solid var(--line);
      transition: border-color 0.25s, transform 0.25s;
    }
    .j-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
    .j-media {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #0a0a0d;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .j-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.4) contrast(1.05); }
    .j-media-label {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
    }
    .j-media--vlog { background: linear-gradient(135deg, #0d0d11 0%, #14141a 100%); }
    .j-media--vlog .j-media-label { color: rgba(255,255,255,0.32); }
    .j-media--article { background: linear-gradient(135deg, #0a0a0d 0%, #111114 100%); }
    .j-media--race {
      background:
        linear-gradient(135deg, rgba(26,125,75,0.18) 0%, rgba(0,0,0,0) 60%),
        linear-gradient(135deg, #0a0a0d 0%, #111114 100%);
      border-top: 2px solid var(--devocion);
    }
    .j-media--race .j-media-label { color: var(--devocion); letter-spacing: 0.36em; }
    .j-play {
      position: absolute;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      padding-left: 4px;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(6px);
      transition: background 0.25s, border-color 0.25s;
    }
    .j-card:hover .j-play { background: rgba(26,125,75,0.85); border-color: var(--devocion); }
    .j-body {
      padding: clamp(20px, 2vw, 28px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }
    .j-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: space-between;
    }
    .j-pill {
      display: inline-block;
      padding: 4px 10px;
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 1px solid;
      border-radius: 2px;
    }
    .j-pill--vlog { color: #e8e8e8; border-color: rgba(255,255,255,0.4); }
    .j-pill--article { color: #c4c8d4; border-color: rgba(255,255,255,0.22); }
    .j-pill--race { color: var(--devocion); border-color: var(--devocion); }
    .j-date {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--stone);
    }
    .j-title {
      font-family: var(--font-sans);
      font-size: clamp(18px, 1.5vw, 22px);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.25;
      color: #fff;
      margin: 0;
    }
    .j-summary {
      font-size: 14.5px;
      line-height: 1.6;
      color: #c4c8d4;
      margin: 0;
    }
    .j-link {
      margin-top: auto;
      padding-top: 8px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--devocion);
      text-decoration: none;
      transition: gap 0.18s, color 0.18s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .j-link:hover { gap: 12px; color: #fff; }

    @media (max-width: 980px){ .journal-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px){ .journal-grid { grid-template-columns: 1fr; gap: 18px; } .j-media { aspect-ratio: 16 / 9; } }

    /* ---------- JOURNAL LIBRARY — toggleable category sidebar ---------- */
    .j-toolbar {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: space-between;
      margin-top: clamp(24px, 3vh, 40px);
      margin-bottom: clamp(18px, 2vh, 28px);
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }
    .j-library-toggle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 1px solid var(--line-2);
      border-radius: 2px;
      padding: 10px 16px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e8e8e8;
      cursor: pointer;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
    }
    .j-library-toggle:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.45); color: #fff; }
    .j-library-toggle .j-lt-eyebrow { color: var(--devocion); }
    .j-library-toggle .j-lt-caret { display: inline-block; font-size: 9px; transition: transform 0.25s; }
    .j-library-toggle[aria-expanded="true"] .j-lt-caret { transform: rotate(180deg); color: var(--devocion); }
    .j-library-toggle[aria-expanded="true"] { border-color: var(--devocion); color: #fff; }

    .j-active-filter {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
    }
    .j-active-filter em { font-style: normal; color: #c4c8d4; }

    .j-with-library {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(20px, 2.4vw, 36px);
      transition: grid-template-columns 0.3s ease;
    }
    .j-with-library[data-library="open"] { grid-template-columns: 220px 1fr; }

    .j-library {
      display: none;
      align-self: start;
      padding-right: clamp(8px, 1vw, 16px);
      border-right: 1px solid var(--line);
    }
    .j-with-library[data-library="open"] .j-library { display: block; }
    .j-with-library[data-library="open"] .journal-grid { grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 1080px){ .j-with-library[data-library="open"] .journal-grid { grid-template-columns: 1fr; } }

    .j-cats {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .j-filter {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--line);
      border-left: 2px solid transparent;
      padding-left: 12px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c4c8d4;
      cursor: pointer;
      transition: color 0.18s, border-color 0.18s, padding-left 0.18s;
      text-align: left;
    }
    .j-filter:hover { color: #fff; padding-left: 16px; }
    .j-filter.is-active {
      color: #fff;
      border-left-color: var(--devocion);
      padding-left: 12px;
    }
    .j-filter.is-active .j-count { color: var(--devocion); }
    .j-cat-name { flex: 1; }
    .j-count {
      font-size: 10px;
      color: var(--stone);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.1em;
    }

    .j-library-foot {
      margin-top: 18px;
      font-size: 12px;
      line-height: 1.55;
      color: var(--stone);
      max-width: 220px;
    }

    .j-empty {
      grid-column: 1 / -1;
      padding: clamp(40px, 6vh, 72px) 24px;
      border: 1px dashed var(--line-2);
      border-radius: 2px;
      text-align: center;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .j-empty strong { color: var(--devocion); font-weight: 700; }

    @media (max-width: 820px){
      .j-with-library[data-library="open"] { grid-template-columns: 1fr; }
      .j-with-library[data-library="open"] .j-library {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
        padding-bottom: 18px;
        margin-bottom: 4px;
      }
      .j-toolbar { flex-wrap: wrap; gap: 12px; }
    }

    /* ---------- JOURNAL · event sub-toggle (Upcoming / Past) ---------- */
    /* Sits inline in the toolbar, anchored to the right. */
    .j-event-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0;
      margin-left: auto;
    }
    @media (max-width: 820px){
      .j-event-toggle { margin-left: 0; }
    }
    .j-event-btn {
      background: transparent;
      border: 1px solid var(--line-2);
      border-right: none;
      padding: 8px 16px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #c4c8d4;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .j-event-btn:last-child { border-right: 1px solid var(--line-2); }
    .j-event-btn:hover { background: rgba(255,255,255,0.04); color: #fff; }
    .j-event-btn.is-active {
      background: var(--devocion);
      border-color: var(--devocion);
      color: #0a0a0a;
    }
    .j-event-btn.is-active .j-event-count { color: #0a0a0a; opacity: 0.7; }
    .j-event-count {
      font-size: 9.5px;
      color: var(--stone);
      font-variant-numeric: tabular-nums;
    }

    /* ---------- JOURNAL · pagination ---------- */
    .j-pagination {
      grid-column: 1 / -1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: clamp(28px, 4vh, 48px);
      padding-top: clamp(20px, 2.4vh, 28px);
      border-top: 1px solid var(--line);
    }
    .j-page-arrow {
      width: 36px;
      height: 36px;
      background: transparent;
      border: 1px solid var(--line-2);
      color: #c4c8d4;
      font-family: var(--font-mono);
      font-size: 14px;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .j-page-arrow:hover:not(:disabled) {
      color: #fff;
      border-color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.04);
    }
    .j-page-arrow:disabled { opacity: 0.25; cursor: default; }
    .j-page-list { display: flex; gap: 4px; align-items: center; }
    .j-page-num {
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      background: transparent;
      border: 1px solid transparent;
      color: var(--stone);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      cursor: pointer;
      font-variant-numeric: tabular-nums;
      transition: color 0.18s, border-color 0.18s, background 0.18s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .j-page-num:hover { color: #fff; border-color: var(--line); }
    .j-page-num.is-active {
      color: var(--devocion);
      border-color: var(--devocion);
      background: rgba(26,125,75,0.08);
    }
    .j-page-ellipsis {
      color: var(--stone);
      font-family: var(--font-mono);
      font-size: 11px;
      padding: 0 4px;
    }

    @media (max-width: 520px){
      .j-event-btn { padding: 7px 11px; font-size: 10px; letter-spacing: 0.14em; }
      .j-pagination { gap: 4px; }
      .j-page-arrow, .j-page-num { width: 32px; height: 32px; min-width: 32px; font-size: 10.5px; }
    }

    /* ---------- JOURNAL · sections (Upcoming / Past / Media) ---------- */
    .j-content { display: flex; flex-direction: column; gap: clamp(40px, 5vh, 64px); }
    .j-section.is-empty { display: none; }
    .j-section-head {
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 0 0 14px;
      border-top: 1px solid var(--line-2);
      padding-top: 18px;
      margin-bottom: clamp(18px, 2.4vh, 28px);
      position: relative;
    }
    .j-section-head::after {
      content: "";
      position: absolute;
      left: 0; right: 0; top: -5px;
      height: 1px;
      background: var(--line);
    }
    .j-section-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--devocion);
    }
    .j-section-title {
      font-family: var(--font-sans);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #fff;
      margin: 0;
      flex: 1;
    }
    .j-section-count {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      font-variant-numeric: tabular-nums;
    }
    .j-section-count::before { content: "· "; }
    .j-section-empty {
      padding: 20px 0;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--stone);
      border: 1px dashed var(--line-2);
      border-radius: 2px;
      text-align: center;
    }

    /* ---------- CLOSING CTA ---------- */
    .closing { position: relative; text-align: center; padding: clamp(84px, 15vh, 150px) 0; border-top: 1px solid var(--line); overflow: hidden; }
    .closing .speedlines { opacity: 0.4; }
    .closing-inner { position: relative; z-index: 1; }
    .closing h2 { font-size: clamp(56px, 13vw, 150px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.9; text-transform: uppercase; text-shadow: 10px 0 16px rgba(255,255,255,0.10), -10px 0 16px rgba(255,255,255,0.10); }
    .closing .c-sub { margin-top: 22px; color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
    .closing .c-cta { margin-top: 40px; }
    .closing .c-cta .btn { font-size: 13px; padding: 17px 34px; }
    .closing-mark { width: min(190px, 44vw); aspect-ratio: 2.4 / 1; background-image: url(./aim-logo.jpeg); background-repeat: no-repeat; background-position: center 53%; background-size: 150% auto; margin: 64px auto 0; opacity: 0.5; }

    /* ---------- FOOTER ---------- */
    .footer { border-top: 1px solid var(--line); padding: 48px 0; }
    .footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .footer .f-left { display: flex; flex-direction: column; gap: 8px; }
    .footer .f-left small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
    .footer .f-links { display: flex; gap: 22px; }
    .footer .f-links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.18s; }
    .footer .f-links a:hover { color: #fff; }

    /* === WE MOVE — IN MANY FORMS — editorial discipline list === */
    .move-headline { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
    .move-word-track {
      display: inline-flex; justify-content: center;
      min-width: 5.5em;
    }
    .move-word {
      font-family: var(--font-sans); font-weight: 900; letter-spacing: -0.04em;
      font-size: clamp(56px, 9vw, 144px); line-height: 0.95; text-transform: uppercase; color: #fff;
      text-shadow: none;
      display: inline-block;
    }
    .move-dash { font-family: var(--font-sans); font-weight: 300; font-size: clamp(40px, 6vw, 96px); color: var(--stone); line-height: 1; text-shadow: none; animation: none !important; transform: none !important; }
    .move-label { font-family: var(--font-mono); font-size: clamp(13px, 1.2vw, 17px); letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg); text-shadow: none; animation: none !important; transform: none !important; }

    .disc-list {
      margin-top: clamp(56px, 8vh, 112px);
      display: flex; flex-direction: column;
      border-top: 1px solid var(--line);
    }
    .disc-row {
      position: relative;
      border-bottom: 1px solid var(--line);
      padding: clamp(34px, 5.5vh, 72px) 0;
      cursor: default;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .disc-row.is-revealed { opacity: 1; transform: translateY(0); }
    .disc-row:last-child { border-bottom: none; }

    /* asymmetric stagger — content margins shift per row so the hairlines
       stay full-width while the names hop across the column */
    .disc-row[data-i="1"] .disc-inner { margin-left: 0;   margin-right: 22%; }
    .disc-row[data-i="2"] .disc-inner { margin-left: 32%; margin-right: 4%; }
    .disc-row[data-i="3"] .disc-inner { margin-left: 6%;  margin-right: 30%; }
    .disc-row[data-i="4"] .disc-inner { margin-left: 32%; margin-right: 0; }
    .disc-row[data-i="5"] .disc-inner { margin-left: 4%;  margin-right: 18%; }

    .disc-inner {
      display: flex;
      align-items: flex-start;
      gap: clamp(18px, 2.6vw, 48px);
    }
    .disc-idx {
      font-family: var(--font-mono);
      font-size: clamp(11px, 0.95vw, 14px);
      letter-spacing: 0.24em;
      color: var(--muted);
      flex: 0 0 auto;
      padding-top: 0.9em;
      transition: color 0.35s ease;
    }
    .disc-body { display: block; min-width: 0; }
    .disc-name {
      font-family: var(--font-sans);
      font-weight: 900;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      font-size: clamp(56px, 11vw, 168px);
      line-height: 0.9;
      color: #fff;
      margin: 0;
      display: inline-block;
      transition: color 0.35s ease, text-shadow 0.35s ease, filter 0.35s ease;
      will-change: filter, text-shadow;
    }
    .disc-desc {
      display: block;
      margin-top: 16px;
      font-family: var(--font-mono);
      font-size: clamp(11px, 0.95vw, 14px);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      max-width: 52ch;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .disc-row:hover .disc-name,
    .disc-row:focus-within .disc-name {
      color: var(--devocion);
      /* motion-blur echo — same offset rhythm as the AIM logo */
      text-shadow:
        2px 0 0 rgba(26,125,75,0.55),
        5px 0 6px rgba(26,125,75,0.32),
        10px 0 14px rgba(26,125,75,0.16);
      filter: blur(0.3px);
    }
    .disc-row:hover .disc-idx,
    .disc-row:focus-within .disc-idx { color: var(--devocion); }
    .disc-row:hover .disc-desc,
    .disc-row:focus-within .disc-desc { opacity: 1; transform: translateY(0); }

    /* photo peek — anchored to the row's outer edge (not the staggered inner),
       so it sits in the empty strip and never overlaps the discipline name */
    .disc-row { position: relative; }
    .disc-inner { position: static; z-index: 1; }
    .disc-photo {
      position: absolute;
      top: 50%;
      width: clamp(140px, 14vw, 220px);
      aspect-ratio: 4 / 5;
      margin: 0;
      overflow: hidden;
      background: #111;
      border: 1px solid var(--line-2);
      opacity: 0;
      filter: grayscale(1) contrast(1.05);
      transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), clip-path 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
      z-index: 0;
      will-change: opacity, transform, clip-path;
    }
    .disc-photo[data-side="right"] {
      right: var(--page-pad, 24px);
      transform: translateY(-50%) translateX(28px);
      clip-path: inset(0 0 0 100%);
    }
    .disc-photo[data-side="left"]  {
      left:  var(--page-pad, 24px);
      transform: translateY(-50%) translateX(-28px);
      clip-path: inset(0 100% 0 0);
    }
    /* Stretch (03): name runs wide, so push its photo out to the viewport
       margin AND narrow it — narrowing moves the left edge right, off the "H" */
    .disc-row[data-i="3"] .disc-photo[data-side="right"] {
      right: calc(var(--page-pad, 24px) * -1 - 8vw);
      width: clamp(118px, 10.5vw, 168px);
    }
    /* Hike (05): keep this one in full color */
    .disc-row[data-i="5"] .disc-photo { filter: contrast(1.02); }
    .disc-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .disc-photo img:not([src]),
    .disc-photo img[src=""] { visibility: hidden; }
    .disc-photo figcaption {
      position: absolute;
      left: 8px;
      bottom: 8px;
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }
    .disc-row:hover .disc-photo,
    .disc-row:focus-within .disc-photo {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateY(-50%) translateX(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .move-word { animation: none !important; text-shadow: none; }
      .disc-row { opacity: 1; transform: none; transition: none; }
      .disc-name { transition: color 0.2s ease; filter: none !important; text-shadow: none !important; }
      .disc-desc { transition: opacity 0.2s ease; transform: none; }
      .disc-row:hover .disc-name,
      .disc-row:focus-within .disc-name { filter: none; text-shadow: none; }
    }
    @media (max-width: 820px) {
      .disc-row[data-i="1"] .disc-inner,
      .disc-row[data-i="2"] .disc-inner,
      .disc-row[data-i="3"] .disc-inner,
      .disc-row[data-i="4"] .disc-inner,
      .disc-row[data-i="5"] .disc-inner { margin-left: 0; margin-right: 0; }
      .disc-inner { gap: 14px; }
      .disc-name { font-size: clamp(48px, 14vw, 96px); }
      .disc-desc { opacity: 1; transform: none; margin-top: 10px; }
      .disc-photo {
        position: static;
        width: 55%;
        margin-top: 14px;
        opacity: 0.9;
        filter: grayscale(1) contrast(1.05);
        clip-path: none;
      }
      .disc-photo[data-side="right"] {
        margin-left: auto; margin-right: 0; right: auto;
        transform: none; clip-path: none;
      }
      .disc-photo[data-side="left"]  {
        margin-left: 0; margin-right: auto; left: auto;
        transform: none; clip-path: none;
      }
      .disc-row:hover .disc-photo,
      .disc-row:focus-within .disc-photo { transform: none; opacity: 1; }
    }
    @media (max-width: 480px) {
      .move-headline { gap: 10px; }
      .disc-row { padding: 28px 0; }
      .disc-idx { padding-top: 0.6em; }
    }

    /* ---------- CALENDAR — compact editorial month, fits one viewport ---------- */
    .cal-section { padding: clamp(28px, 4vh, 56px) 0 clamp(24px, 3.5vh, 44px); border-top: 1px solid var(--line); }

    /* Section intro — tightened */
    .cal-intro { max-width: 64ch; margin-bottom: clamp(16px, 2.5vh, 28px); }
    .cal-intro .eyebrow { display: block; margin-bottom: 8px; }
    .cal-intro p { color: #c4c8d4; font-size: 14px; max-width: 56ch; margin-top: 6px; }
    .cal-intro h2 {
      font-family: var(--font-sans); font-weight: 800;
      font-size: clamp(22px, 2.4vw, 30px); line-height: 1.05; letter-spacing: -0.02em;
      text-transform: uppercase; color: #fff;
    }

    /* Month headline + nav row — compact, one line */
    .cal-head {
      display: grid; grid-template-columns: 1fr auto;
      align-items: baseline; gap: 24px;
      padding-bottom: clamp(10px, 1.5vh, 16px);
      border-bottom: 1px solid var(--line-2);
      margin-bottom: clamp(10px, 1.5vh, 16px);
    }
    .cal-head-title { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
    .cal-month-headline {
      font-family: var(--font-sans); font-weight: 900;
      font-size: clamp(34px, 4.6vw, 62px); line-height: 0.95;
      letter-spacing: -0.035em; text-transform: uppercase;
      color: #fff; margin: 0;
    }
    .cal-year-tag {
      display: inline-block;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--muted);
      padding: 4px 10px;
      border: 1px solid var(--line-2);
      border-radius: 2px;
      font-variant-numeric: tabular-nums;
    }

    /* Month nav */
    .cal-nav {
      display: flex; align-items: center; gap: 8px;
    }
    .cal-nav button {
      background: none; border: 1px solid var(--line-2);
      color: #fff; font-family: var(--font-mono); font-size: 15px;
      width: 36px; height: 36px;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .cal-nav button:hover { background: rgba(255,255,255,0.06); border-color: #fff; }
    .cal-nav .cal-today-btn {
      width: auto; padding: 0 14px; height: 36px;
      font-size: 10.5px; letter-spacing: 0.2em; font-weight: 600;
      text-transform: uppercase; margin-left: 4px;
    }

    /* Stat band — compact */
    .cal-stat-band {
      display: flex; flex-wrap: wrap; gap: clamp(16px, 2.5vw, 32px);
      padding: 10px 0 12px;
      border-bottom: 1px solid var(--line);
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--stone);
    }
    .cal-stat-band .it { display: inline-flex; align-items: baseline; gap: 7px; }
    .cal-stat-band .it b {
      font-family: var(--font-sans); font-weight: 800;
      font-size: 15px; letter-spacing: -0.02em;
      color: #fff;
      font-variant-numeric: tabular-nums;
    }
    .cal-stat-band .it.type-session b { color: var(--devocion); }
    .cal-stat-band .pref {
      font-family: var(--font-mono); font-size: 10px;
      color: var(--stone); letter-spacing: 0.2em;
      margin-right: auto;
    }

    /* Weekday header row */
    .cal-weekdays {
      display: grid; grid-template-columns: repeat(7, 1fr);
      font-family: var(--font-mono); font-size: 9px;
      letter-spacing: 0.26em; text-transform: uppercase;
      color: var(--stone);
      padding-top: 10px;
    }
    .cal-weekdays span { padding: 0 10px 8px; text-align: left; border: none; }

    /* Month grid — visible cell borders, alternating row tint for differentiation */
    .cal-grid {
      display: grid; grid-template-columns: repeat(7, 1fr);
      border: 1px solid var(--line-2);
      background: var(--line);
      gap: 1px;
    }
    .cal-cell {
      min-height: clamp(96px, 12vh, 128px);
      padding: 8px 10px 6px;
      display: flex; flex-direction: column; gap: 4px;
      position: relative;
      background: var(--bg);
      transition: background 0.16s;
    }
    /* alternating row tint — subtle stripe so rows differentiate */
    .cal-cell:nth-child(n+8):nth-child(-n+14),
    .cal-cell:nth-child(n+22):nth-child(-n+28),
    .cal-cell:nth-child(n+36):nth-child(-n+42) { background: #050507; }
    .cal-cell.cal-other-month { background: rgba(255,255,255,0.012); }
    .cal-cell.cal-other-month .cal-date { color: var(--stone); opacity: 0.32; }
    .cal-cell.cal-other-month .cal-weekday-tag { display: none; }
    .cal-cell:hover { background: rgba(255,255,255,0.04); }

    /* Today — strong green top-rule + green bold date */
    .cal-cell.cal-today { background: rgba(26,125,75,0.08); }
    .cal-cell.cal-today::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0;
      height: 2px; background: var(--devocion); z-index: 1;
    }
    .cal-cell.cal-today .cal-date { color: var(--devocion); font-weight: 900; }
    .cal-cell.cal-today .cal-weekday-tag { color: var(--devocion); }

    /* Current week — subtle white tint to mark "this week" */
    .cal-cell.cal-week-current { background: rgba(255,255,255,0.025); }
    .cal-cell.cal-week-current.cal-other-month { background: rgba(255,255,255,0.018); }

    /* Date head — compact */
    .cal-date-head {
      display: flex; align-items: baseline; gap: 6px;
    }
    .cal-weekday-tag {
      font-family: var(--font-mono); font-size: 8px;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--stone);
    }
    .cal-date {
      font-family: var(--font-sans); font-weight: 700;
      font-size: clamp(14px, 1.4vw, 18px);
      line-height: 1;
      letter-spacing: -0.02em;
      color: #fff;
      font-variant-numeric: tabular-nums;
    }

    /* Editorial event rows — compact, up to 3 per cell */
    .cal-cell-events { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
    .cal-event-row {
      display: block; text-align: left; width: 100%;
      background: none; border: none; padding: 1px 0 1px 7px;
      cursor: pointer;
      border-left: 2px solid transparent;
      transition: border-left-color 0.16s, padding-left 0.16s;
      overflow: hidden;
    }
    .cal-event-row:hover { padding-left: 10px; }
    .cal-event-name {
      display: block;
      font-family: var(--font-sans); font-weight: 600;
      font-size: 10px; line-height: 1.15; letter-spacing: -0.005em;
      color: #fff;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .cal-event-time {
      display: block;
      font-family: var(--font-mono); font-size: 8px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--stone);
      margin-top: 0;
    }
    .cal-event-row.type-session { border-left-color: var(--devocion); }
    .cal-event-row.type-session .cal-event-name { color: #d8efe0; }
    .cal-event-row.type-race { border-left-color: #fff; }
    .cal-event-row.type-city { border-left-color: var(--stone); }
    .cal-event-row.type-city .cal-event-name { color: var(--muted); }
    .cal-event-overflow {
      font-family: var(--font-mono); font-size: 8.5px;
      color: var(--stone); letter-spacing: 0.12em; text-transform: uppercase;
      padding: 1px 0 0 7px;
    }

    /* Legend — compact */
    .cal-legend {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 14px;
      font-family: var(--font-mono); font-size: 9.5px;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--stone);
    }
    .cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
    .cal-legend-dot {
      width: 12px; height: 2px; display: inline-block;
    }
    .cal-legend-dot.type-session { background: var(--devocion); }
    .cal-legend-dot.type-race { background: #fff; }
    .cal-legend-dot.type-city { background: var(--stone); }

    /* Upcoming events list */
    .cal-upcoming { margin-top: clamp(36px, 5vh, 64px); }
    .cal-upcoming h3 {
      font-family: var(--font-sans); font-weight: 900;
      font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.025em;
      text-transform: uppercase; color: #fff;
      margin-bottom: 18px;
    }
    .cal-up-list {
      display: flex; flex-direction: column;
      border-top: 1px solid var(--line);
    }
    .cal-up-row {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: clamp(20px, 3vw, 48px);
      padding: 24px 4px;
      border-bottom: 1px solid var(--line);
      align-items: center;
      cursor: pointer;
      transition: background 0.16s, padding-left 0.16s;
    }
    .cal-up-row:hover { background: rgba(255,255,255,0.025); padding-left: 12px; }
    .cal-up-date {
      display: flex; flex-direction: column; gap: 4px;
    }
    .cal-up-day {
      font-family: var(--font-sans); font-weight: 900;
      font-size: clamp(32px, 3.6vw, 48px); line-height: 0.9;
      letter-spacing: -0.03em; color: #fff;
      font-variant-numeric: tabular-nums;
    }
    .cal-up-month {
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--muted);
    }
    .cal-up-body { display: flex; flex-direction: column; gap: 8px; }
    .cal-up-name {
      font-family: var(--font-sans); font-weight: 700;
      font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.01em;
      color: #fff; line-height: 1.2;
    }
    .cal-up-meta {
      display: flex; gap: 16px; flex-wrap: wrap;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted);
    }
    .cal-up-meta .it { display: inline-flex; align-items: center; gap: 6px; }
    .cal-up-type {
      font-family: var(--font-mono); font-size: 9.5px;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 4px 8px;
      border: 1px solid var(--line-2);
      border-radius: 2px;
    }
    .cal-up-type.type-session { color: #d8efe0; border-color: var(--devocion); background: rgba(26,125,75,0.08); }
    .cal-up-type.type-race { color: #fff; border-color: #fff; }
    .cal-up-type.type-city { color: var(--muted); }
    .cal-up-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: #fff;
      padding: 12px 18px;
      border: 1px solid var(--line-2);
      border-radius: 2px;
      transition: background 0.18s, border-color 0.18s;
      background: none; cursor: pointer;
      white-space: nowrap;
    }
    .cal-up-cta:hover { background: rgba(255,255,255,0.06); border-color: #fff; }
    .cal-up-cta.is-primary { background: var(--devocion); border-color: var(--devocion); }
    .cal-up-cta.is-primary:hover { background: #1f9059; border-color: #1f9059; }
    .cal-up-empty {
      padding: 48px 4px;
      font-family: var(--font-mono); font-size: 12px;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--stone);
      text-align: center;
    }

    @media (max-width: 820px) {
      .cal-head { grid-template-columns: 1fr; align-items: start; gap: 12px; }
      .cal-nav { align-self: start; }
      .cal-cell { min-height: 96px; padding: 6px 7px 5px; gap: 3px; }
      .cal-date { font-size: 13px; }
      .cal-weekday-tag { font-size: 7.5px; letter-spacing: 0.18em; }
      .cal-event-name { font-size: 10px; }
      .cal-event-time { font-size: 8px; }
      .cal-event-row { padding-left: 5px; }
      .cal-up-row { grid-template-columns: 80px 1fr; }
      .cal-up-cta { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
      .cal-up-day { font-size: 32px; }
      .cal-weekdays span { font-size: 8px; padding: 0 6px 8px; letter-spacing: 0.2em; }
      .cal-stat-band { font-size: 9.5px; gap: 14px; }
      .cal-stat-band .it b { font-size: 13px; }
    }
    @media (max-width: 520px) {
      .cal-cell { min-height: 52px; padding: 5px 5px; gap: 3px; }
      .cal-date { font-size: 12px; }
      .cal-weekday-tag { display: none; }
      .cal-cell-events { display: none; }
      .cal-cell.has-events::after {
        content: ''; position: absolute; bottom: 6px; left: 5px;
        width: 5px; height: 5px; border-radius: 50%;
        background: var(--devocion);
      }
      .cal-cell.has-events.has-race::before { background: #fff; }
      .cal-weekdays span { font-size: 7.5px; padding: 0 3px 6px; letter-spacing: 0.16em; }
    }

    /* ROUTES planner styles moved inline into art-in-movement-routes.html
       (the only page that uses them) so the preview can't render a stale
       cached copy of the layout. See that file's <style> block. */
