@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&family=Instrument+Serif:ital@0;1&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #16161a;
  --line: #222226;
  --line-2: #2e2e34;
  --fg: #f5f5f7;
  --fg-2: #9a9aa2;
  --fg-3: #5c5c64;
  --accent: #C41E1E;
  --accent-glow: rgba(196, 30, 30, 0.4);
}

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

@keyframes blink { 0%, 60% { opacity: 1; } 80%, 100% { opacity: 0.25; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--accent);
  border-bottom: 1px solid #6a0f0f;
  transition: background 0.3s;
}
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }
.nav-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 38px 32px 22px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-links {
  display: flex; gap: 22px; flex: 1;
  margin-left: 20px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 12px; color: rgba(255,255,255,0.82); font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.nav-phone strong { color: #fff; font-weight: 700; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--accent);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.nav-icon-btn {
  display: inline-flex; align-items: center;
  position: relative;
  color: rgba(255,255,255,0.85);
  padding: 4px;
  transition: color 0.15s;
}
.nav-icon-btn:hover { color: #fff; }
.nav-icon-btn .cart-count {
  position: absolute; top: -5px; right: -7px;
  background: #fff; color: var(--accent);
  font-size: 9px; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Logo on red nav: everything white, AIR-disc becomes outlined */
.nav .nav-logo svg text { fill: #fff !important; }
.nav .nav-logo svg circle {
  fill: transparent !important;
  stroke: #fff !important;
  stroke-width: 3 !important;
}

/* ============ SECTION BASE ============ */
.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.scene-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.scene-content {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: 140px 64px 100px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
}
.scene-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: blink 1.4s infinite;
}
.eyebrow-num { color: var(--fg-3); }

.h-display {
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.h-display em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.025em;
}
.lead {
  font-size: 19px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 560px;
  margin-top: 28px;
}
.lead strong { color: var(--fg); font-weight: 600; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--fg); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,30,30,0.08) 0%, transparent 60%), #0a0a0b;
}
.hero-corner {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  z-index: 5;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-corner-tl { top: 100px; left: 32px; }
.hero-corner-tr { top: 100px; right: 32px; text-align: right; align-items: flex-end; }
.hero-corner-bl { bottom: 60px; left: 32px; }
.hero-corner strong { color: var(--accent); font-weight: 700; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  margin: 0 auto;
  padding: 180px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  min-height: 100vh;
  align-items: center;
}
.hero-text { padding-right: 40px; }
.hero-h1 {
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.hero-h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px; line-height: 1.5;
  color: var(--fg-2);
  max-width: 520px;
  margin-top: 32px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 28px 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: ''; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
}

.hero-rig { position: relative; height: 100%; min-height: 600px; }
.hero-rig-svg { width: 100%; height: 100%; max-height: 720px; display: block; }
.hero-anno {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-2);
  background: rgba(10, 10, 11, 0.85);
  border: 1px solid var(--line);
  padding: 7px 11px;
  z-index: 4;
}
.hero-anno strong { color: var(--accent); font-weight: 700; margin-right: 8px; }
.hero-anno-1 { top: 12%; right: 0; }
.hero-anno-2 { top: 50%; left: -4%; }
.hero-anno-3 { bottom: 12%; right: 4%; }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.65);
  backdrop-filter: blur(8px);
  z-index: 4;
}
.hero-stats-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 24px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1;
  font-feature-settings: 'tnum' 1;
}
.hero-stat-num.live { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 22px; }
.hero-stat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--fg-3); text-transform: uppercase;
  line-height: 1.5;
}

/* ============ MARQUEE ============ */
/* ===== MANUFACTURERS / BRANDS SCENE ===== */
.scene-brands { background: var(--bg); border-bottom: 1px solid var(--line); }
.brands-content { padding-top: 140px; padding-bottom: 100px; min-height: auto; }
.brands-head {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: end;
  margin-bottom: 60px;
}
.brands-lead {
  font-size: 17px; line-height: 1.55; color: var(--fg-2);
  margin-bottom: 28px; max-width: 520px;
}
.brands-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.brand-cell {
  background: var(--bg-2);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px; position: relative;
  transition: background 0.2s;
  color: var(--fg);
}
.brand-cell:hover { background: var(--bg-3); }
.brand-cell:hover .brand-logo { color: var(--accent); }
.brand-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-3);
  letter-spacing: 0.18em; font-weight: 700;
}
.brand-logo {
  height: 60px; display: flex; align-items: center;
  color: var(--fg);
  transition: color 0.2s;
  margin: 6px 0;
}
.brand-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--fg-3); text-transform: uppercase;
  margin-top: auto; line-height: 1.5;
}
.brand-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--accent); text-transform: uppercase;
}
.brand-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: blink 1.4s infinite;
}
.brands-foot {
  margin-top: 32px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-3); text-transform: uppercase;
}
.brands-foot strong { color: var(--accent); }
@media (max-width: 1100px) {
  .brands-head { grid-template-columns: 1fr; gap: 28px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .brands-grid { grid-template-columns: 1fr; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid #6a0f0f;
  border-bottom: 1px solid #6a0f0f;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.marquee-item { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

/* ============ PRODUCT SCENES ============ */
.scene-product {
  background: var(--bg);
}
.scene-product .scene-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.scene-product.flip .scene-content {
  grid-template-columns: 1.1fr 0.9fr;
}
.scene-product.flip .scene-product-text { order: 2; max-width: 540px; justify-self: end; }
.scene-product.flip .scene-product-stage { order: 1; }
.scene-product.flip .scene-bg svg { transform: scaleX(-1); }
.scene-product-text { max-width: 540px; }
.scene-product-h {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.scene-product-h em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.scene-product-lead {
  font-size: 17px; line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 32px;
}
.scene-product-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.spec-cell {
  background: var(--bg-2);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.spec-cell-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--fg-3); text-transform: uppercase;
}
.spec-cell-v { font-size: 18px; font-weight: 600; color: #fff; }
.scene-product-brands {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.scene-product-brands strong { color: var(--accent); }

.scene-product-stage {
  position: relative;
  height: 600px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  overflow: hidden;
}
.scene-product-stage svg {
  width: 100%; height: 100%; display: block;
}
.scene-product-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.scene-product-tag span { color: var(--accent); }

.scene-product-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 130px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  line-height: 0.9;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ============ WHY US ============ */
.why {
  background: var(--bg);
  padding: 160px 32px;
  position: relative;
  overflow: hidden;
}
.why-bg-text {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: clamp(180px, 26vw, 420px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 30, 30, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.why-inner {
  position: relative; z-index: 2;
  max-width: 1480px; margin: 0 auto;
}
.why-head {
  display: grid; grid-template-columns: 0.6fr 0.4fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.why-head-sub { font-size: 17px; line-height: 1.55; color: var(--fg-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-cell {
  background: var(--bg-2);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 320px;
  position: relative;
  transition: background 0.2s;
}
.why-cell:hover { background: var(--bg-3); }
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-weight: 700;
}
.why-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  margin-bottom: 8px;
}
.why-h {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.why-p {
  font-size: 14px; line-height: 1.5; color: var(--fg-2);
  margin-top: auto;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: #ffffff;
  color: #0E0F12;
  padding: 120px 32px;
  text-align: center;
  position: relative;
}
.final-cta-inner { max-width: 800px; margin: 0 auto; }
.final-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9a9aa2;
  margin-bottom: 40px;
  display: inline-flex; align-items: center; gap: 12px;
}
.final-cta-eyebrow::before, .final-cta-eyebrow::after {
  content: ''; width: 40px; height: 1px;
  background: #d0d0d4;
}
.final-cta-h {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0E0F12;
  margin-bottom: 8px;
}
.final-cta-tagline {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0E0F12;
  margin-bottom: 60px;
}
.final-cta-btns { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.final-cta-btn-primary {
  background: #C41E1E; color: #fff;
  padding: 16px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.18s;
}
.final-cta-btn-primary:hover { background: #a01818; }
.final-cta-btn-outline {
  border: 1.5px solid #0E0F12; color: #0E0F12;
  padding: 16px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.18s, color 0.18s;
}
.final-cta-btn-outline:hover { background: #0E0F12; color: #fff; }

/* ============ FOOTER ============ */
.footer {
  background: #050506;
  color: var(--fg-2);
  padding: 100px 32px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand .footer-tag {
  font-size: 14px; line-height: 1.5;
  margin-top: 20px; max-width: 280px;
}
.footer-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-3);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: var(--fg-2);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-row { display: flex; gap: 12px; align-items: flex-start; }
.fc-row svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.fc-row-text { font-size: 13px; line-height: 1.5; }
.fc-row-text strong { color: var(--fg); font-weight: 600; }
.footer-live {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.footer-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: blink 1.4s infinite;
}
.footer-bottom {
  max-width: 1480px; margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
}

/* ============ HERO RIG ANIMATIONS ============ */
.cyl-rod-1 { animation: rod-fire-1 2.4s cubic-bezier(.7,0,.3,1) infinite; }
.cyl-rod-2 { animation: rod-fire-2 2.4s cubic-bezier(.7,0,.3,1) infinite; }
.cyl-rod-3 { animation: rod-fire-3 2.4s cubic-bezier(.7,0,.3,1) infinite; }
@keyframes rod-fire-1 {
  0%, 100% { transform: translateY(0); }
  40%, 55% { transform: translateY(60px); }
}
@keyframes rod-fire-2 {
  0%, 100% { transform: translateY(0); }
  50%, 65% { transform: translateY(60px); }
}
@keyframes rod-fire-3 {
  0%, 100% { transform: translateY(0); }
  60%, 75% { transform: translateY(60px); }
}
.led-blink-1 { animation: led-blink 2.4s infinite; }
.led-blink-2 { animation: led-blink 2.4s infinite -0.2s; }
.led-blink-3 { animation: led-blink 2.4s infinite -0.4s; }
@keyframes led-blink {
  0%, 35% { opacity: 0.2; }
  40%, 55% { opacity: 1; }
  60%, 100% { opacity: 0.2; }
}
.tracer { animation: tracer-flow 1.2s linear infinite; }
@keyframes tracer-flow {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(560px); opacity: 0; }
}
.gauge-needle { animation: gauge-tick 4s ease-in-out infinite; transform-origin: center; }
@keyframes gauge-tick {
  0%, 100% { transform: rotate(-30deg); }
  50% { transform: rotate(45deg); }
}

/* === Compressor scene === */
.fan-spin { animation: spin 1.4s linear infinite; transform-origin: center; }
.fan-spin-fast { animation: spin 0.6s linear infinite; transform-origin: center; }
.shake { animation: shake 0.08s linear infinite; }
@keyframes shake {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(0.5px, -0.4px); }
}
.steam { animation: steam-rise 4s ease-out infinite; transform-origin: center; }
@keyframes steam-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.4; }
  100% { transform: translateY(-60px) scale(2.4); opacity: 0; }
}

/* === Cylinder scene: pistons firing === */
.bigrod-1 { animation: bigrod-1 3s cubic-bezier(.65,0,.35,1) infinite; }
.bigrod-2 { animation: bigrod-2 3s cubic-bezier(.65,0,.35,1) infinite; }
.bigrod-3 { animation: bigrod-3 3s cubic-bezier(.65,0,.35,1) infinite; }
@keyframes bigrod-1 {
  0%, 100% { transform: translateX(-90px); }
  45%, 55% { transform: translateX(0); }
}
@keyframes bigrod-2 {
  0%, 100% { transform: translateX(-90px); }
  50%, 60% { transform: translateX(0); }
}
@keyframes bigrod-3 {
  0%, 100% { transform: translateX(-90px); }
  55%, 65% { transform: translateX(0); }
}

/* === Valve scene === */
.coil-pulse { animation: coil-pulse 2s ease-in-out infinite; }
@keyframes coil-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.valve-spool-1 { animation: valve-spool 2s ease-in-out infinite; }
.valve-spool-2 { animation: valve-spool 2s ease-in-out infinite -0.7s; }
.valve-spool-3 { animation: valve-spool 2s ease-in-out infinite -1.4s; }
@keyframes valve-spool {
  0%, 100% { transform: translateX(-12px); }
  50% { transform: translateX(12px); }
}

/* === Fittings scene === */
.flow-1 { stroke-dasharray: 4 8; animation: flow-1 1.2s linear infinite; }
.flow-2 { stroke-dasharray: 4 8; animation: flow-1 1.6s linear infinite; }
.flow-3 { stroke-dasharray: 4 8; animation: flow-1 1.0s linear infinite; }
@keyframes flow-1 {
  to { stroke-dashoffset: -24; }
}

/* particle drifts */
.drift-1 { animation: drift-1 8s linear infinite; }
.drift-2 { animation: drift-1 12s linear infinite -3s; }
.drift-3 { animation: drift-1 10s linear infinite -6s; }
@keyframes drift-1 {
  0% { transform: translate(0,0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translate(40px, -30px); opacity: 0; }
}

/* hero rig wiggle */
.wiggle { animation: wiggle 0.1s linear infinite; }
@keyframes wiggle {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(0.3px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-rig { display: none; }
  .scene-product .scene-content { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-head { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .scene-content, .hero-content { padding-left: 24px; padding-right: 24px; }
  .nav-phone { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
}


/* ============ INDUSTRIAL GRADIENT (top dark → bottom light) ============ */
.hero {
  background:
    radial-gradient(ellipse at 75% 40%, rgba(196,30,30,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #050506 0%, #08080a 100%) !important;
}
.marquee { border-top-color: #6a0f0f; border-bottom-color: #6a0f0f; }

.scene-brands {
  background: linear-gradient(180deg, #08080a 0%, #0e0e12 100%) !important;
}
#compressors {
  background: linear-gradient(180deg, #0e0e12 0%, #15151a 100%) !important;
}
#compressors .scene-product-stage,
#compressors .scene-product-text { color: inherit; }

#cylinders {
  background: linear-gradient(180deg, #15151a 0%, #1e1e24 100%) !important;
}
#valves {
  background: linear-gradient(180deg, #1e1e24 0%, #28282f 100%) !important;
}
#fittings {
  background: linear-gradient(180deg, #28282f 0%, #38383f 100%) !important;
}

/* ============ ORDER COUNTER SECTION ============ */
.order-counter-section {
  background: linear-gradient(180deg, #38383f 0%, #5a5a60 100%) !important;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid #4a4a52;
  color: #f5f5f7;
}
.oc-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.oc-inner {
  position: relative; z-index: 2;
  max-width: 1480px; margin: 0 auto;
  padding: 140px 64px 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px 80px;
}
.oc-head { grid-column: 1; grid-row: 1; max-width: 540px; }
.oc-head .eyebrow { color: #ff8e8e; margin-bottom: 28px; }
.oc-head .eyebrow-dot { background: #ff5e5e; box-shadow: 0 0 10px #ff5e5e; }
.oc-head .eyebrow-num { color: rgba(255,255,255,0.5); }
.oc-h {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 700; line-height: 0.94;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.oc-h em {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  color: #ff5e5e;
}
.oc-lead {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.oc-counter {
  grid-column: 2; grid-row: 1;
  padding: 32px 36px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #C41E1E;
  display: flex; flex-direction: column; gap: 14px;
  align-self: start;
}
.oc-counter-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.oc-counter-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  text-shadow: 0 0 40px rgba(196,30,30,0.25);
}
.oc-counter-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: #ff8e8e;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.oc-counter-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5e5e; animation: blink 1.4s infinite;
  box-shadow: 0 0 10px #ff5e5e;
}

.oc-feed {
  grid-column: 1 / span 2; grid-row: 2;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.oc-feed-head, .oc-feed-row {
  display: grid;
  grid-template-columns: 130px 1fr 240px 80px;
  gap: 24px;
  padding: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.oc-feed-head {
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 700;
}
.oc-feed-row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: opacity 0.6s, background 0.3s;
  color: rgba(255,255,255,0.85);
}
.oc-feed-row:hover { background: rgba(255,255,255,0.03); }
.oc-feed-row:last-child { border-bottom: none; }
.oc-feed-row:first-child { color: #fff; animation: oc-flash 1.2s ease-out; }
@keyframes oc-flash {
  0% { background: rgba(196,30,30,0.25); }
  100% { background: transparent; }
}
.oc-feed-id { color: #ff8e8e; font-weight: 700; }
.oc-feed-item { color: #fff; }
.oc-feed-loc { color: rgba(255,255,255,0.6); }
.oc-feed-t { color: rgba(255,255,255,0.55); text-align: right; }

/* ============ LIGHTER WHY US ============ */
.why {
  background: linear-gradient(180deg, #5a5a60 0%, #8e8e94 100%) !important;
  color: #fff;
}
.why .why-bg-text {
  -webkit-text-stroke: 1px rgba(255,255,255,0.06) !important;
}
.why .h-display { color: #fff !important; }
.why .h-display em { color: #C41E1E !important; }
.why .why-head-sub { color: rgba(255,255,255,0.78) !important; }
.why .why-cell {
  background: rgba(0,0,0,0.22) !important;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.why .why-cell:hover { background: rgba(0,0,0,0.35) !important; }
.why .why-num { color: #fff !important; }
.why .why-h { color: #fff !important; }
.why .why-p { color: rgba(255,255,255,0.78) !important; }
.why .why-icon { border-color: rgba(255,255,255,0.18) !important; }
.why .eyebrow { color: #fff !important; }
.why .eyebrow-dot { box-shadow: 0 0 10px #fff !important; }

/* ============ FINAL CTA — slight border at top so it cuts cleanly ============ */
.final-cta { border-top: 1px solid #8e8e94; }

/* ============ LIGHT FOOTER (blends into white WooCommerce shop) ============ */
.footer {
  background: linear-gradient(180deg, #c0c0c4 0%, #ececee 100%) !important;
  color: #2a2a32 !important;
  border-top-color: #aaaab0 !important;
}
.footer .footer-h { color: #6a6a72 !important; }
.footer .footer-col a { color: #2a2a32 !important; }
.footer .footer-col a:hover { color: #C41E1E !important; }
.footer .footer-tag { color: #4a4a52 !important; }
.footer .footer-meta,
.footer .fc-row-text { color: #2a2a32 !important; }
.footer .fc-row-text strong { color: #0a0a0b !important; }
.footer .fc-row svg { color: #6a6a72; opacity: 0.7; }
.footer .footer-bottom {
  border-top-color: #aaaab0 !important;
  color: #6a6a72 !important;
}
.footer .footer-live { color: #C41E1E !important; }
.footer .footer-brand .CaptivairLogo,
.footer svg { filter: none; }

/* Inverse logo in light footer */
.footer .nav-logo svg text,
.footer svg[aria-label="Captivair Pneumatics"] text {
  fill: #0a0a0b !important;
}
.footer svg[aria-label="Captivair Pneumatics"] text + text + circle {
  fill: #C41E1E !important;
}

/* Order counter responsive */
@media (max-width: 900px) {
  .oc-inner { grid-template-columns: 1fr; padding: 100px 24px 80px; gap: 32px; }
  .oc-counter { grid-column: 1; grid-row: auto; }
  .oc-feed { grid-column: 1; grid-row: auto; overflow-x: auto; }
  .oc-feed-head, .oc-feed-row {
    grid-template-columns: 110px 1fr 90px;
    font-size: 11px; gap: 14px;
  }
  .oc-feed-loc { display: none; }
}


/* ===== STATS COUNTER (replaces order feed) ===== */
.oc-inner-stats {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 60px !important;
}
.oc-head-stats { grid-column: 1 !important; max-width: 720px; }
.oc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.oc-stat {
  background: rgba(0,0,0,0.45);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.oc-stat:hover {
  background: rgba(0,0,0,0.55);
  border-top-color: #C41E1E;
}
.oc-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  text-shadow: 0 0 40px rgba(196,30,30,0.25);
  display: flex; align-items: baseline; gap: 4px;
}
.oc-stat-suffix {
  font-size: 0.55em;
  color: #C41E1E;
  font-weight: 600;
}
.oc-stat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.oc-stat-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
/* ============ EMAIL POPUP ============ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  max-width: 440px; width: 100%;
  padding: 48px 44px 44px;
  animation: slideUp 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  transition: color 0.2s;
}
.popup-close:hover { color: var(--fg); }
.popup .eyebrow { margin-bottom: 20px; }
.popup-h {
  font-size: 32px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.1;
  color: var(--fg); margin-bottom: 12px;
}
.popup-h em { font-style: italic; color: var(--accent); }
.popup-p {
  font-size: 14px; line-height: 1.6;
  color: var(--fg-2); margin-bottom: 28px;
}
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-input {
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--fg); font-family: inherit; font-size: 15px;
  padding: 14px 16px; outline: none;
  transition: border-color 0.2s;
}
.popup-input:focus { border-color: var(--accent); }
.popup-input::placeholder { color: var(--fg-3); }
.popup-submit {
  background: var(--accent); color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px;
  transition: background 0.2s;
}
.popup-submit:hover { background: #a01818; }
.popup-thanks { text-align: center; padding: 12px 0; }
.popup-thanks .eyebrow { justify-content: center; }
.popup-thanks .popup-h { font-size: 28px; }
.popup-thanks .popup-p { margin-bottom: 0; }

@media (max-width: 900px) {
  .oc-stats { grid-template-columns: 1fr; }
  .oc-stat { padding: 32px 28px; }
}
