/* ==========================================================================
   EVE — Ride the Future · Design System
   Dark, cinematic, electric. Built for speed and Lighthouse-perfect scores.
   ========================================================================== */

:root {
  /* Core palette */
  --bg: #07080c;
  --bg-2: #0c0e15;
  --panel: #10131c;
  --panel-2: #151926;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --muted: #9aa3b2;
  --muted-2: #828a9a; /* ≥4.5:1 on every surface it sits on (WCAG AA) */

  /* Monochrome accent — premium black & white */
  --accent: #f5f6f8;
  --accent-soft: rgba(255, 255, 255, 0.06);
  --accent-glow: rgba(255, 255, 255, 0.12);
  --accent-ink: #0b0c10;

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --radius: 18px;
  --radius-sm: 12px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 10vw, 140px);
  --nav-h: 72px;
}

/* All models share the monochrome palette — one premium brand voice. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Film grain + ambient glow backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(90, 120, 255, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, var(--accent-soft), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: 10px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(7, 8, 12, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled { background: rgba(7, 8, 12, 0.82); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.nav-logo img { width: 92px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; }
.nav-links a {
  display: block; padding: 9px 16px; border-radius: 999px;
  color: var(--muted); font-size: 14.5px; font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav-links a[aria-current] { color: var(--text); background: rgba(255, 255, 255, 0.08); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent-ink) !important;
  padding: 10px 20px !important; border-radius: 999px; font-weight: 700 !important;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #e9ebef !important; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4); }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; z-index: 210;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  /* Note: .nav's backdrop-filter makes it the containing block for fixed
     descendants, so the overlay is anchored below the header instead. */
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0; z-index: 205;
    height: calc(100vh - var(--nav-h)); height: calc(100svh - var(--nav-h));
    flex-direction: column; justify-content: center; gap: 10px;
    background: rgba(7, 8, 12, 0.97);
    border-top: 1px solid var(--line);
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .nav:has(.nav-links.open) { background: rgba(7, 8, 12, 0.97); }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 22px; padding: 12px 28px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary { background: #fff; color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); background: #e9ebef; box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.55); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 2%, rgba(7, 8, 12, 0.45) 40%, rgba(7, 8, 12, 0.25) 100%);
}
.hero-content { position: relative; width: 100%; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.hero-kicker::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.hero h1 {
  font-size: clamp(44px, 8.5vw, 108px);
  font-weight: 700;
  background: linear-gradient(100deg, #fff 30%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  max-width: 13ch;
}
.hero-sub { margin-top: 22px; max-width: 54ch; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(48px, 8vh, 96px);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted-2); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after { content: ""; width: 1px; height: 48px; background: linear-gradient(var(--accent), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 50% { transform: translateY(8px); opacity: 0.4; } }
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.marquee-track span { display: flex; align-items: center; gap: 56px; }
.marquee-track em { font-style: normal; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-head { margin-bottom: clamp(36px, 6vw, 64px); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.section-head h2 { font-size: clamp(32px, 4.6vw, 56px); max-width: 20ch; }
.section-head p { margin-top: 16px; color: var(--muted); max-width: 62ch; font-size: 17px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center p { margin-inline: auto; }
.section-head.center .kicker::before { display: none; }

/* ---------- Model cards (lineup) ---------- */
.lineup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .lineup { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.model-card {
  position: relative; display: flex; flex-direction: column;
}
.model-card > a { display: flex; flex-direction: column; flex: 1; }
.model-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.35s;
}
.model-card:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 44px -18px var(--card-glow, var(--accent-glow)); }
.model-card figure { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; }
.model-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.model-card:hover figure img { transform: scale(1.05); }
.model-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--panel) 0%, transparent 35%); }
.model-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(7, 8, 12, 0.6); border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.model-body { display: flex; flex-direction: column; gap: 14px; padding: 6px 24px 26px; margin-top: -40px; position: relative; z-index: 2; flex: 1; }
.model-body h3 { font-size: 32px; letter-spacing: 0.01em; }
.model-body h3 span { color: var(--muted-2); font-size: 15px; font-weight: 500; display: block; margin-top: 4px; letter-spacing: 0; }
.model-specs { display: flex; gap: 18px; padding-block: 14px; border-block: 1px solid var(--line); }
.model-specs div { flex: 1; }
.model-specs dt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.model-specs dd { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 2px 0 0; }
.model-specs dd small { font-size: 12px; color: var(--muted); font-weight: 500; }
@media (max-width: 400px) {
  .model-specs { gap: 12px; }
  .model-specs dd { font-size: 17px; }
}
.model-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent); margin-top: auto; }
.model-link svg { transition: transform 0.25s; }
.model-card:hover .model-link svg { transform: translateX(5px); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  text-align: left;
}
.stat b { display: block; font-family: var(--font-display); font-size: clamp(34px, 4vw, 48px); font-weight: 700; color: var(--accent); letter-spacing: -0.01em; }
.stat b sup { font-size: 0.45em; margin-left: 2px; }
.stat span { color: var(--muted); font-size: 14px; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split.reverse > figure { order: 2; }
@media (max-width: 880px) { .split.reverse > figure { order: 0; } }
.split figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.split figure img { width: 100%; height: 100%; object-fit: cover; }
.split h3 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
.split p { color: var(--muted); font-size: 16.5px; }
.split ul { list-style: none; padding: 0; margin-top: 22px; display: grid; gap: 12px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 15.5px; }
.split ul li::before {
  content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
.feature {
  padding: 30px 28px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--accent-soft); color: var(--accent);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- Showcase (big image w/ overlay caption) ---------- */
.showcase { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.showcase img { width: 100%; object-fit: cover; aspect-ratio: 16 / 8.5; object-position: center 72%; }
@media (max-width: 700px) { .showcase img { aspect-ratio: 4 / 4.6; } }
.showcase-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(to top, rgba(7, 8, 12, 0.85), transparent);
}
.showcase-caption h3 { font-size: clamp(24px, 3vw, 38px); }
.showcase-caption p { color: var(--muted); margin-top: 8px; max-width: 52ch; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(180px, 22vw, 290px); gap: 16px; }
@media (max-width: 880px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(150px, 32vw, 240px); }
  .gallery figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 640px) { .stat { padding: 22px 18px; } }
.gallery figure { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); position: relative; }
.gallery figure.tall { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- Colour swatches ---------- */
.swatches { display: flex; gap: 14px; flex-wrap: wrap; }
.swatch {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 12px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03);
  font-size: 14px; font-weight: 500;
}
.swatch i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.25); }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 16px 8px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--muted-2); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; width: 40%; }
.spec-table td { font-family: var(--font-display); font-weight: 600; font-size: 17px; }

/* ---------- Compare table ---------- */
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
/* border-collapse: separate is required for the sticky first column to work */
.compare { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: var(--panel); }
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-display); font-size: 20px; border-bottom: 1px solid var(--line-2); }
.compare tbody th { color: var(--muted); font-weight: 500; font-size: 13.5px; }
.compare thead th:first-child, .compare tbody th {
  position: sticky; left: 0; background: var(--panel); z-index: 1;
  border-right: 1px solid var(--line-2);
  box-shadow: 10px 0 14px -10px rgba(0, 0, 0, 0.85);
}
.compare td { font-family: var(--font-display); font-weight: 600; }
.compare .best { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0 24px;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--line-2); background: var(--panel); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 20px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--accent); transition: transform 0.25s; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden;
  border: 1px solid var(--line-2);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -20%, var(--accent-soft), transparent 70%),
    linear-gradient(170deg, var(--panel-2), var(--bg-2));
}
.cta-banner h2 { font-size: clamp(30px, 4.6vw, 54px); max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: var(--muted); margin-top: 14px; max-width: 52ch; margin-inline: auto; }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; padding: 0; font-size: 13px; color: var(--muted-2); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--muted-2); }

/* ---------- Product hero ---------- */
.product-hero { position: relative; padding-top: calc(var(--nav-h) + clamp(28px, 5vh, 64px)); overflow: hidden; }
.product-hero .split { align-items: center; }
.product-title { font-size: clamp(56px, 10vw, 128px); line-height: 0.95; font-weight: 700; }
.product-title .thin { display: block; font-size: clamp(15px, 1.6vw, 20px); font-weight: 500; color: var(--muted); letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 18px; }
.product-tag { margin-top: 20px; color: var(--muted); font-size: 17px; max-width: 46ch; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.spec-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
}
.spec-chip b { font-family: var(--font-display); font-size: 20px; }
.spec-chip span { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.product-hero figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.product-hero figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(75% 60% at 50% 100%, var(--accent-soft), transparent 70%);
  mix-blend-mode: screen;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 80px) 0 36px; background: rgba(255, 255, 255, 0.015); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 96px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.footer h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 14.5px; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  color: var(--muted-2); font-size: 13px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--line-2); color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: grid; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); color: var(--text);
  font: inherit; font-size: 16px; /* ≥16px stops iOS Safari zooming the page on focus */
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s;
}
.field select { appearance: none; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1 5 5 5-5' stroke='%239aa3b2' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ---------- Video block ---------- */
.video-block { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.video-block video { width: 100%; object-fit: cover; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
/* Once revealed, model cards get their hover transitions back
   (the .reveal transition would otherwise mask them). */
.model-card.reveal.in {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.35s;
  transition-delay: 0s;
}
.model-card.reveal.in:hover { transform: translateY(-8px); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Prose (blog/legal) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 12px; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose h3 { font-size: 20px; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose strong { color: var(--text); }
.prose .meta { color: var(--muted-2); font-size: 14px; margin-bottom: 36px; }
.prose img { border-radius: var(--radius); border: 1px solid var(--line); margin-block: 28px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Press strip ---------- */
.press-strip .wrap { text-align: center; }
.press-strip .kicker { justify-content: center; }
.press-strip .kicker::before { display: none; }
.press-strip .outlets {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; align-items: center;
  font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 26px); font-weight: 600;
  color: var(--muted); margin-top: 10px;
}
.press-strip .outlets a { transition: color 0.2s; }
.press-strip .outlets a:hover { color: var(--text); }
.press-strip .outlets span { color: var(--muted-2); }

/* Older Safari (no aspect-ratio): give framed media a sane fixed height */
@supports not (aspect-ratio: 1 / 1) {
  .model-card figure { height: 360px; }
  .showcase img { height: 320px; }
  .gallery figure { height: 220px; }
}

/* ---------- Utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt-lg { margin-top: clamp(36px, 6vw, 64px); }
.glow-text { color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); }
.big-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 11vw, 160px); line-height: 1; letter-spacing: -0.03em;
  /* gradient floor kept ≥3:1 against --bg for WCAG large-text contrast */
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.4));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}
.hidden { display: none; }

/* Page-level headings share the section scale */
.section-head h1 { font-size: clamp(34px, 5.2vw, 60px); max-width: 20ch; }
.section-head.center h1 { margin-inline: auto; }
.split h2 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }

