/* ═══════════════════════════════════════════════
   Three9x — multi-page premium system
   Tall type · void black · blue gradient signal
   ═══════════════════════════════════════════════ */

:root {
  --void: #020308;
  --bg: #04060c;
  --bg-2: #070b14;
  --elevated: #0a1020;
  --card: #0c1424;
  --card-2: #101a2e;
  --line: rgba(140, 190, 255, 0.1);
  --line-strong: rgba(140, 190, 255, 0.18);
  --text: #eef3ff;
  --text-soft: rgba(220, 230, 255, 0.72);
  --text-dim: rgba(180, 200, 240, 0.48);
  --blue: #3b9eff;
  --blue-bright: #5eb6ff;
  --cyan: #1fcef9;
  --blue-deep: #0a2a5c;
  --glow: rgba(59, 158, 255, 0.45);
  --glow-soft: rgba(31, 206, 249, 0.22);

  --font-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --font-head: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --header-h: 76px;
  --max: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
body.is-touch { cursor: auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
body.is-touch a { cursor: pointer; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
body.is-touch button { cursor: pointer; }
em { font-style: italic; color: var(--cyan); }

/* ── Atmosphere ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(30, 90, 200, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(20, 120, 220, 0.16), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(10, 40, 100, 0.35), transparent 55%),
    linear-gradient(180deg, #02040a 0%, #040812 40%, #020308 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 40%, rgba(31, 206, 249, 0.03) 50%, transparent 60%);
  animation: sheen 14s ease-in-out infinite;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Custom cursor ── */
.cursor-dot,
.cursor-ring,
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height, opacity;
}
.cursor-glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.22) 0%, rgba(31, 206, 249, 0.08) 35%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(94, 182, 255, 0.55);
  background: rgba(59, 158, 255, 0.04);
  backdrop-filter: blur(2px);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(31, 206, 249, 0.5);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
}
body.is-hovering .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: var(--cyan);
  background: rgba(31, 206, 249, 0.08);
}
body.is-hovering .cursor-dot {
  width: 4px;
  height: 4px;
  background: #fff;
}
body.is-clicking .cursor-ring {
  width: 32px;
  height: 32px;
}
body.is-touch .cursor-dot,
body.is-touch .cursor-ring,
body.is-touch .cursor-glow { display: none; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--cyan));
  box-shadow: 0 0 14px var(--glow);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.1rem, 3.5vw, 2.4rem);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.site-header.is-scrolled {
  background: rgba(2, 4, 10, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line);
}
.logo img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(31, 206, 249, 0.3));
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desktop a {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  border-radius: 999px;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
}
.nav-desktop a.is-active {
  background: rgba(59, 158, 255, 0.1);
  color: var(--cyan);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 85;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 80, 180, 0.25), transparent 50%),
    rgba(2, 4, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.2rem;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  padding: 1.05rem 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.nav-mobile a:hover,
.nav-mobile a.is-active {
  color: var(--cyan);
  padding-left: 0.5rem;
}
.nav-mobile .btn {
  margin-top: 1.5rem;
  text-align: center;
  border-bottom: 0;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.65rem 1.1rem; }
.btn-lg { padding: 1rem 1.6rem; font-size: 0.82rem; }
.btn-primary {
  color: #031018;
  background: linear-gradient(135deg, #7ad4ff 0%, var(--cyan) 40%, var(--blue) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 10px 36px rgba(31, 206, 249, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.2) inset,
    0 16px 44px rgba(59, 158, 255, 0.4);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(59, 158, 255, 0.05);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(94, 182, 255, 0.5);
  background: rgba(59, 158, 255, 0.12);
}
.btn-price {
  opacity: 0.8;
  font-weight: 500;
  border-left: 1px solid rgba(3,16,24,0.25);
  padding-left: 0.6rem;
  margin-left: 0.1rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* ── Type ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2.2s ease infinite;
}
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.display-xl {
  font-size: clamp(4rem, 13vw, 8.5rem);
}
.display-lg {
  font-size: clamp(3rem, 8vw, 5.5rem);
}
.display-md {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}
.display .accent {
  background: linear-gradient(120deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.head {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lede {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Layout ── */
.site-main {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  min-height: 70vh;
  animation: page-in 0.7s var(--ease) both;
}
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.15rem, 3.5vw, 2.4rem);
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
}
.section-head {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head.center .lede { margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Home hero ── */
.hero {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.15rem, 3.5vw, 2.4rem) 3rem;
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb.a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: 5%;
  right: 5%;
  background: radial-gradient(circle, rgba(40, 120, 255, 0.4), transparent 70%);
  animation: float-orb 11s ease-in-out infinite;
}
.hero-orb.b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: 0;
  left: -5%;
  background: radial-gradient(circle, rgba(31, 206, 249, 0.22), transparent 70%);
  animation: float-orb 14s ease-in-out infinite reverse;
}
.hero-copy { position: relative; z-index: 2; max-width: 34rem; }
.hero-copy .display { margin-bottom: 1.25rem; }
.hero-copy .lede { margin-bottom: 1.75rem; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-meta strong {
  color: var(--cyan);
  font-weight: 500;
  margin-right: 0.3rem;
}
.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 280px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.2), transparent 65%);
  filter: blur(10px);
  animation: breath 5s ease-in-out infinite;
}
.hero-product {
  position: relative;
  width: min(100%, 580px);
  filter: drop-shadow(0 35px 55px rgba(0, 10, 40, 0.65));
  animation: float-product 7s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
}
.hud {
  position: absolute;
  z-index: 3;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(4, 10, 24, 0.65);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 132px;
  animation: hud-in 0.8s var(--ease) 0.7s both;
}
.hud-tl { top: 6%; left: 0; }
.hud-br { bottom: 12%; right: 0; animation-delay: 0.95s; }
.hud-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hud-value {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}
.hud-note { font-size: 0.72rem; color: var(--text-dim); }

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem 2rem;
  }
  .hero-stage { min-height: 460px; }
}
@media (max-width: 959px) {
  .hud { display: none; }
  .hero { min-height: auto; padding-bottom: 2rem; }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(30, 80, 180, 0.12), transparent 25%, transparent 75%, rgba(30, 80, 180, 0.12));
  padding: 1.05rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.marquee-track i {
  font-style: normal;
  color: var(--cyan);
  opacity: 0.55;
}

/* Cards / grids */
.card-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(59, 158, 255, 0.08), transparent 45%),
    var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent, rgba(94, 182, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 182, 255, 0.35);
  box-shadow: 0 24px 50px rgba(0, 20, 60, 0.35), 0 0 0 1px rgba(59, 158, 255, 0.08);
}
.card:hover::before { opacity: 1; }
.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 400;
}

/* Feature split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.reverse > :first-child { order: 2; }
}
.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(59, 158, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #0a1222, #050810);
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.media-panel img {
  width: min(100%, 420px);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
  animation: float-product 8s ease-in-out infinite;
}
.media-panel.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  animation: none;
  filter: none;
  position: absolute;
  inset: 0;
}
.media-panel.photo { padding: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .stat-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 20, 40, 0.5);
}
.stat-v {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-l {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* Product cards */
.product-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
.product-card {
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 182, 255, 0.4);
  box-shadow: 0 28px 60px rgba(0, 20, 60, 0.4);
}
.product-card-media {
  aspect-ratio: 16/11;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(59, 158, 255, 0.2), transparent 60%),
    #060a14;
  padding: 1.5rem;
  position: relative;
}
.product-card-media img {
  width: min(88%, 340px);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-media img {
  transform: scale(1.05) translateY(-4px);
}
.product-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
}
.product-card-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card-body p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cyan);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.15rem, 3.5vw, 2.4rem) clamp(2rem, 4vw, 3rem);
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  overflow: hidden;
}
.page-hero .display {
  max-width: 14ch;
  margin-bottom: 1rem;
}
.page-hero .lede { max-width: 34rem; }

/* About */
.timeline {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line-strong);
  margin-left: 0.5rem;
  padding-left: 1.5rem;
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}
.timeline-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.timeline-item p {
  margin: 0;
  color: var(--text-soft);
}
.timeline-item .year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

/* Product detail */
.pdp {
  display: grid;
  gap: 2.5rem;
  padding: 2rem clamp(1.15rem, 3.5vw, 2.4rem) 4rem;
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
}
@media (min-width: 960px) {
  .pdp { grid-template-columns: 1.1fr 0.9fr; align-items: start; gap: 3rem; }
}
.pdp-stage,
.studio-stage {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 45%, rgba(59, 158, 255, 0.22), transparent 55%),
    linear-gradient(180deg, #0a1428, #050810);
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}
.studio-stage {
  align-content: stretch;
  place-items: stretch;
}
.pdp-stage img {
  width: min(100%, 480px);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
  transition: opacity 0.4s, transform 0.45s var(--ease);
}
.pdp-stage img.is-swap {
  opacity: 0;
  transform: scale(0.96);
}
.pdp-info .display { margin-bottom: 0.5rem; }
.pdp-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin: 0.5rem 0 0.35rem;
}
.pdp-note {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}
.swatches {
  display: flex;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1px solid var(--line-strong);
  outline-offset: 3px;
  transition: transform 0.25s, outline-color 0.25s, box-shadow 0.25s;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active {
  outline-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(31, 206, 249, 0.15), 0 0 20px rgba(31, 206, 249, 0.25);
}
.colour-name {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.colour-desc {
  margin: 0 0 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.spec-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.spec-list li {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.spec-list li span:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  align-self: center;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 18, 36, 0.55);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] {
  border-color: rgba(94, 182, 255, 0.35);
  background: rgba(30, 80, 160, 0.12);
}
.faq-item summary {
  list-style: none;
  cursor: none;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
body.is-touch .faq-item summary { cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 1.15rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-soft);
}

/* Contact form */
.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 28, 0.8);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: none;
}
body.is-touch .field input,
body.is-touch .field select,
body.is-touch .field textarea { cursor: text; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(94, 182, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 0;
}
.form-success {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 206, 249, 0.35);
  background: rgba(31, 206, 249, 0.08);
}

/* CTA band */
.cta-band {
  margin: 1rem auto 0;
  max-width: calc(var(--max) + 4rem);
  padding: 0 clamp(1.15rem, 3.5vw, 2.4rem) clamp(3rem, 6vw, 5rem);
}
.cta-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 90% 20%, rgba(59, 158, 255, 0.25), transparent 50%),
    linear-gradient(135deg, #0a1630, #050a14 60%);
  box-shadow: 0 30px 70px rgba(0, 15, 40, 0.4);
}
@media (min-width: 800px) {
  .cta-card { grid-template-columns: 1.2fr auto; }
}
.cta-card .display { margin-bottom: 0.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(10, 30, 70, 0.2));
  padding: 3.25rem clamp(1.15rem, 3.5vw, 2.4rem) 1.75rem;
}
.footer-inner {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand p {
  margin: 0.9rem 0 0.5rem;
  color: var(--text-dim);
  max-width: 24rem;
  font-size: 0.95rem;
}
.footer-brand a { color: var(--cyan); }
.footer-brand img { height: 26px; width: auto; }
.footer-col h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: calc(var(--max) + 4rem);
  margin: 2rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* Animations */
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes float-product {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -5%) scale(1.06); }
}
@keyframes breath {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}
@keyframes hud-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes sheen {
  0%, 100% { opacity: 0.4; transform: translateX(-5%); }
  50% { opacity: 1; transform: translateX(5%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-product, .media-panel img, .hero-orb, .marquee-track,
  .eyebrow .dot, .page-bg::after { animation: none !important; }
  .site-main { animation: none; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-glow { display: none !important; }
}

/* ═══════════ Site loader ═══════════ */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(40, 100, 220, 0.28), transparent 55%),
    #020308;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-core {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}
.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  border: 1.5px solid rgba(94, 182, 255, 0.12);
  border-top-color: var(--cyan);
  animation: loader-spin 1s linear infinite;
}
.loader-ring-2 {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-top-color: transparent;
  border-right-color: var(--blue);
  animation-duration: 1.55s;
  animation-direction: reverse;
  opacity: 0.55;
}
.loader-logo {
  height: 36px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(31, 206, 249, 0.5));
  animation: loader-pulse 1.35s ease-in-out infinite;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .loader-ring, .loader-ring-2, .loader-logo { animation: none; }
}

/* ═══════════ Product reels ═══════════ */
.reels-section .section-head { margin-bottom: 2rem; }
.reels-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
@media (min-width: 1100px) {
  .reels-rail {
    grid-auto-flow: dense;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
  }
}
.reel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050810;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0, 10, 40, 0.35);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.reel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 182, 255, 0.4);
  box-shadow: 0 24px 50px rgba(0, 20, 60, 0.45);
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.reel-mute {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(4, 10, 22, 0.72);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.reel-mute:hover {
  border-color: rgba(94, 182, 255, 0.5);
  background: rgba(20, 50, 100, 0.55);
}
.reel-mute.is-unmuted {
  border-color: rgba(31, 206, 249, 0.5);
  background: rgba(31, 206, 249, 0.15);
}
.reel-mute-icon { font-size: 0.9rem; line-height: 1; }
.reel-mute-label { opacity: 0.9; }

/* ═══════════ Product studio (3D + photos) ═══════════ */
.product-studio.pdp {
  padding-top: 1.5rem;
}
.studio-stage {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(59, 158, 255, 0.2), transparent 55%),
    linear-gradient(180deg, #0a1428, #050810);
  min-height: 420px;
  overflow: hidden;
  display: grid;
}
.mode-switch {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(4, 10, 22, 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mode-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}
.mode-btn.is-active {
  background: rgba(31, 206, 249, 0.15);
  color: var(--cyan);
}
.mode-btn:hover { color: var(--text); }

.viewer-root {
  position: relative;
  width: 100%;
  min-height: 460px;
  height: min(62vh, 560px);
}
.viewer-root[hidden] { display: none !important; }
.viewer-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}
.viewer-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
  transition: opacity 0.4s;
}
.viewer-root.is-ready .viewer-status:empty,
.viewer-root.is-ready .viewer-status:not(:empty) {
  opacity: 0;
}
.viewer-root.is-ready .viewer-status:empty { display: none; }
.viewer-root.is-loading .viewer-status { opacity: 1; }
.viewer-hud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem 1.15rem;
  background: linear-gradient(transparent, rgba(2, 4, 12, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 4;
}
.legs-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}
.legs-slider-wrap {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.legs-slider-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  outline: none;
}
.legs-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--glow);
  cursor: none;
}
body.is-touch .legs-slider-wrap input[type="range"]::-webkit-slider-thumb { cursor: pointer; }
.legs-slider-wrap span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.viewer-hint {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Photo stage */
.photo-stage {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 460px;
  height: min(62vh, 560px);
}
.photo-stage[hidden] { display: none !important; }
.photo-main-wrap {
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem 1rem;
  overflow: hidden;
}
.photo-main-wrap img {
  max-width: 100%;
  max-height: min(48vh, 420px);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  transition: opacity 0.35s, transform 0.4s var(--ease);
}
.photo-main-wrap img.is-swap {
  opacity: 0;
  transform: scale(0.97);
}
.photo-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1.1rem;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: thin;
}
.thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb:hover { opacity: 1; transform: translateY(-2px); }
.thumb.is-active {
  opacity: 1;
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(31, 206, 249, 0.35);
}

@media (min-width: 960px) {
  .studio-stage { min-height: 520px; }
  .viewer-root, .photo-stage {
    min-height: 520px;
    height: 560px;
  }
}

.product-card-media img {
  width: min(92%, 380px);
  max-height: 240px;
  object-fit: contain;
}

/* ═══════════ Enhanced loader (logo + rings only, 1.5s) ═══════════ */
.loader-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 206, 249, 0.35), transparent 70%);
  animation: loader-breathe 1.2s ease-in-out infinite;
}
.loader-pulse-2 {
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  animation-delay: 0.35s;
  opacity: 0.6;
}
.loader-ring-3 {
  width: 210px;
  height: 210px;
  margin: -105px 0 0 -105px;
  border-top-color: transparent;
  border-left-color: rgba(94, 182, 255, 0.45);
  animation-duration: 2.1s;
  opacity: 0.35;
}
@keyframes loader-breathe {
  0%, 100% { transform: scale(0.85); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Directional reveals */
.reveal[data-dir="left"] {
  transform: translateX(-48px);
}
.reveal[data-dir="right"] {
  transform: translateX(48px);
}
.reveal[data-dir="up"] {
  transform: translateY(36px);
}
.reveal.is-in[data-dir="left"],
.reveal.is-in[data-dir="right"],
.reveal.is-in[data-dir="up"] {
  transform: none;
}

/* Hero v2 — orbit */
.hero-v2 {
  overflow: visible;
}
.hero-grid-bg {
  position: absolute;
  inset: 10% 0 0 40%;
  background-image:
    linear-gradient(rgba(94, 182, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 182, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.hero-v2 .hero-stage {
  min-height: 420px;
  isolation: isolate;
}
.orbit-system {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 182, 255, 0.14);
  box-shadow: 0 0 40px rgba(31, 206, 249, 0.06) inset;
}
.orbit-ring-a {
  width: min(78%, 420px);
  aspect-ratio: 1;
  animation: orbit-spin 28s linear infinite;
  border-style: dashed;
  border-color: rgba(31, 206, 249, 0.22);
}
.orbit-ring-b {
  width: min(92%, 500px);
  aspect-ratio: 1;
  animation: orbit-spin 40s linear infinite reverse;
  opacity: 0.55;
}
.orbit-ring-c {
  width: min(58%, 300px);
  aspect-ratio: 1;
  border-color: rgba(31, 206, 249, 0.18);
  animation: orbit-pulse 4s ease-in-out infinite;
}
.orbit-track {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  animation: orbit-spin 22s linear infinite;
}
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  --angle: calc(var(--i) * 60deg);
  --radius: min(39vw, 210px);
  transform: rotate(var(--angle)) translateY(calc(var(--radius) * -1));
  pointer-events: auto;
}
.orbit-chip {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  margin: -29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 16px;
  background: rgba(6, 12, 24, 0.88);
  border: 1px solid rgba(94, 182, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 10, 40, 0.4), 0 0 20px rgba(31, 206, 249, 0.12);
  /* counter-rotate so chips stay upright while track spins */
  animation: orbit-spin 22s linear infinite reverse;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.orbit-chip:hover {
  border-color: var(--cyan);
  background: rgba(20, 50, 90, 0.95);
  box-shadow: 0 12px 32px rgba(0, 20, 60, 0.5), 0 0 28px rgba(31, 206, 249, 0.3);
  transform: scale(1.08);
  z-index: 5;
}
.orbit-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.orbit-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-v2 .hero-product {
  z-index: 2;
  width: min(88%, 480px);
  transition: filter 0.4s, transform 0.2s linear;
  filter: drop-shadow(0 30px 50px rgba(0, 10, 40, 0.65)) drop-shadow(0 0 40px rgba(31, 206, 249, 0.15));
}
.hero-v2 .hero-stage:hover .hero-product {
  filter: drop-shadow(0 36px 60px rgba(0, 10, 40, 0.7)) drop-shadow(0 0 50px rgba(31, 206, 249, 0.28));
}
.hero-v2 .stage-glow {
  width: 55%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(31, 206, 249, 0.28), transparent 70%);
}
.hero-v2 .hud {
  z-index: 4;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.hero-v2 .hud:hover {
  border-color: rgba(31, 206, 249, 0.45);
  transform: translateY(-2px);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes orbit-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
}
@keyframes orbit-item-float {
  0%, 100% { margin-top: -29px; }
  50% { margin-top: -33px; }
}

@media (max-width: 959px) {
  .orbit-item { --radius: min(36vw, 150px); }
  .orbit-chip {
    width: 48px;
    height: 48px;
    margin: -24px;
  }
  .orbit-label { display: none; }
  .orbit-track { width: min(72%, 300px); }
  .orbit-ring-a { width: min(72%, 300px); }
  .orbit-ring-b { width: min(88%, 360px); }
  .hero-v2 .hud { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-chip { animation: none; }
}

/* Lifestyle story bands */
.lifestyle {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lifestyle .section-head { margin-bottom: 0.5rem; }
.story-band {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.35s, box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.story-band:hover {
  border-color: rgba(94, 182, 255, 0.35);
  box-shadow: 0 28px 60px rgba(0, 15, 50, 0.4);
  transform: translateY(-3px);
}
.story-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #050810;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.8s var(--ease);
}
.story-band:hover .story-media img {
  transform: scale(1.05);
}
.story-copy {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  background:
    linear-gradient(135deg, rgba(59, 158, 255, 0.06), transparent 50%),
    var(--card);
}
.story-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.story-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.story-copy p:not(.story-kicker) {
  margin: 0 0 0.5rem;
  color: var(--text-soft);
  max-width: 32rem;
  line-height: 1.65;
}
.story-copy .btn { align-self: flex-start; margin-top: 0.35rem; }

@media (min-width: 900px) {
  .story-band {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 340px;
  }
  .story-band-flip {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .story-band-flip .story-media { order: 2; }
  .story-band-flip .story-copy { order: 1; }
  .story-media img { min-height: 100%; position: absolute; inset: 0; }
  .story-media { min-height: 100%; }
}

/* Stronger card / button hovers */
.card {
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s, background 0.35s;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
}
.btn {
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.25s, border-color 0.25s, filter 0.25s;
}
.btn-primary:hover {
  filter: brightness(1.06);
}
.btn-ghost:hover {
  transform: translateY(-2px);
}
.stat {
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 206, 249, 0.4);
  background: rgba(31, 206, 249, 0.08);
}
.media-panel img {
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.media-panel:hover img {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 30px rgba(31, 206, 249, 0.2));
}
.reel-card {
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.product-card {
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
}

/* Smooth page load after loader */
body.is-loaded .site-main {
  animation: page-in 0.8s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .orbit-track, .orbit-ring-a, .orbit-ring-b, .orbit-ring-c,
  .orbit-item, .hero-grid-bg, .loader-pulse {
    animation: none !important;
  }
  .reveal[data-dir="left"],
  .reveal[data-dir="right"] {
    transform: translateY(20px);
  }
}

/* ═══════════ Home scroll-driven 3D (full-bleed, no box) ═══════════ */
.scroll-3d {
  position: relative;
  height: 320vh;
  margin: 0;
  width: 100%;
}
.scroll-3d-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 70% 55% at 55% 48%, rgba(40, 100, 200, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(31, 206, 249, 0.08), transparent 50%),
    #020308;
}
/* Full-page 3D — no frame, border, or card */
.scroll-3d-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
  pointer-events: none;
}
.scroll-3d-stage.viewer-root {
  min-height: 100%;
  height: 100%;
}
.scroll-3d-stage .viewer-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.scroll-3d-stage .viewer-status {
  z-index: 2;
}
/* Copy overlays the full-bleed model */
.scroll-3d-copy {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  max-width: min(28rem, 92vw);
  padding:
    4rem
    clamp(1.25rem, 4vw, 2.75rem)
    calc(1.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(
    0deg,
    rgba(2, 4, 12, 0.92) 0%,
    rgba(2, 4, 12, 0.55) 55%,
    transparent 100%
  );
  pointer-events: auto;
}
@media (min-width: 900px) {
  .scroll-3d-copy {
    left: clamp(1.25rem, 4vw, 3rem);
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem 2.25rem;
    border-radius: 20px;
    background: linear-gradient(
      120deg,
      rgba(2, 6, 16, 0.72) 0%,
      rgba(2, 6, 16, 0.35) 70%,
      transparent 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(94, 182, 255, 0.12);
  }
}
.scroll-3d-lede {
  margin: 0.75rem 0 1.25rem;
  min-height: 3.2em;
  transition: opacity 0.25s ease;
}
.scroll-3d-progress {
  width: 100%;
  max-width: 240px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.scroll-3d-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px var(--glow);
  transition: width 0.05s linear;
}
.scroll-3d-hint {
  margin: 0 0 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-3d-color {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--cyan);
}
.scroll-3d-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(31, 206, 249, 0.35);
}
.scroll-3d-track {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-3d {
    height: auto;
  }
  .scroll-3d-sticky {
    position: relative;
    top: 0;
    height: auto;
    min-height: 100vh;
  }
}
