/* ============================================================
   NEVE — Nervous System Intelligence (Light & Airy)
  .
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:          #ffffff;   /* Clean white page */
  --bg-2:        #f8f9fa;   /* Very light gray for alternate sections */
  --panel:       #ffffff;   /* White card surfaces */
  --panel-2:     #f1f3f5;   /* Soft hover state */
  --line:        #e9ecef;   /* Soft borders */
  --line-soft:   #f1f3f5;   /* Barely-there borders */
  --ink:         #111111;   /* Sharp dark text */
  --white:       #ffffff;   
  --mute:        #6c757d;   /* Airy secondary text */
  --mute-dim:    #adb5bd;   /* Lighter gray */
  --lime:        #111111;   
  --lime-deep:   #333333;   
  --lime-ink:    #ffffff;   /* White text on black fills */
  --blue:        #111111;
  --blue-glow:   #111111;

  --display: 'Sora', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --maxw: 1440px; /* Wider, modern grid */
  --r:    0px;    /* Sharp, hardware-like edges */
  --r-sm: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


.haze, .grain { display: none; }
main, header, footer { position: relative; z-index: 2; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ============================================================
   NAV & LOGO
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85); /* Light blur */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo {
  display: flex; align-items: center;
  max-width: 140px; height: auto; text-decoration: none;
}
.logo img {
  width: 100%; height: auto; display: block;
  /* Fix for logo blurriness */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.brand {
  font-family: var(--display); font-weight: 600; letter-spacing: 0.05em;
  font-size: 1.25rem; color: var(--ink); text-decoration: none;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.brand .dot {
  width: 8px; height: 8px; border-radius: 0;
  background: var(--ink);
  box-shadow: none;
  flex: none;
}
.brand small { display: none; } 
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--mute); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--bg) !important; font-weight: 600;
  padding: 12px 24px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
  transition: all 0.3s var(--ease); font-size: 0.85rem;
}
.nav-cta:hover { background: #333333; transform: translateY(-1px); }
.burger { display: none; background: none; border: 0; color: var(--ink); font-size: 1.5rem; cursor: pointer; }

.hp-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--body); font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 18px 36px; border-radius: 100px;
  text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s var(--ease); border: 1px solid transparent; justify-content: center;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #333333; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }
.btn .arr { font-size: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   TYPOGRAPHY & GLOBALS
   ============================================================ */
h1, h2, h3, h4 { text-transform: uppercase; }

h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; letter-spacing: -0.01em;
}
h2 em { font-style: normal; color: var(--mute-dim); }
.lead { color: var(--mute); max-width: 640px; margin-top: 24px; font-size: 1.1rem; }

.eyebrow {
  font-family: var(--body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; color: white; text-transform: uppercase;
  margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: white; display: inline-block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 120px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }

.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.02em;
}
.hero .sub { margin-top: 30px; max-width: 540px; font-size: 1.15rem; color: var(--mute); }
.hero .ninety {
  margin-top: 24px; font-family: var(--display); font-weight: 500;
  color: var(--ink); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero .ninety b { color: var(--ink); font-weight: 600; }
.cta-row { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.hero-visual svg { width: 100%; height: 100%; opacity: 1; filter: none; } 

.orb {
  position: absolute; width: 56%; height: 56%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  border: 2px solid var(--line);
  background: var(--bg);
  box-shadow: none;
  animation: none;
}
.orb::after { display: none; }
.orb .num { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1; color: var(--ink); }
.orb .lbl { display:block; font-family: var(--body); font-size: 0.7rem; font-weight:600; letter-spacing: 0.26em; color: var(--mute); text-transform: uppercase; margin-top: 12px; text-align:center; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 40px 0; background: var(--bg-2); }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust .label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.trust .wear { display: flex; gap: 40px; flex-wrap: wrap; }
.trust .wear span { font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--mute-dim); text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s var(--ease); }
.trust .wear span:hover { color: var(--ink); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 120px 0; border-bottom: 1px solid var(--line-soft); }
.kicker {
  font-family: var(--display); font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
  color: var(--mute); letter-spacing: 0.1em; margin-right: 6px;
}
.section-head { max-width: 820px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

/* ---- big statement band ---- */
.band { border-top: 1px solid #333; border-bottom: 1px solid #333; text-align: center; padding: 140px 0; background: #111111; color: #ffffff; }
.band .big {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em;
  max-width: 1000px; margin: 0 auto; color: #ffffff;
}
.band .big span { color: #6c757d; }

/* ---- How it works: numbered steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.step {
  background: var(--panel);
  border: none; border-radius: var(--r-sm);
  padding: 40px 32px; transition: background 0.3s var(--ease); position: relative; overflow: hidden;
  box-shadow: none;
}
.step:hover { background: var(--panel-2); transform: none; box-shadow: none; }
.step .n { font-family: var(--display); font-weight: 600; font-size: 2.5rem; color: var(--line); line-height: 1; }
.step:hover .n { color: var(--ink); }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin: 24px 0 12px; text-transform: uppercase; }
.step p { color: var(--mute); font-size: 0.95rem; }

/* ---- 3-up cards ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--panel);
  border: none; border-radius: var(--r); padding: 48px 40px;
  transition: background 0.3s var(--ease); box-shadow: none;
}
.card:hover { background: var(--panel-2); transform: none; }
.card .ic { width: 48px; height: 48px; border-radius: 0; background: transparent; border: 2px solid var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom: 24px; }
.card .ic svg { width: 24px; height: 24px; stroke: var(--ink); }
.card .num { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--mute); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; margin-bottom: 16px; letter-spacing: -0.01em; text-transform: uppercase; }
.card p { color: var(--mute); font-size: 1rem; }

/* ---- Sport hub tiles ---- */
.sports { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.sport-tile {
  position: relative; border: none; border-radius: var(--r);
  padding: 40px; min-height: 360px; display: flex; flex-direction: column;
  justify-content: flex-end; text-decoration: none; color: var(--ink);
  overflow: hidden; transition: background 0.3s var(--ease);
  background: var(--panel);
  box-shadow: none;
}
.sport-tile .scene { position: absolute; inset: 0; z-index: 0; opacity: 1; filter: none; }
.sport-tile .scene svg { width: 100%; height: 100%; object-fit: cover; }
.sport-tile::after {
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.9) 70%, #ffffff 100%);
}
.sport-tile > * { position: relative; z-index: 2; }
.sport-tile:hover { transform: none; background: var(--panel-2); }
.sport-tile .tag { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-bottom: auto; font-weight: 600; }
.sport-tile h3 { font-family: var(--display); font-weight: 600; font-size: 2rem; letter-spacing:-0.01em; text-transform: uppercase; }
.sport-tile p { color: var(--mute); font-size: 1rem; margin-top: 12px; }
.sport-tile .arrow { margin-top: 24px; color: var(--ink); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display:inline-flex; gap:8px; align-items:center; transition: gap 0.3s var(--ease); }
.sport-tile:hover .arrow { gap: 16px; }

/* ---- Comparison table ---- */
.cmp-wrap { margin-top: 60px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--panel); box-shadow: none; }
.cmp { width: 100%; border-collapse: collapse; font-size: 1rem; }
.cmp th, .cmp td { text-align: left; padding: 24px 32px; border-bottom: 1px solid var(--line); }
.cmp thead th { color: var(--mute); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.75rem; background: var(--bg-2); }
.cmp tbody td:first-child { color: var(--ink); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.cmp tr:last-child td { border-bottom: 0; }
.cmp .tick { color: var(--ink); font-weight: 600; }
.cmp .dash { color: var(--mute-dim); } /* softened dash */
.cmp tr.neve { background: var(--panel-2); }
.cmp tr.neve td:first-child { color: var(--ink); font-weight: 600; }

/* ---- Stat strip (counters) ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.stat { padding: 40px 32px; border: none; border-radius: var(--r-sm); background: var(--panel); box-shadow: none; }
.stat .v { font-family: var(--display); font-size: 2.8rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.stat .v b { color: var(--ink); font-weight: 600; }
.stat .l { color: var(--mute); font-size: 0.9rem; margin-top: 16px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ---- Split feature rows ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.split + .split { margin-top: 100px; }
.split h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem,3vw,2.2rem); letter-spacing: -0.01em; margin-bottom: 24px; text-transform: uppercase; }
.split p { color: var(--mute); font-size: 1.05rem; }
.split ul { list-style: none; margin-top: 32px; }
.split li { color: var(--ink); padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; align-items:flex-start; font-size: 1.05rem; }
.split li::before { content: ''; width: 8px; height: 8px; background: var(--ink); border-radius: 0; margin-top: 8px; flex:none; }
.visual {
  border: 1px solid var(--line); border-radius: var(--r); min-height: 440px;
  background: var(--panel);
  display: flex; align-items: center; justify-content: center; position: relative; overflow:hidden;
  box-shadow: none;
}
.visual .ring {
  width: 240px; height: 240px; border-radius: 50%;
  border: 4px solid var(--line);
  display: flex; align-items: center; justify-content: center; position: relative; z-index:2;
  background: transparent;
  box-shadow: none;
}
.visual .ring::after { content:''; position:absolute; inset:-24px; border-radius:50%; border:1px solid var(--line-soft); }
.visual .score { font-family: var(--display); font-weight: 600; font-size: 3.5rem; text-align:center; color: var(--ink); }
.visual .score small { display:block; font-family: var(--body); font-size: 0.75rem; font-weight:600; letter-spacing: 0.2em; color: var(--mute); text-transform: uppercase; margin-top: 12px; }
.visual .wave { display: none; }

/* ---- Testimonial ---- */
.quote-block { border-top: 1px solid var(--line); padding-top: 100px; }
.quote {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3; letter-spacing: -0.01em; max-width: 1000px; color: var(--ink); text-transform: uppercase;
}
.quote span { color: var(--mute); }
.quote-by { margin-top: 40px; display: flex; align-items: center; gap: 20px; }
.quote-by .av { width: 60px; height: 60px; border-radius: 0; background: var(--line); flex:none; filter: none; }
.quote-by .who { font-family: var(--display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; }
.quote-by .role { color: var(--mute); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- CTA block ---- */
.cta-block {
  margin: 0 auto; max-width: var(--maxw); border-radius: var(--r);
  text-align: center; padding: 120px 40px;
  border: 1px solid #333;
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}
.cta-block h2 { margin: 0 auto; color: #ffffff; }
.cta-block .lead { margin: 24px auto 40px; color: #a0a0a0; }
.cta-block .btn-primary { background: #ffffff; color: #111111; }
.cta-block .btn-primary:hover { background: #e0e0e0; }
.cta-outer { padding: 0 40px 120px; }

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero { padding: 20px 0 80px; }
.page-hero-grid { display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items:center; }
.page-hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; }
.page-hero h1 em { font-style: normal; color: var(--mute-dim); }
.page-hero .sub { margin-top: 30px; max-width: 600px; color: var(--mute); font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding: 100px 0 40px; margin-top: 40px; background: var(--bg); }
.foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.foot .brand { font-size: 1.5rem; }
.foot .blurb { color: var(--mute); font-size: 0.95rem; margin-top: 24px; max-width: 300px; }
.foot-col h4 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); margin-bottom: 24px; font-weight: 600; }
.foot-col a, .foot-col p { display: block; color: var(--ink); text-decoration: none; font-size: 0.95rem; margin-bottom: 16px; transition: color 0.3s var(--ease); font-weight: 500; }
.foot-col a:hover { color: var(--mute-dim); }
.foot-bottom { margin-top: 80px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--mute-dim); font-size: 0.85rem; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 500px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .sports { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .foot { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--bg-2); padding: 32px 40px; gap: 24px; border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 24px; }
  .steps, .stats { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .cta-block { padding: 80px 24px; }
  .cta-outer { padding: 0 24px 80px; }
}

/* ============================================================
   PILOT ELEMENTS
   ============================================================ */
.nav-pilot {
  background: var(--ink); color: var(--bg) !important; font-weight: 600;
  padding: 12px 24px; border-radius: 100px; margin-left: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s var(--ease); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem;
}
.nav-pilot:hover { background: #333333; transform: translateY(-1px); }
.nav-pilot .arr { transition: transform 0.3s var(--ease); }
.nav-pilot:hover .arr { transform: translateX(3px); }

.btn-pilot { background: var(--ink); color: var(--bg); border: 1px solid var(--ink); }
.btn-pilot:hover { background: transparent; color: var(--ink); }

/* footer pilot band */
.foot-pilot {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding: 48px; margin-bottom: 60px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel);
  box-shadow: none;
}
.foot-pilot p { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.01em; text-transform: uppercase; }
.foot-pilot p span { display: block; font-family: var(--body); font-weight: 500; font-size: 0.95rem; color: var(--mute); margin-top: 8px; letter-spacing: 0; text-transform: none; }

.foot-creds { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); color: var(--mute-dim); font-size: 0.85rem; }

/* floating pilot button */
.pilot-float {
  position: fixed; right: 32px; bottom: 32px; z-index: 60;
  background: var(--ink); color: var(--bg); text-decoration: none;
  font-family: var(--body); font-weight: 600; font-size: 0.9rem;
  padding: 16px 28px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* lightened shadow */
  transition: all 0.3s var(--ease);
}
.pilot-float:hover { background: #333333; transform: translateY(-3px); }
.pilot-float .arr { transition: transform 0.3s var(--ease); }
.pilot-float:hover .arr { transform: translateX(3px); }

@media (max-width: 560px) {
  .foot-pilot { padding: 32px 24px; }
  .pilot-float { right: 20px; bottom: 20px; padding: 14px 20px; font-size: 0.8rem; }
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.member {
  background: var(--panel); border: none; border-radius: var(--r);
  padding: 40px 32px; transition: background 0.3s var(--ease);
  box-shadow: none;
}
.member:hover { background: var(--panel-2); transform: none; }
.member .face {
  width: 80px; height: 80px; border-radius: 0; margin-bottom: 24px;
  background: var(--line); filter: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--mute);
  box-shadow: none;
}
.member h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; text-transform: uppercase; }
.member .role { color: var(--mute); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }
.member .bio { color: var(--mute); font-size: 0.95rem; margin-top: 16px; }
.member .links { margin-top: 24px; display: flex; gap: 16px; }
.member .links a { color: var(--ink); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: color 0.3s var(--ease); text-transform: uppercase; letter-spacing: 0.05em; }
.member .links a:hover { color: var(--mute); }
.team-note {
  margin-top: 60px; padding: 32px 40px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--panel);
  color: var(--mute); font-size: 0.95rem; text-align: center;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist { padding: 120px 0; border-top: 1px solid var(--line); }
.waitlist-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 50%, #ffe4e6 100%); /* Colorful airy gradient */
  border: 2px solid #ffffff; border-radius: 25px; /* Matched the 25px rounded corners */
  padding: 60px 56px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* Soft shadow to lift it up */
}
.waitlist-copy h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; margin-top: 16px; text-transform: uppercase; color: #111827; }
.waitlist-copy h2 em { font-style: normal; color: #6366f1; } /* Indigo pop */
.waitlist-copy .lead { margin-top: 24px; color: #4b5563; }

.waitlist-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.waitlist-input {
  flex: 1; min-width: 240px;
  font-family: var(--body); font-size: 1rem; color: #111827;
  background: #ffffff; border: 1px solid #c7d2fe;
  border-radius: 100px; padding: 18px 28px;
  transition: all 0.3s var(--ease);
}
.waitlist-input::placeholder { color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; font-weight: 500; }
.waitlist-input:focus { outline: none; border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.waitlist-form .btn { white-space: nowrap; background: #6366f1; color: #ffffff; border: none; }
.waitlist-form .btn:hover { background: #4f46e5; transform: translateY(-2px); }
.waitlist-note { margin-top: 16px; color: #6b7280; font-size: 0.85rem; }
.waitlist-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 1000px) {
  .waitlist-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 40px; }
}
@media (max-width: 560px) {
  .waitlist-grid { padding: 40px 24px; }
  .waitlist-input { min-width: 0; }
  .waitlist-form .btn { width: 100%; justify-content: center; }
}


/* ---- announce bar ---- */
.hp-announce {
  background: var(--ink); color: var(--bg); text-align: center;
  font-size: 0.8rem; font-weight: 600; padding: 12px 20px; letter-spacing: 0.05em; text-transform: uppercase;
  position: relative; z-index: 60;
}
.hp-announce a { color: var(--bg); text-decoration: underline; font-weight: 600; margin-left: 12px; }
.hp-announce a:hover { text-decoration: none; }

/* ---- image slots ---- */
.hp-media {
  position: relative; overflow: hidden; border-radius: 25px;
  background: var(--panel); border: none;
}
.hp-media img {width: 100%; height: 100%; object-fit: cover; display: block; filter: none; opacity: 1; border-radius: 25px; }
.hp-media::before {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute); text-align: center; padding: 24px;
  z-index: 0; pointer-events: none;
}
.hp-media img {object-position: top center !important; position: relative; z-index: 1; }
.hp-media img.missing { display: none; }

/* ---- full-bleed hero ---- */
.hp-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  border-radius: 0; overflow: hidden; padding: 0; border-bottom: 1px solid var(--line);
}
.hp-hero .hp-hero-media {
  position: absolute; inset: 0; border-radius: 0; border: 0; background: var(--bg);
}
.hp-hero .hp-hero-media::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-color: rgba(128,128,128,0.25);
  backdrop-filter: blur(0px);
}
.hp-hero-inner { position: relative; z-index: 3; width: 100%; padding: 40px 20px; text-align: left; display: flex; flex-direction: column; align-items: center; }
.hp-hero h1 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.15; letter-spacing: -0.02em; max-width: 900px;
}
.hp-hero h1 em { font-style: normal; color: white; }
.hp-hero .sub { margin-top: 24px; max-width: 650px; font-size: 1.1rem; color: white; font-weight: 500; line-height: 1.6; }
.hp-hero .cta-row { justify-content: center; margin-top: 36px; }

/* ---- mini banner card ---- */
.hp-mini {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; align-items: stretch;
  background: var(--panel); border: none; border-radius: var(--r);
  overflow: hidden; box-shadow: none;
}
.hp-mini .hp-media { border: 0; border-radius: 0; min-height: 300px; border-right: none; }
.hp-mini-copy { padding: 60px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.hp-mini-copy h3 { font-family: var(--display); font-weight: 600; font-size: 1.8rem; letter-spacing: -0.01em; text-transform: uppercase; }
.hp-mini-copy p { color: var(--mute); max-width: 500px; font-size: 1.05rem; }
.hp-mini-copy .btn { align-self: flex-start; margin-top: 16px; }

/* ---- proof section ---- */
.hp-proof { position: relative; }
.hp-proof .hp-media { aspect-ratio: 16/8; }
.hp-proof-orb {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: clamp(200px, 25vw, 300px); height: clamp(200px, 25vw, 300px); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 4px solid var(--ink); z-index: 2;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.hp-proof-orb .num { font-family: var(--display); font-weight: 600; font-size: clamp(2.5rem,5vw,4rem); line-height: 1; color: var(--ink); }
.hp-proof-orb .lbl { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-top: 12px; }

/* ---- feature grid ---- */
.hp-features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.hp-feature {
  background: var(--bg); display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink); transition: background 0.3s var(--ease);
}
.hp-feature:hover { background: var(--panel); transform: none; box-shadow: none; }
.hp-feature .hp-media { border: 0; border-radius: 0; aspect-ratio: 16/9; border-bottom: none; }
.hp-feature .txt { padding: 32px; }
.hp-feature h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 12px; }
.hp-feature p { color: var(--mute); font-size: 0.95rem; }
.hp-feature.lg { grid-column: span 3; }
.hp-feature.sm { grid-column: span 2; }

/* ---- sport packages ---- */
.hp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.hp-plan {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 40px; display: flex; flex-direction: column; gap: 24px;
  transition: border-color 0.3s var(--ease); box-shadow: none;
}
.hp-plan:hover { transform: none; border-color: var(--ink); }
.hp-plan .hp-media { aspect-ratio: 16/10; border-radius: 0; }
.hp-plan .name { font-family: var(--display); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.01em; text-transform: uppercase; }
.hp-plan .for { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); }
.hp-plan ul { list-style: none; display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--line); padding-top: 24px; }
.hp-plan li { color: var(--ink); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 12px; padding-left: 0; }
.hp-plan li::before { content: ''; width: 6px; height: 6px; background: var(--ink); border-radius: 0; margin-top: 8px; flex: none; position: static; }
.hp-plan .row { margin-top: auto; padding-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hp-plan .btn { width: 100%; padding: 16px 24px; font-size: 0.9rem; }

/* ---- people mosaic ---- */
.hp-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.hp-person {
  border-radius: 0; overflow: hidden; position: relative;
  background: var(--bg); border: none;
}
.hp-person .hp-media { border: 0; border-radius: 0; aspect-ratio: 4/5; }
.hp-person .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 32px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95));
}
.hp-person .cap .who { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.15rem; text-transform: uppercase; }
.hp-person .cap .role { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); margin-top: 6px; }
.hp-quote-card {
  background: var(--panel); border: none; border-radius: 0;
  padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.hp-quote-card .q { font-family: var(--display); font-weight: 500; font-size: 1.3rem; line-height: 1.4; letter-spacing: -0.01em; text-transform: uppercase; }
.hp-quote-card .q span { color: var(--mute); }
.hp-quote-card .by { font-size: 0.9rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.1em; }
.hp-quote-card .by b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }

/* ---- design pillars ---- */
.hp-pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.hp-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.hp-pillar h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin-bottom: 12px; text-transform: uppercase; }
.hp-pillar h3::before { content: ''; display: block; width: 40px; height: 4px; background: var(--ink); border-radius: 0; margin-bottom: 20px; }
.hp-pillar p { color: var(--mute); font-size: 1rem; }
.hp-pillars-grid .hp-media { aspect-ratio: 4/4.4; border-radius: 0; }

/* ---- split deep-dive ---- */
.hp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hp-split .hp-media { aspect-ratio: 1/1; }
.hp-split ul { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.hp-split li { color: var(--ink); padding-left: 32px; position: relative; font-size: 1.05rem; }
.hp-split li::before { content: ''; position: absolute; left: 0; top: 10px; width: 12px; height: 2px; background: var(--ink); box-shadow: none; border-radius: 0; }
.hp-split .btn { margin-top: 40px; }

/* ---- small print ---- */
.hp-smallprint { border-top: 1px solid var(--line); padding: 40px 0 20px; }
.hp-smallprint p { font-size: 0.8rem; color: var(--mute-dim); max-width: 880px; line-height: 1.7; }

/* ---- responsive tweaks ---- */
@media (max-width: 1024px) {
  .hp-features { grid-template-columns: repeat(2, 1fr); }
  .hp-feature.lg, .hp-feature.sm { grid-column: span 1; }
  .hp-plans { grid-template-columns: 1fr; }
  .hp-mosaic { grid-template-columns: repeat(2, 1fr); }
  .hp-pillars-grid, .hp-split { grid-template-columns: 1fr; gap: 40px; }
  .hp-mini { grid-template-columns: 1fr; }
  .hp-mini .hp-media { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .hp-features, .hp-mosaic { grid-template-columns: 1fr; }
  .hp-pillars { grid-template-columns: 1fr; }
  .hp-hero { min-height: 80vh; }
  .hp-hero h1 { font-size: 2.5rem; }
  .hp-mini-copy { padding: 40px 32px; }
}
/* ============================================================
   2026 UPDATE — GOLD PILOT CTA, GAP, SCENARIO, SCIENCE, NEW PAGES
   ============================================================ */
:root { --gold: #C9A227; --gold-deep: #B08D1E; }

/* Book a Pilot = gold filled, distinct from every other nav item */
.nav-pilot { background: var(--gold); color: #111111 !important; }
.nav-pilot:hover { background: var(--gold-deep); }
.btn-pilot { background: var(--gold); color: #111111; border: 1px solid var(--gold); }
.btn-pilot:hover { background: transparent; color: var(--ink); border-color: var(--gold); }
.pilot-float { background: var(--gold); color: #111111; }
.pilot-float:hover { background: var(--gold-deep); }

/* Logo image inside brand (header + footer, every page) */
.brand img { max-width: 140px; height: auto; display: block; image-rendering: -webkit-optimize-contrast; }
footer .brand img { max-width: 120px; }

/* Hero proof line */
.hp-proofline {
  margin-top: 28px; font-size: 0.85rem; font-weight: 600; color: #ffffff;
  letter-spacing: 0.08em; text-transform: uppercase; text-align: center;
}
.hp-proofline span { color: rgba(255,255,255,0.55); padding: 0 10px; }

/* The Gap — dark problem panel */
.hp-gap { background: #111111; color: #ffffff; padding: 110px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
.hp-gap .kicker { color: #6c757d; }
.hp-gap .stat-line { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.35; letter-spacing: -0.01em; max-width: 980px; text-transform: uppercase; }
.hp-gap p { color: #adb5bd; font-size: 1.1rem; line-height: 1.7; max-width: 860px; margin-top: 28px; }
.hp-gap p b { color: #ffffff; font-weight: 600; }

/* Platform accuracy note */
.hp-acc-note { margin-top: 32px; font-size: 0.9rem; color: var(--mute); }
.hp-acc-note .cite { color: var(--mute-dim); }

/* Scenario — two columns */
.hp-scenario { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.hp-scenario .col { background: var(--panel); padding: 56px 48px; }
.hp-scenario .col h3 { font-family: var(--display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 28px; }
.hp-scenario .col p { color: var(--ink); font-size: 1.05rem; line-height: 1.7; margin-bottom: 18px; }
.hp-scenario .col p.dim { color: var(--mute); }
.hp-scenario .col .score-call { font-family: var(--display); font-weight: 600; font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 18px; }
.hp-scenario .col .score-call em { font-style: normal; color: var(--gold-deep); }
.hp-scenario-foot { text-align: center; margin-top: 32px; font-size: 0.9rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
@media (max-width: 900px) { .hp-scenario { grid-template-columns: 1fr; } .hp-scenario .col { padding: 40px 28px; } }

/* Science accuracy boxes */
.acc-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 12px; }
.acc-box { background: var(--panel); padding: 32px 24px; text-align: center; }
.acc-box .which { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); }
.acc-box .pct { font-family: var(--display); font-weight: 600; font-size: 2.2rem; line-height: 1; margin: 14px 0 10px; color: var(--ink); }
.acc-box .what { font-size: 0.8rem; color: var(--mute-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.acc-box.neve { outline: 2px solid var(--gold); outline-offset: -2px; }
.acc-box.neve .pct { color: var(--gold-deep); }
.acc-cite { font-size: 0.75rem; color: var(--mute-dim); margin-bottom: 28px; }
@media (max-width: 700px) { .acc-boxes { grid-template-columns: 1fr; } }

/* Credential pills */
.cred-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.cred-pill { border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); background: var(--panel); }

/* Quote extras */
.hp-quote-card .sport-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mute); }
.hp-quote-card .q.second { font-size: 1.05rem; color: var(--mute); border-top: 1px solid var(--line); padding-top: 20px; }
.hp-quote-card .pilots-line { font-size: 0.85rem; color: var(--mute); line-height: 1.6; }
.hp-quote-card .pilots-line b { display: block; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }

/* Final CTA extra line */
.cta-block .cta-extra { color: #e0e0e0; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin: -20px auto 40px; font-size: 1.05rem; }

/* Sport-page use-case rows (motorsport / combat) */
.usecases { margin-top: 60px; border: 1px solid var(--line); background: var(--line); display: grid; gap: 1px; }
.usecase { background: var(--panel); padding: 40px 48px; display: grid; grid-template-columns: 56px 280px 1fr; gap: 32px; align-items: start; }
.usecase .ic { width: 48px; height: 48px; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; }
.usecase .ic svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.usecase h3 { font-family: var(--display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; }
.usecase p { color: var(--mute); font-size: 0.98rem; line-height: 1.65; }
@media (max-width: 900px) { .usecase { grid-template-columns: 1fr; gap: 14px; padding: 32px 24px; } }

/* Dark gap band variant for sport pages */
.gap-band { background: #111111; color: #ffffff; padding: 110px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
.gap-band .kicker { color: #6c757d; }
.gap-band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; letter-spacing: -0.01em; max-width: 900px; }
.gap-band p { color: #adb5bd; font-size: 1.08rem; line-height: 1.7; max-width: 840px; margin-top: 26px; }
.gap-band p b { color: #ffffff; font-weight: 600; }

/* Science findings (sport pages) */
.findings { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.finding { border: 1px solid var(--line); background: var(--panel); padding: 44px 40px; }
.finding p { font-family: var(--display); font-weight: 500; font-size: 1.1rem; line-height: 1.55; color: var(--ink); }
.finding .cite { display: block; margin-top: 20px; font-family: var(--body); font-size: 0.78rem; color: var(--mute-dim); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 900px) { .findings { grid-template-columns: 1fr; } }

/* ============================================================
   2026 POLISH — NAV, BUTTONS, SPORT HERO PHOTOS, TRANSITIONS
   ============================================================ */

/* ---- nav links: animated underline + proper active state ---- */
.nav-links a:not(.nav-cta):not(.nav-pilot) {
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.nav-cta):not(.nav-pilot)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):not(.nav-pilot):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* ---- nav buttons: lift, depth, press feedback ---- */
.nav-cta, .nav-pilot {
  will-change: transform;
}
.nav-cta:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.nav-pilot {
  box-shadow: 0 2px 8px rgba(201,162,39,0.25);
}
.nav-pilot:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,162,39,0.4);
}
.nav-cta:active, .nav-pilot:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

/* ---- header: shadow appears once the page scrolls ---- */
header {
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
}

/* ---- buttons: consistent lift + press across the site ---- */
.btn { will-change: transform; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.btn-pilot:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,162,39,0.3);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
  box-shadow: none;
}
.cta-block .btn-primary:hover { box-shadow: 0 12px 28px rgba(255,255,255,0.12); }
.pilot-float:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.18); }

/* ---- keyboard focus, visible and on-brand ---- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible, .nav-cta:focus-visible, .nav-pilot:focus-visible, .pilot-float:focus-visible {
  border-radius: 100px;
}

/* ---- sport page hero: real photo behind the score orb ---- */
.hero-visual { border-radius: 25px; }
.hero-visual .hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 25px;
  transform: scale(1.02);
  transition: transform 6s var(--ease);
}
.hero-visual:hover .hero-photo { transform: scale(1.07); }
.hero-visual .hero-photo.missing { display: none; }
.hero-visual svg { position: relative; z-index: 1; }
.hero-visual.has-photo svg { display: none; }
.hero-visual.has-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,18,23,0) 40%, rgba(17,18,23,0.25) 100%);
  border-radius: 25px;
  pointer-events: none;
}
.hero-visual .orb { z-index: 2; }
.hero-visual.has-photo .orb {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* ---- card hovers: subtle lift + image zoom ---- */
.hp-media img { transition: transform 0.8s var(--ease); }
.hp-feature:hover .hp-media img,
.hp-plan:hover .hp-media img,
.hp-mini:hover .hp-media img,
.hp-person:hover .hp-media img { transform: scale(1.045); }

.hp-plan { transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.hp-plan:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.hp-feature { transition: background 0.45s var(--ease); }
.hp-feature .txt h3 { transition: color 0.3s var(--ease); }

.usecase, .finding, .member, .step, .card { transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.usecase:hover, .finding:hover { background: var(--bg-2); }
.usecase .ic { transition: background 0.35s var(--ease); }
.usecase:hover .ic { background: var(--ink); }
.usecase:hover .ic svg { stroke: #ffffff; }

/* ---- smoother section reveals ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* anchored sections clear the sticky header */
section[id], div[id] { scroll-margin-top: 110px; }

/* ---- mobile nav: cleaner sheet ---- */
@media (max-width: 1000px) {
  .nav-links.open {
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    animation: navDrop 0.35s var(--ease);
  }
  .nav-links.open .nav-cta, .nav-links.open .nav-pilot {
    width: 100%; justify-content: center; margin-left: 0;
  }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

/* ---- respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .nav-cta, .nav-pilot, .pilot-float, .hp-plan, .hp-media img, .hero-visual .hero-photo { transition: none; }
  .btn:hover, .nav-cta:hover, .nav-pilot:hover, .pilot-float:hover, .hp-plan:hover { transform: none; }
}
