/* ============================================================
   AgentBox — Premium Dark Hardware Design System
   ============================================================ */

:root {
  /* Core palette */
  --void: #04070d;
  --bg: #060b14;
  --bg-2: #0a111e;
  --slate: #0f172a;
  --slate-2: #131c2e;
  --line: rgba(148, 163, 184, 0.10);
  --line-strong: rgba(148, 163, 184, 0.18);

  /* Accents */
  --teal: #06b6d4;
  --teal-bright: #22d3ee;
  --blue: #1e40af;
  --blue-bright: #3b82f6;
  --indigo: #6366f1;

  /* Text */
  --ink: #f1f5f9;
  --ink-dim: #94a3b8;
  --ink-faint: #64748b;

  /* Effects */
  --glow-teal: 0 0 40px rgba(6, 182, 212, 0.35);
  --glow-soft: 0 0 24px rgba(6, 182, 212, 0.18);
  --radius: 18px;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display { font-family: var(--font-display); letter-spacing: -0.02em; }
.mono { font-family: var(--font-mono); }
a { color: var(--teal-bright); }

/* ============================================================
   Layered background system (kinetic + textures)
   ============================================================ */
.bg-kinetic {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 15% -5%, rgba(6, 182, 212, 0.10), transparent 60%),
    radial-gradient(800px 700px at 100% 10%, rgba(30, 64, 175, 0.16), transparent 55%),
    radial-gradient(700px 700px at 50% 110%, rgba(99, 102, 241, 0.10), transparent 60%),
    var(--bg);
}

/* Fine technical grid */
.bg-kinetic::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 80%);
}

/* Film grain / noise overlay */
.bg-kinetic::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  mix-blend-mode: screen;
  animation: blob 16s ease-in-out infinite;
}
.blob-1 { top: -10%; left: -8%; width: 620px; height: 620px; background: rgba(6, 182, 212, 0.12); }
.blob-2 { bottom: -12%; right: -10%; width: 560px; height: 560px; background: rgba(30, 64, 175, 0.20); animation-delay: 3s; }

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Section-level circuit texture (uses generated asset, falls back to gradient) */
.tex-circuit { position: relative; }
.tex-circuit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tex-url, none);
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}
.tex-circuit > * { position: relative; z-index: 1; }

/* ============================================================
   Layout
   ============================================================ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ============================================================
   Glass panels & cards
   ============================================================ */
.glass {
  background: linear-gradient(180deg, rgba(19, 28, 46, 0.72), rgba(10, 17, 30, 0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.card {
  background: linear-gradient(180deg, rgba(19, 28, 46, 0.6), rgba(10, 17, 30, 0.45));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 18px 50px -20px rgba(6, 182, 212, 0.25);
}

/* Animated gradient border (premium accent) */
.border-glow { position: relative; border-radius: var(--radius); }
.border-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6,182,212,0.6), rgba(99,102,241,0.15) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  padding: 7px 14px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.07);
  box-shadow: var(--glow-soft);
}
.h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 700; line-height: 1.04; }
.h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.1; }
.h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-dim); line-height: 1.7; }
.muted { color: var(--ink-dim); }
.faint { color: var(--ink-faint); }

.gradient-text {
  background: linear-gradient(120deg, var(--teal-bright), var(--blue-bright) 55%, var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  color: #04070d;
  background: linear-gradient(120deg, var(--teal-bright), var(--teal) 60%, var(--blue-bright));
  box-shadow: var(--glow-soft);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--glow-teal); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(6,182,212,0.5); background: rgba(6,182,212,0.06); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 11, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.35rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.brand:hover .logo-mark { transform: rotate(0deg); box-shadow: var(--glow-teal); }
.logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 2px solid var(--teal);
  border-radius: 9px;
  transform: rotate(12deg);
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: var(--glow-soft);
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 10px var(--teal-bright); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-bright); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.menu-btn { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; padding: 8px; color: var(--ink); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 22px; border-bottom: 1px solid var(--line); background: rgba(6,11,20,0.97); }
.mobile-menu a { color: var(--ink-dim); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-menu.open { display: flex; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-btn { display: inline-flex; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(4,7,13,0.6)); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer-grid h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); margin: 0 0 16px; font-family: var(--font-mono); }
.footer-grid a { display: block; color: var(--ink-dim); text-decoration: none; padding: 5px 0; font-size: 0.92rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--teal-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 24px 0 40px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 0.85rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ============================================================
   Pills / badges / stats
   ============================================================ */
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-dim); padding: 5px 12px; border: 1px solid var(--line-strong); border-radius: 999px; }
.dot-live { position: relative; width: 8px; height: 8px; display: inline-block; }
.dot-live::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--teal-bright); animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
.dot-live::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--teal); }
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.stat-label { color: var(--ink-faint); font-size: 0.85rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   Spec tables
   ============================================================ */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--ink-faint); font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-table td { color: var(--ink); }
.spec-table tr:hover td { background: rgba(6,182,212,0.04); }

/* Code blocks */
.code {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  background: var(--void);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  overflow-x: auto;
  color: #cbd5e1;
  line-height: 1.7;
  white-space: pre;
}
.code .c-key { color: var(--teal-bright); }
.code .c-str { color: #86efac; }
.code .c-com { color: var(--ink-faint); }

/* ============================================================
   Imagery
   ============================================================ */
.media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--void);
}
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame.framed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4,7,13,0.45));
  pointer-events: none;
}
.media-glow { box-shadow: 0 30px 90px -30px rgba(6,182,212,0.4); }

/* ============================================================
   Animations (scroll reveal + entrance)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s forwards; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.45s; } .d5 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 34s linear infinite; }
.marquee-track span { color: var(--ink-faint); font-family: var(--font-mono); font-size: 0.95rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   Grids
   ============================================================ */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* Icon tile */
.icon-tile {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--teal-bright);
  margin-bottom: 20px;
}

/* Cluster node visual */
.cluster-grid { display: grid; gap: 10px; justify-content: center; }
.node {
  border-radius: 8px;
  background: linear-gradient(160deg, var(--slate-2), var(--slate));
  border: 1px solid var(--line-strong);
  position: relative;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
}
.node::before { content: ""; position: absolute; left: 8px; bottom: 8px; width: 22px; height: 3px; border-radius: 3px; background: var(--teal-bright); box-shadow: 0 0 8px var(--teal-bright); animation: nodepulse 2.4s ease-in-out infinite; }
@keyframes nodepulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

/* Tabs */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: 14px; border: 1px solid var(--line); background: rgba(10,17,30,0.6); flex-wrap: wrap; }
.tab { padding: 9px 18px; border-radius: 9px; border: none; background: transparent; color: var(--ink-dim); font-weight: 600; font-size: 0.9rem; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; }
.tab.active { background: linear-gradient(120deg, var(--teal), var(--blue-bright)); color: #04070d; }

/* Accordion */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-size: 1.05rem; font-weight: 600; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--ink-dim); }
.acc-a-inner { padding-bottom: 22px; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-icon { transition: transform 0.3s; color: var(--teal-bright); flex-shrink: 0; }

/* Form fields */
.field { display: block; margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--glow-soft); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }

/* Range slider */
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--slate-2); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-bright); cursor: pointer; box-shadow: var(--glow-soft); border: 3px solid var(--void); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-bright); cursor: pointer; border: 3px solid var(--void); }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-xl { max-width: 600px; }
.maxw-2xl { max-width: 720px; }
.maxw-3xl { max-width: 880px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; } .mb-12 { margin-bottom: 48px; }
.flex { display: flex; } .items-center { align-items: center; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .wrap-flex { flex-wrap: wrap; }
.relative { position: relative; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); border: 0; margin: 0; }
.tag-teal { color: var(--teal-bright); }

/* ============================================================
   Launch pricing (doubled MSRP + launch price)
   ============================================================ */
.price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-old {
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(244, 63, 94, 0.7);
  opacity: 0.85;
}
.price-now { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.price-now .gradient-text { font-weight: 700; }
.launch-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #04070d;
  padding: 4px 11px; border-radius: 999px;
  background: linear-gradient(120deg, var(--teal-bright), var(--blue-bright));
  position: relative; overflow: hidden;
}
.launch-badge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* Launch announcement bar */
.launch-bar {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.9rem;
  color: var(--ink);
  background: linear-gradient(120deg, rgba(6,182,212,0.16), rgba(99,102,241,0.16));
  border-bottom: 1px solid rgba(6,182,212,0.25);
}
.launch-bar a { font-weight: 600; }
.launch-bar .launch-badge { flex-shrink: 0; }

/* ============================================================
   Micro-animations (slicker UI) — all reduced-motion safe
   ============================================================ */

/* Button sheen sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform 0.6s ease; pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }
.btn-primary:active { transform: translateY(0) scale(0.99); }

/* Animated nav underline */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--teal-bright), var(--blue-bright));
  border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Header elevates / tightens on scroll */
.site-header { transition: height 0.3s, background 0.3s, box-shadow 0.3s; }
.site-header.scrolled { background: rgba(6, 11, 20, 0.92); box-shadow: 0 8px 30px -16px rgba(0,0,0,0.6); }
.site-header.scrolled .nav { height: 60px; }

/* Card lift gets a touch of glow on the icon */
.card .icon-tile { transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s, background 0.35s; }
.card:hover .icon-tile { transform: translateY(-2px) scale(1.06); box-shadow: var(--glow-soft); background: rgba(6,182,212,0.14); }

/* Eyebrow gentle hover glow */
.eyebrow { transition: box-shadow 0.3s, border-color 0.3s; }

/* Count-up stat helper (set via JS) */
.stat-num.counting { will-change: contents; }

/* Pill / spec-row hover already subtle; add link arrow nudge */
.btn span[aria-hidden="true"] { transition: transform 0.25s; display: inline-block; }
.btn:hover span[aria-hidden="true"] { transform: translateX(4px); }

/* Media frame subtle zoom on hover */
.media-frame img { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.media-frame:hover img { transform: scale(1.035); }

/* Model chips */
.model-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink);
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: rgba(10,17,30,0.6);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.model-chip:hover { transform: translateY(-3px); border-color: rgba(6,182,212,0.5); box-shadow: var(--glow-soft); }
.model-chip .mc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 8px var(--teal-bright); }

@media (prefers-reduced-motion: reduce) {
  .launch-badge::after, .btn::after { animation: none !important; display: none !important; }
  .nav-links a::after { transition: none !important; }
  .media-frame:hover img, .card:hover .icon-tile { transform: none !important; }
}
