    /* ============================================================
       CSS CUSTOM PROPERTIES — DESIGN TOKENS
    ============================================================ */
    :root {
      --black:       #080809;
      --dark:        #0e0e11;
      --dark-mid:    #141418;
      --steel:       #1a1a1f;
      --steel-light: #252530;
      --border:      rgba(255,255,255,0.07);
      --border-ice:  rgba(125,211,252,0.18);

      --white:       #f1f2f4;
      --off-white:   #c8ccd4;
      --mid-gray:    #7a808c;
      --dim-gray:    #484e58;

      --ice:         #7dd3fc;   /* primary accent */
      --ice-bright:  #38bdf8;
      --ice-deep:    #0ea5e9;
      --ice-glow:    rgba(125,211,252,0.12);
      --ice-glow-lg: rgba(56,189,248,0.07);

      --font-display:  'Bebas Neue', sans-serif;
      --font-heading:  'Barlow Condensed', sans-serif;
      --font-body:     'Inter', sans-serif;

      --nav-h:        72px;
      --section-pad:  120px;
      --radius:       4px;
      --radius-lg:    10px;

      --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-text-size-adjust: 100%;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    ::selection {
      background: rgba(56,189,248,0.3);
      color: var(--white);
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--dim-gray); border-radius: 99px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--ice); }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .ice-text   { color: var(--ice); }
    .dim-text   { color: var(--mid-gray); }
    .small-caps {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ice);
    }

    /* Reveal animation — added via JS IntersectionObserver */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Horizontal rule accent */
    .section-rule {
      width: 40px;
      height: 2px;
      background: var(--ice);
      margin-bottom: 32px;
    }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    #nav.scrolled {
      background: rgba(8,8,9,0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom-color: var(--border);
    }

    .nav-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 0.06em;
      color: var(--white);
      transition: color 0.2s;
    }
    .nav-logo span { color: var(--ice); }
    .nav-logo:hover { color: var(--ice); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--off-white);
      position: relative;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--ice);
      transition: width 0.3s var(--ease-out);
    }
    .nav-links a:hover { color: var(--ice); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.nav-active { color: var(--ice); }
    .nav-links a.nav-active::after { width: 100%; }

    /* Hamburger — mobile */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* Mobile menu overlay */
    .nav-mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(8,8,9,0.97);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      font-family: var(--font-display);
      font-size: 42px;
      letter-spacing: 0.08em;
      color: var(--white);
      transition: color 0.2s;
    }
    .nav-mobile-menu a:hover { color: var(--ice); }
    .nav-mobile-close {
      position: absolute;
      top: 24px; right: 32px;
      font-size: 32px;
      color: var(--mid-gray);
      cursor: pointer;
      transition: color 0.2s;
    }
    .nav-mobile-close:hover { color: var(--white); }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Hero video background */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      /* slight desaturate for cinematic feel */
      filter: saturate(0.75) brightness(0.9);
    }

    /* Fallback still (shown before video loads) */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/hero.jpg');
      background-size: cover;
      background-position: center 30%;
      z-index: 0;
    }

    /* Overlay sits above the image/video but BELOW the text content */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg,
          rgba(8,8,9,0.35) 0%,
          rgba(8,8,9,0.45) 40%,
          rgba(8,8,9,0.60) 70%,
          rgba(8,8,9,0.96) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(8,8,9,0.30) 100%);
      z-index: 2;
    }

    /* Subtle ice-blue atmospheric glow at bottom */
    .hero-atmosphere {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 300px;
      background: linear-gradient(to top, rgba(14,165,233,0.06), transparent);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3; /* above the overlay so text is never tinted */
      text-align: center;
      padding: 0 24px;
      max-width: 960px;
    }

    .hero-eyebrow {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
      text-shadow: 0 1px 12px rgba(0,0,0,0.8);
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(72px, 13vw, 160px);
      line-height: 0.92;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
      text-shadow:
        0 2px 24px rgba(0,0,0,0.9),
        0 4px 48px rgba(0,0,0,0.6);
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

    /* Contact tooltip on hero name hover */
    .hero-name-tooltip {
      position: absolute;
      bottom: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: rgba(14,14,17,0.96);
      border: 1px solid var(--border-ice);
      border-radius: var(--radius-lg);
      padding: 14px 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s;
      backdrop-filter: blur(12px);
      z-index: 10;
    }
    .hero-name:hover .hero-name-tooltip,
    .hero-name.tooltip-open .hero-name-tooltip {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .hero-name-tooltip a {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--ice);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .hero-name-tooltip a:hover { color: var(--white); }
    .hero-name-tooltip svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── Inline name links ── */
    .name-link {
      color: inherit;
      cursor: pointer;
      border-bottom: 1px solid rgba(125,211,252,0.4);
      transition: border-color 0.2s, color 0.2s;
    }
    .name-link:hover { color: var(--ice); border-color: var(--ice); }

    /* Global floating contact tooltip */
    #globalNameTooltip {
      position: fixed;
      background: rgba(14,14,17,0.96);
      border: 1px solid var(--border-ice);
      border-radius: var(--radius-lg);
      padding: 14px 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s;
      backdrop-filter: blur(12px);
      z-index: 9999;
      transform: translateY(4px);
    }
    #globalNameTooltip.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    #globalNameTooltip a {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--ice);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    #globalNameTooltip a:hover { color: var(--white); }
    #globalNameTooltip svg { width: 14px; height: 14px; flex-shrink: 0; }

    .hero-subtitle {
      font-family: var(--font-heading);
      font-size: clamp(15px, 2.2vw, 20px);
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
      text-shadow: 0 1px 16px rgba(0,0,0,0.9);
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: clamp(13px, 1.6vw, 16px);
      font-weight: 300;
      line-height: 1.7;
      color: var(--off-white);
      max-width: 520px;
      margin: 0 auto 56px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
      text-shadow: 0 1px 12px rgba(0,0,0,0.85);
    }

    /* Scroll-down CTA */
    .hero-scroll {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 1.1s forwards;
      transition: opacity 0.2s;
    }
    .hero-scroll:hover { opacity: 0.7; }
    .hero-scroll-label {
      font-family: var(--font-heading);
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
    .hero-scroll-line {
      width: 1px;
      height: 52px;
      background: linear-gradient(to bottom, var(--ice), transparent);
      animation: scrollPulse 2.2s ease-in-out 2s infinite;
    }

    /* Stat badges — bottom corners */
    .hero-stats {
      position: absolute;
      bottom: 48px;
      left: 0; right: 0;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 48px;
      opacity: 0;
      animation: fadeIn 1s ease 1.4s forwards;
    }

    .hero-stat {
      text-align: left;
    }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 28px;
      letter-spacing: 0.04em;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-label {
      font-family: var(--font-heading);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-top: 4px;
    }

    /* ============================================================
       KEYFRAMES
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50%       { transform: scaleY(0.7); opacity: 0.4; }
    }

    /* ============================================================
       SECTION SHARED STYLES
    ============================================================ */
    section {
      padding: var(--section-pad) 0;
      position: relative;
    }

    .section-header {
      margin-bottom: 64px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(44px, 7vw, 84px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 15px;
      font-weight: 300;
      color: var(--mid-gray);
      max-width: 520px;
      line-height: 1.75;
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about {
      background: var(--dark);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-image {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius-lg);
      filter: brightness(0.85) contrast(1.05);
    }

    /* Ice-blue accent border */
    .about-image-wrap::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      right: 12px; bottom: 12px;
      border: 1px solid var(--border-ice);
      border-radius: var(--radius-lg);
      pointer-events: none;
      z-index: 0;
    }
    .about-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      background: linear-gradient(to top, rgba(8,8,9,0.5) 0%, transparent 50%);
      pointer-events: none;
    }

    .about-content { }

    .about-bio {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--off-white);
      margin-bottom: 32px;
    }

    .about-bio + .about-bio {
      color: var(--mid-gray);
    }

    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .about-pillar {
      background: var(--steel);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      transition: border-color 0.25s, background 0.25s;
    }
    .about-pillar:hover {
      border-color: var(--border-ice);
      background: var(--steel-light);
    }

    .pillar-icon {
      font-size: 22px;
      margin-bottom: 10px;
      line-height: 1;
    }

    .pillar-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 6px;
    }

    .pillar-desc {
      font-size: 12px;
      font-weight: 300;
      color: var(--mid-gray);
      line-height: 1.6;
    }

    /* ============================================================
       THREE PILLARS BRAND SECTION
    ============================================================ */
    #pillars {
      background: var(--black);
      padding: 100px 0 120px;
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .pillars-eyebrow {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 20px;
    }

    .pillars-headline {
      text-align: center;
      font-family: var(--font-display);
      font-size: clamp(52px, 8vw, 110px);
      letter-spacing: 0.06em;
      line-height: 0.9;
      color: var(--white);
      margin-bottom: 80px;
    }

    .pillars-headline span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.25);
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
    }

    .pillar-col {
      padding: 48px 40px;
      border-right: 1px solid rgba(255,255,255,0.07);
      position: relative;
      transition: background 0.4s;
    }
    .pillar-col:last-child { border-right: none; }
    .pillar-col:hover { background: rgba(255,255,255,0.02); }

    .pillar-number {
      font-family: var(--font-display);
      font-size: 13px;
      letter-spacing: 0.2em;
      color: var(--ice);
      margin-bottom: 28px;
      display: block;
    }

    .pillar-word {
      font-family: var(--font-display);
      font-size: clamp(44px, 5vw, 72px);
      letter-spacing: 0.04em;
      line-height: 0.9;
      color: var(--white);
      margin-bottom: 20px;
    }

    .pillar-divider {
      width: 32px;
      height: 1px;
      background: var(--ice);
      margin-bottom: 20px;
      transition: width 0.4s var(--ease-out);
    }
    .pillar-col:hover .pillar-divider { width: 56px; }

    .pillar-desc {
      font-family: var(--font-body);
      font-size: 13px;
      line-height: 1.7;
      color: var(--mid-gray);
      max-width: 240px;
    }

    .pillar-img {
      width: 100%;
      height: 220px;
      overflow: hidden;
      margin-bottom: 36px;
      position: relative;
    }

    .pillar-img img,
    .pillar-img video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.75) saturate(0.85);
      transition: transform 0.7s var(--ease-out), filter 0.4s;
    }

    .pillar-col:hover .pillar-img img,
    .pillar-col:hover .pillar-img video {
      transform: scale(1.05);
      filter: brightness(0.65) saturate(0.9);
    }

    .pillar-img-tint {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .pillars-statement {
      text-align: center;
      margin-top: 72px;
      padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .pillars-statement p {
      font-family: var(--font-heading);
      font-size: clamp(15px, 2vw, 19px);
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.45);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .pillars-statement strong {
      color: var(--white);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .pillars-grid {
        grid-template-columns: 1fr;
      }
      .pillar-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 40px 24px;
      }
      .pillar-col:last-child { border-bottom: none; }
      .pillars-headline { margin-bottom: 48px; }
    }

    /* ============================================================
       RESULTS / JOURNEY SECTION
    ============================================================ */
    #journey {
      background: var(--black);
      overflow: hidden;
      position: relative;
    }

    /* Faded skeleton photo backdrop */
    #journey::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('images/hero.jpg');
      background-size: cover;
      background-position: center 30%;
      filter: brightness(0.12) saturate(0.5);
      z-index: 0;
    }

    /* Ice-blue glow on top of photo */
    #journey::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(125,211,252,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(14,165,233,0.05) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    #journey > * { position: relative; z-index: 2; }

    /* Timeline layout */
    .timeline {
      position: relative;
      padding-left: 32px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 8px; bottom: 8px;
      width: 1px;
      background: linear-gradient(to bottom, var(--ice), var(--dim-gray) 70%, transparent);
    }

    .timeline-item {
      position: relative;
      padding-bottom: 48px;
    }
    .timeline-item:last-child { padding-bottom: 0; }

    /* Dot */
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -36px; top: 6px;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--ice);
      box-shadow: 0 0 10px rgba(125,211,252,0.5);
    }

    .timeline-year {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 8px;
    }

    .timeline-title {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 8px;
    }

    .timeline-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 480px;
    }

    /* Results cards grid */
    .journey-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    /* Stat cards */
    .results-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }

    .result-card {
      background: var(--steel);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
    }
    .result-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--ice), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .result-card:hover {
      border-color: var(--border-ice);
      transform: translateY(-3px);
    }
    .result-card:hover::before { opacity: 1; }

    .result-card-num {
      font-family: var(--font-display);
      font-size: 52px;
      letter-spacing: 0.02em;
      color: var(--ice);
      line-height: 1;
      margin-bottom: 6px;
    }

    .result-card-label {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }

    .future-goals {
      background: var(--steel);
      border: 1px solid var(--border-ice);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-top: 0;
    }

    .future-goals h4 {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 16px;
    }

    .goal-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }
    .goal-item:last-child { margin-bottom: 0; }

    .goal-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--ice);
      margin-top: 8px;
      flex-shrink: 0;
    }

    .goal-text {
      font-size: 13px;
      font-weight: 300;
      color: var(--off-white);
      line-height: 1.6;
    }

    /* ============================================================
       BEYOND SECTION — mountains & aviation split panels
    ============================================================ */
    #beyond {
      background: var(--black);
      padding: var(--section-pad) 0;
    }

    .beyond-header {
      text-align: center;
      margin-bottom: 72px;
    }

    /* Two full-height panels side by side */
    .beyond-panels {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      max-width: 100%;
    }

    .beyond-panel {
      position: relative;
      height: 620px;
      overflow: hidden;
      cursor: default;
    }

    .beyond-panel-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.9s var(--ease-out);
      filter: brightness(0.55) saturate(0.85);
    }

    .beyond-panel:hover .beyond-panel-img {
      transform: scale(1.04);
      filter: brightness(0.45) saturate(0.8);
    }

    /* Gradient up from bottom */
    .beyond-panel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(8,8,9,0.92) 0%,
        rgba(8,8,9,0.3) 50%,
        transparent 100%);
      z-index: 1;
    }

    /* Ice-blue top accent line */
    .beyond-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--ice);
      opacity: 0;
      z-index: 3;
      transition: opacity 0.4s;
    }
    .beyond-panel:hover::before { opacity: 1; }

    .beyond-panel-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 40px;
    }

    .beyond-panel-label {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 12px;
    }

    .beyond-panel-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 56px);
      letter-spacing: 0.03em;
      line-height: 0.95;
      color: var(--white);
      margin-bottom: 16px;
    }

    .beyond-panel-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--off-white);
      max-width: 400px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s, transform 0.4s;
    }
    .beyond-panel:hover .beyond-panel-desc {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 768px) {
      .beyond-panels { grid-template-columns: 1fr; }
      .beyond-panel { height: 480px; }
      .beyond-panel-desc { opacity: 1; transform: none; }
    }

    /* ============================================================
       MEDIA SECTION
    ============================================================ */
    #media {
      background: var(--dark-mid);
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 12px;
    }

    /* Feature large item */
    .media-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      cursor: pointer;
      background: var(--steel);
    }

    .media-item:nth-child(1) {
      grid-column: 1 / 4;
      aspect-ratio: 16/7;
    }
    .media-item:nth-child(2) { aspect-ratio: 4/3; }
    .media-item:nth-child(3) { aspect-ratio: 4/3; }
    .media-item:nth-child(4) { aspect-ratio: 4/3; }

    .media-item img,
    .media-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-out), filter 0.4s;
      filter: brightness(0.82) contrast(1.05) saturate(0.9);
    }
    .media-item iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .media-item:hover img,
    .media-item:hover video {
      transform: scale(1.05);
      filter: brightness(0.7) contrast(1.1) saturate(0.8);
    }

    /* Hover caption */
    .media-caption {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      background: linear-gradient(to top, rgba(8,8,9,0.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.35s;
    }
    .media-item:hover .media-caption { opacity: 1; }

    .media-caption-label {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 4px;
    }
    .media-caption-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
    }

    /* ============================================================
       SPONSORS SECTION
    ============================================================ */
    #sponsors {
      background: var(--dark);
    }

    .sponsors-intro {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid-gray);
      max-width: 460px;
      line-height: 1.75;
      margin-bottom: 56px;
    }

    .sponsors-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-bottom: 40px;
    }

    .sponsor-slot {
      aspect-ratio: 2/1;
      border: 1px dashed var(--border);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.25s, background 0.25s;
      cursor: default;
    }
    .sponsor-slot:hover {
      border-color: rgba(125,211,252,0.3);
      background: var(--ice-glow);
    }

    .sponsor-slot-label {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim-gray);
    }

    .sponsors-cta {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid-gray);
    }

    .sponsors-cta a {
      color: var(--ice);
      border-bottom: 1px solid rgba(125,211,252,0.3);
      padding-bottom: 1px;
      transition: border-color 0.2s, color 0.2s;
    }
    .sponsors-cta a:hover {
      color: var(--ice-bright);
      border-color: var(--ice-bright);
    }

    /* ============================================================
       FLYING REEL — mixed portrait/landscape photo grid
    ============================================================ */
    /* ── Side-by-side Aviation + Wild galleries ── */
    .galleries-outer {
      margin-top: 72px;
      padding-top: 56px;
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .gallery-col-header {
      margin-bottom: 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: auto;
      gap: 6px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--steel);
      height: 220px;
    }

    .gallery-item.landscape {
      grid-column: span 2;
      height: 280px;
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out), filter 0.3s;
      filter: brightness(0.85) saturate(0.9);
    }
    .gallery-item:hover img,
    .gallery-item:hover video {
      transform: scale(1.05);
      filter: brightness(0.7) saturate(0.85);
    }

    .gallery-caption {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 14px;
      background: linear-gradient(to top, rgba(8,8,9,0.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-caption { opacity: 1; }

    .gallery-caption-label {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 3px;
    }
    .gallery-caption-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
    }

    @media (max-width: 900px) {
      .galleries-outer {
        grid-template-columns: 1fr;
        gap: 56px;
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      .gallery-item,
      .gallery-item.landscape {
        grid-column: span 1;
        height: 220px;
      }
    }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    /* Background atmosphere */
    #contact::before {
      content: '';
      position: absolute;
      bottom: -200px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse at center, rgba(14,165,233,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }

    .contact-heading {
      font-family: var(--font-display);
      font-size: clamp(44px, 8vw, 100px);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 32px;
    }

    .contact-heading em {
      font-style: normal;
      color: var(--ice);
    }

    .contact-body {
      font-size: 15px;
      font-weight: 300;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 48px;
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 60px;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--off-white);
      transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
    }
    .contact-link:hover {
      border-color: var(--ice);
      background: var(--ice-glow);
      color: var(--ice);
      transform: translateY(-2px);
    }

    .contact-link svg {
      width: 16px; height: 16px;
      flex-shrink: 0;
    }

    .contact-link.primary {
      background: var(--ice-deep);
      border-color: var(--ice-deep);
      color: var(--white);
    }
    .contact-link.primary:hover {
      background: var(--ice-bright);
      border-color: var(--ice-bright);
      color: var(--black);
    }

    /* Contact form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 520px;
      margin-bottom: 48px;
    }
    .contact-form input,
    .contact-form textarea {
      background: var(--steel);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      box-sizing: border-box;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: var(--dim-gray);
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--ice);
    }
    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form-row {
      display: flex;
      gap: 16px;
    }
    .contact-form-row input { flex: 1; }
    .contact-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: var(--ice-deep);
      border: 1px solid var(--ice-deep);
      border-radius: var(--radius);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
      align-self: flex-start;
    }
    .contact-submit:hover {
      background: var(--ice-bright);
      border-color: var(--ice-bright);
      color: var(--black);
      transform: translateY(-2px);
    }
    .contact-form-success {
      display: none;
      color: var(--ice);
      font-size: 14px;
      font-weight: 300;
      padding: 14px 0;
    }

    /* Social row */
    .social-row {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .social-row-label {
      font-family: var(--font-heading);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim-gray);
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 38px;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--mid-gray);
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    }
    .social-icon:hover {
      border-color: var(--ice);
      color: var(--ice);
      background: var(--ice-glow);
      transform: scale(1.1);
    }
    .social-icon svg { width: 15px; height: 15px; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 32px 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: 0.08em;
      color: var(--dim-gray);
    }
    .footer-logo span { color: var(--ice); }

    .footer-copy {
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--dim-gray);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-family: var(--font-heading);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dim-gray);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--ice); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image-wrap { max-width: 480px; margin: 0 auto; }
      .about-image { aspect-ratio: 4/3; }
      .journey-grid { grid-template-columns: 1fr; gap: 56px; }
      .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      :root { --section-pad: 80px; }
      .container { padding: 0 24px; }

      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      .hero-stats { display: none; }

      .media-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .media-item:nth-child(1) {
        grid-column: 1 / 3;
        aspect-ratio: 16/9;
      }
      .media-item:nth-child(2),
      .media-item:nth-child(3),
      .media-item:nth-child(4) { aspect-ratio: 1/1; }

      .sponsors-grid { grid-template-columns: repeat(2, 1fr); }

      .about-pillars { grid-template-columns: 1fr; }

      .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
      .footer-links { justify-content: center; }

      .nav-inner { padding: 0 24px; }
    }

    @media (max-width: 480px) {
      .results-cards { grid-template-columns: 1fr 1fr; }
      .contact-links { flex-direction: column; }
      .contact-link { width: 100%; justify-content: center; }
    }

