/* =========================================================
   Vive Tennis — Brand stylesheet
   Palette derived from the official CMF guide:
     Pantone PMS 446 C  →  dark warm grey
     Pantone Neutral Black C →  near-black body
     Pantone PMS 382 C  →  signature tennis yellow-green
   ========================================================= */

:root {
  --bg: #1a1b1d;              /* near-black shell */
  --bg-2: #222223;            /* PMS Neutral Black C — back cover */
  --bg-3: #2b2c2e;
  --surface: #28292b;
  --grey: #4f5155;            /* PMS 446 C — front cover */
  --grey-2: #62656a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4ef;
  --text-dim: #c0c0b9;
  --text-mute: #8b8d8f;
  --accent: #c4d600;          /* PMS 382 C — signature wheel green */
  --accent-2: #a8b800;
  --accent-soft: rgba(196, 214, 0, 0.14);
  --accent-on: #1a1b1d;       /* foreground when over accent fill */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-1: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.45);
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(196, 214, 0, 0.15);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0 0 1.2rem;
}

.muted { color: var(--text-mute); }

.accent { color: var(--accent); font-style: italic; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #1a1b1d;
  box-shadow: 0 8px 30px rgba(196, 214, 0, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); background: #d8ee1c; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem var(--gutter);
  background: rgba(26, 27, 29, 0.72);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  width: 32px; height: 32px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: transparent;
}
.brand-name { color: var(--text); }
.brand-name-thin { font-weight: 300; color: var(--text-dim); }

.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 0.65rem 1.1rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px; background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -10% -5% 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(196, 214, 0, 0.12), transparent 60%),
    radial-gradient(50% 50% at 10% 0%, rgba(120, 200, 100, 0.07), transparent 70%),
    linear-gradient(180deg, #1a1b1d 0%, #1a1b1d 60%);
  z-index: -2;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 120px);
}

.hero-title {
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #ffffff 30%, #d7d7d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .accent { background: none; -webkit-text-fill-color: var(--accent); color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-stats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stats span {
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-robot {
  position: relative;
  max-width: 105%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  animation: float 7s ease-in-out infinite;
  z-index: 2;
}
.hero-orbit {
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 65%, rgba(196, 214, 0, 0.18), transparent 55%),
    conic-gradient(from 220deg, rgba(255,255,255,0.06), transparent 60%);
  border: 1px dashed rgba(255,255,255,0.07);
  z-index: 1;
  animation: spin 40s linear infinite;
}

.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(20, 20, 24, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-1);
  z-index: 3;
}
.tag-1 { top: 12%; right: 6%; animation: float 5s ease-in-out infinite; }
.tag-2 { bottom: 16%; left: 0%; animation: float 6s ease-in-out infinite reverse; }
.tag-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6fd3ff;
  box-shadow: 0 0 0 4px rgba(111, 211, 255, 0.18);
}
.tag-pulse.green { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #1f2022, #26272a);
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding: 1.05rem 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}
.marquee-track span:nth-child(odd) { color: var(--text); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section-head { margin-bottom: 3rem; max-width: 64ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.section-head.between {
  max-width: none;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head.between > div { max-width: 64ch; }

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(196, 214, 0, 0.35);
  transition: border-color .2s ease, opacity .2s ease;
}
.inline-link:hover { border-bottom-color: var(--accent); opacity: 0.9; }

/* PROBLEM */
.problem { background: #1f2022; }
.compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: border-color .25s ease, transform .25s ease;
}
.compare-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.compare-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.compare-card p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }
.compare-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1rem;
}
.compare-card.highlight {
  background: linear-gradient(180deg, #1a1a20, #131316);
  border-color: rgba(196, 214, 0, 0.4);
  position: relative;
}
.compare-card.highlight::after {
  content: 'Vive solves this';
  position: absolute;
  top: -10px; right: 14px;
  background: var(--accent);
  color: #1f2022;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* PRODUCT */
.product { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.feature-list {
  list-style: none;
  padding: 0; margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease;
}
.feature-list li:hover { border-color: var(--line-strong); }
.feature-icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-list h4 { margin: 0 0 0.25rem; font-size: 1.02rem; }
.feature-list p { margin: 0; color: var(--text-dim); font-size: 0.93rem; }

.price-card {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(140deg, rgba(196, 214, 0, 0.10), rgba(196, 214, 0, 0.02));
  border: 1px solid rgba(196, 214, 0, 0.30);
  border-radius: var(--radius);
}
.price-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.price-row { display: flex; align-items: baseline; gap: 0.4rem; }
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.price-cur { color: var(--text-mute); font-size: 0.95rem; }
.price-note { display: block; color: var(--text-dim); font-size: 0.85rem; margin-top: 0.25rem; }

.product-visual { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 90px; }
.product-card {
  position: relative;
  background: linear-gradient(180deg, #1c1c20, #131316);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(196, 214, 0, 0.12), transparent 60%),
    radial-gradient(60% 60% at 30% 80%, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}
.product-card img { position: relative; }
.product-card.alt { background: linear-gradient(180deg, #18181c, #0f0f12); }

.callout {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  display: flex; gap: 0.85rem;
  background: rgba(26, 27, 29, 0.78);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  max-width: 70%;
}
.callout.right { left: auto; right: 1.4rem; }
.callout-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}
.callout h5 { margin: 0; font-size: 0.92rem; }
.callout p { margin: 0; color: var(--text-mute); font-size: 0.82rem; }

/* HOW */
.how { background: #1a1b1d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 1.8rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.steps li:hover { transform: translateY(-4px); border-color: rgba(196, 214, 0, 0.4); }
.step-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.steps h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.steps p { color: var(--text-dim); margin: 0; font-size: 0.93rem; }

/* MARKET */
.market { background: var(--bg); }
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.stat {
  padding: 2rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease;
}
.stat:hover { transform: translateY(-4px); }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.stat-label { color: var(--text-mute); font-size: 0.9rem; }
.stat.highlight {
  background: linear-gradient(140deg, rgba(196, 214, 0, 0.10), rgba(196, 214, 0, 0.02));
  border-color: rgba(196, 214, 0, 0.30);
}
.stat.highlight .stat-num { color: var(--accent); }

/* TEAM */
.team { background: #1f2022; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.member {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.member:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.member-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2b2d, #1a1b1d);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform .5s ease, filter .3s ease;
}
.member:hover .member-photo img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}
.member-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 27, 29, 0.55) 100%);
  pointer-events: none;
}
.member-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.member h4 { margin: 0; font-size: 1.1rem; }
.member .role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0.2rem 0 0.8rem;
}
.member .bio { color: var(--text-dim); font-size: 0.9rem; margin: 0; }

/* TRACTION */
.traction { background: var(--bg); }
.traction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 3rem;
}
.traction-card {
  padding: 1.8rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.traction-card h4 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.04em;
}
.traction-card ul { list-style: none; padding: 0; margin: 0; }
.traction-card li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.traction-card li:last-child { border-bottom: 0; }
.traction-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.roadmap h3 { margin-bottom: 1.4rem; }
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; right: 16px; top: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--line-strong), var(--line));
}
.t-step {
  position: relative;
  padding: 2.2rem 1rem 0 0;
  display: flex; flex-direction: column;
  gap: 0.3rem;
}
.t-step::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-strong);
}
.t-step.done::before {
  background: var(--accent);
  border-color: var(--accent);
}
.t-step.done::after {
  content: '';
  position: absolute;
  left: 3px; top: 15px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent-on);
  border-bottom: 2px solid var(--accent-on);
  transform: rotate(-45deg);
}
.t-step.active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
  animation: t-pulse 2.4s ease-in-out infinite;
}
@keyframes t-pulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--accent-soft); }
  50% { box-shadow: 0 0 0 9px rgba(196, 214, 0, 0.08); }
}
.t-when {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.t-step.done .t-when { color: var(--text); }
.t-step.active .t-when { color: var(--accent); }
.t-what { color: var(--text-dim); font-size: 0.88rem; padding-right: 0.6rem; }
.t-step.done .t-what,
.t-step.active .t-what { color: var(--text); }

/* VISA */
.visa { background: #1f2022; }
.visa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.visa-points {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 0.7rem;
}
.visa-points li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-dim);
}
.visa-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 10px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  border-bottom-left-radius: 4px;
}
.visa-points strong { color: var(--text); font-weight: 600; }

.visa-card {
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, #18181d, #26272a);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.visa-card h4 {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.visa-card p { color: var(--text-dim); margin-bottom: 1.4rem; }

/* RESERVE */
.reserve { background: var(--bg); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(36px, 5vw, 72px);
  background: linear-gradient(160deg, rgba(196, 214, 0, 0.07), rgba(196, 214, 0, 0.0)),
              linear-gradient(180deg, #222223, #1a1b1d);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}
.reserve-form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input, .field select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-note { color: var(--text-mute); font-size: 0.85rem; margin: 0.6rem 0 0; }
.form-note.success { color: var(--accent); }

/* CONTACT */
.contact { background: #1a1b1d; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-value { font-size: 1.1rem; font-weight: 500; color: var(--text); }

/* ---------- Careers ---------- */
.careers { background: #1f2022; }
.culture-row {
  list-style: none; padding: 0; margin: 0 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.culture-row li {
  display: flex; gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.culture-row h5 { margin: 0 0 0.25rem; color: var(--text); }
.culture-row p { margin: 0; color: var(--text-mute); font-size: 0.94rem; }
.culture-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.jobs-head {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.job-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem 1.7rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
}
.job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 214, 0, 0.45);
  background: linear-gradient(160deg, rgba(196, 214, 0, 0.06), var(--bg-2) 60%);
}
.job-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.job-team { color: var(--accent); }
.job-loc { color: var(--text-mute); }
.job-card h4 { margin: 0; color: var(--text); }
.job-card p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
.job-cta {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}

.careers-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.careers-foot p { margin: 0; color: var(--text-dim); }

/* ---------- Blog ---------- */
.blog { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.post:hover { transform: translateY(-3px); border-color: rgba(196, 214, 0, 0.35); }
.post-featured {
  grid-column: span 3;
  flex-direction: row;
}
.post-featured .post-media {
  flex: 0 0 52%;
  aspect-ratio: 16/10;
}
.post-featured .post-body {
  flex: 1;
  padding: 2rem 2.2rem;
  justify-content: center;
}
.post-featured h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.post-media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.post-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.post:hover .post-media img { transform: scale(1.04); }
.post-pill {
  position: absolute;
  top: 14px; left: 14px;
  padding: 0.32rem 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--accent);
  color: #1a1b1d;
  border-radius: 999px;
}
.post-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.post-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.post-body h3 { font-size: 1.2rem; line-height: 1.25; margin: 0; }
.post-body h3 a { color: var(--text); }
.post-body h3 a:hover { color: var(--accent); }
.post-body p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
.post-author {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: auto;
  padding-top: 0.4rem;
}

/* ---------- FAQ ---------- */
.faq { background: #1f2022; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-list details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  transition: border-color .2s ease, background .2s ease;
}
.faq-list details[open] {
  border-color: rgba(196, 214, 0, 0.35);
  background: linear-gradient(160deg, rgba(196, 214, 0, 0.05), var(--bg-2) 70%);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--text-dim);
  font-size: 0.97rem;
  max-width: 70ch;
}

/* ---------- Footer ---------- */
.footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
  color: var(--text-mute);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
}
.footer-brand { grid-column: 1; }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-brand .brand-name { font-size: 1.2rem; }
.footer-tag { margin-top: 1rem; font-size: 0.9rem; color: var(--text-mute); }
.footer h5 {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0.4rem 0 1rem;
}
.footer a {
  display: block;
  color: var(--text-mute);
  padding: 0.3rem 0;
  font-size: 0.92rem;
  transition: color .2s ease;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-mute);
}

/* ---------- Reveal animations ----------
   Only applied when JS has marked the document. Without JS (and before JS
   runs) content is fully visible — this keeps the site usable in any
   non-JS context including search-engine renders and PDFs. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .hero-robot, .hero-orbit, .marquee-track, .tag-1, .tag-2 { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .product-grid,
  .market-grid,
  .reserve-grid,
  .visa-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .product-visual { position: static; }
  .compare,
  .steps,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .traction-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 1.5rem; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .culture-row { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-column: span 2; flex-direction: column; }
  .post-featured .post-media { flex: none; }
  .post-featured .post-body { padding: 1.4rem 1.5rem 1.5rem; }
  .section-head.between { align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem var(--gutter) 1.4rem;
    background: rgba(26, 27, 29, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .nav.menu-open .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open .nav-cta {
    display: inline-flex;
    margin-top: 0.4rem;
    align-self: flex-start;
  }
  .compare,
  .steps,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .price-card { flex-direction: column; align-items: stretch; text-align: left; }
  .price-card .btn { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-featured { grid-column: span 1; }
  .careers-foot { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero { padding-top: 24px; }
  .hero-stats { gap: 1.4rem; }
  .reserve-grid { padding: 1.8rem; }
}
