/* ============================================
   DVX VISION — BRAND WEBSITE
   Dark tech aesthetic · DJI meets Rabbit R1
   ============================================ */

:root {
  --bg: #050508;
  --bg-2: #080810;
  --bg-3: #0d0d1a;
  --green: #CB2C30;
  --green-dim: rgba(203,44,48,0.15);
  --green-glow: rgba(203,44,48,0.4);
  --blue: #0066ff;
  --blue-dim: rgba(0,102,255,0.15);
  --amber: #ff8c00;
  --amber-dim: rgba(255,140,0,0.15);
  --white: #ffffff;
  --gray: #a0a0b0;
  --gray-dim: #3a3a4a;
  --border: rgba(255,255,255,0.08);
  --border-green: rgba(203,44,48,0.25);
  --font-head: 'Anton', sans-serif;
  --font-body: 'Space Grotesk', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: #CB2C30; color: #000; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #CB2C30; border-radius: 2px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1px;
}

.logo-dvx {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 24px;
  letter-spacing: 2px;
}

.logo-vision {
  font-family: var(--font-head);
  color: #CB2C30;
  font-size: 24px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-shop {
  background: #CB2C30 !important;
  color: #000 !important;
  font-weight: 700;
  padding: 8px 20px;
}

.nav-shop:hover {
  background: #00cc6a !important;
  color: #000 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.nav-mobile-link:hover { color: #CB2C30; }
.nav-mobile-link:last-child { border-bottom: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: #CB2C30;
  color: #000;
}

.btn-primary:hover {
  background: #00e678;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(203,44,48,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: #CB2C30;
  color: #CB2C30;
  background: rgba(203,44,48,0.1);
}

.btn-card {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}

.btn-card:hover {
  background: rgba(203,44,48,0.1);
  border-color: #CB2C30;
  color: #CB2C30;
}

.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203,44,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,44,48,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(203,44,48,0.1);
  border: 1px solid rgba(203,44,48,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #CB2C30;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #CB2C30;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-line { display: block; }

.hero-line-accent {
  color: #CB2C30;
  text-shadow: 0 0 80px rgba(203,44,48,0.4);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO PRODUCT 3D */
.hero-product-3d {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(480px, 45vw);
  height: min(480px, 45vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(203,44,48,0.12) 0%, transparent 65%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.product-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbit-spin linear infinite;
}

.ring-1 {
  width: 110%; height: 110%;
  border-color: rgba(203,44,48,0.12);
  animation-duration: 20s;
}
.ring-2 {
  width: 130%; height: 130%;
  border-color: rgba(0,102,255,0.08);
  animation-duration: 30s;
  animation-direction: reverse;
}
.ring-3 {
  width: 150%; height: 150%;
  border-color: rgba(203,44,48,0.05);
  animation-duration: 45s;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.product-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(8deg); }
  75% { transform: translateY(8px) rotateY(-5deg); }
}

.bino-body {
  display: flex;
  align-items: center;
  gap: 0;
  perspective: 800px;
  filter: drop-shadow(0 20px 60px rgba(203,44,48,0.2));
}

.bino-left, .bino-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 50%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(203,44,48,0.15);
  position: relative;
  overflow: hidden;
}

.bino-left::before, .bino-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CB2C30, transparent);
  opacity: 0.4;
}

.lens {
  width: min(100px, 20vw);
  height: min(100px, 20vw);
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0a1a, #151530);
  border: 3px solid rgba(203,44,48,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    inset 0 0 30px rgba(203,44,48,0.05),
    0 0 20px rgba(203,44,48,0.1);
}

.lens-inner {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #0d2040, #020210);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: lens-glow 3s ease-in-out infinite;
}

@keyframes lens-glow {
  0%, 100% { box-shadow: inset 0 0 20px rgba(203,44,48,0.2), 0 0 10px rgba(203,44,48,0.1); }
  50% { box-shadow: inset 0 0 30px rgba(203,44,48,0.4), 0 0 20px rgba(203,44,48,0.3); }
}

.lens-reticle {
  width: 40%;
  height: 40%;
  border: 1px solid rgba(203,44,48,0.6);
  border-radius: 50%;
  position: relative;
}

.lens-reticle::before, .lens-reticle::after {
  content: '';
  position: absolute;
  background: rgba(203,44,48,0.6);
}

.lens-reticle::before {
  width: 1px;
  height: 200%;
  left: 50%;
  top: -50%;
}

.lens-reticle::after {
  height: 1px;
  width: 200%;
  top: 50%;
  left: -50%;
}

.bino-grip {
  width: 60%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(203,44,48,0.1) 0,
    rgba(203,44,48,0.1) 2px,
    transparent 2px,
    transparent 5px
  );
  border-radius: 4px;
}

.bino-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  gap: 8px;
}

.bridge-text {
  font-family: var(--font-head);
  font-size: 14px;
  color: #CB2C30;
  letter-spacing: 4px;
  writing-mode: vertical-lr;
}

.bridge-dot {
  width: 6px;
  height: 6px;
  background: #CB2C30;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.bino-display {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,10,5,0.9);
  border: 1px solid rgba(203,44,48,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 180px;
}

.display-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(203,44,48,0.02) 2px,
    rgba(203,44,48,0.02) 4px
  );
  border-radius: 8px;
  pointer-events: none;
}

.display-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #CB2C30;
}

.display-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #CB2C30, transparent);
  animation: scan-bar 2s ease-in-out infinite;
}

@keyframes scan-bar {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}

.product-shadow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(203,44,48,0.15), transparent 70%);
  filter: blur(10px);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #CB2C30, transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { height: 40px; opacity: 1; }
  50% { height: 20px; opacity: 0.5; }
}

/* ============================================
   PRODUCT STRIP / TICKER
   ============================================ */
.product-strip {
  background: #CB2C30;
  overflow: hidden;
  padding: 14px 0;
}

.strip-ticker {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
}

.ticker-dot {
  opacity: 0.5;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #CB2C30;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CB2C30, transparent);
  opacity: 0.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(203,44,48,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: rgba(203,44,48,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(203,44,48,0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #CB2C30;
  background: rgba(203,44,48,0.1);
  border: 1px solid rgba(203,44,48,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SPOTLIGHT
   ============================================ */
.spotlight {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
}

.spotlight-glow {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,102,255,0.06), transparent 65%);
}

.spotlight-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.spotlight-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.spotlight-specs {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spotlight-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-label {
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.spec-val {
  color: var(--white);
  font-weight: 600;
}

.spotlight-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SPOTLIGHT VISUAL — X3 */
.spotlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.x3-visual {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x3-halo {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(0,102,255,0.08) 0%, transparent 65%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.x3-body {
  position: relative;
  background: linear-gradient(145deg, #0f1020, #080812);
  border: 1px solid rgba(0,102,255,0.25);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: float 7s ease-in-out infinite;
  box-shadow:
    0 0 60px rgba(0,102,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  min-width: 280px;
}

.x3-lens-system {
  display: flex;
  gap: 24px;
  align-items: center;
}

.x3-lens {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(0,102,255,0.4);
  background: radial-gradient(circle at 35% 35%, #0a1540, #020210);
  box-shadow: 0 0 30px rgba(0,102,255,0.15);
}

.x3-lens-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,102,255,0.15);
  animation: orbit-spin 8s linear infinite;
}

.x3-l2 .x3-lens-ring { animation-direction: reverse; animation-duration: 12s; }

.x3-lens-core {
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,102,255,0.3), rgba(0,5,20,0.9));
  overflow: hidden;
  position: relative;
}

.scanning-line {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(203,44,48,0.8), transparent);
  animation: scan-vertical 3s ease-in-out infinite;
}

.scanning-line.delay { animation-delay: 1.5s; }

@keyframes scan-vertical {
  0% { top: -5%; }
  100% { top: 105%; }
}

.x3-info-panel {
  width: 100%;
  background: rgba(0,5,15,0.8);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.pl-label {
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
}

.pl-val { color: var(--white); font-weight: 600; font-family: monospace; }

.pl-green { color: #CB2C30; }

.x3-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 20px;
  color: rgba(0,102,255,0.6);
  letter-spacing: 2px;
}

.x3-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #CB2C30;
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.p1 { top: 10%; left: 10%; animation-delay: 0s; }
.p2 { top: 20%; right: 8%; animation-delay: 1s; }
.p3 { bottom: 15%; left: 5%; animation-delay: 2s; }
.p4 { bottom: 25%; right: 12%; animation-delay: 0.5s; }

@keyframes particle-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(10px, -15px); opacity: 0.3; }
}

/* ============================================
   PRODUCT LINEUP
   ============================================ */
.lineup {
  padding: 120px 0;
  background: var(--bg);
}

.lineup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lineup-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lineup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203,44,48,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(203,44,48,0.05);
}

.card-featured {
  border-color: rgba(203,44,48,0.2);
  background: rgba(203,44,48,0.03);
}

.card-featured:hover {
  border-color: #CB2C30;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(203,44,48,0.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #CB2C30;
  background: rgba(203,44,48,0.1);
  border: 1px solid rgba(203,44,48,0.3);
  border-radius: 100px;
  padding: 4px 10px;
}

.card-badge-hot {
  color: #ff8c00;
  background: rgba(255,140,0,0.1);
  border-color: rgba(255,140,0,0.3);
}

.card-badge-thermal {
  color: #ff4444;
  background: rgba(255,68,68,0.1);
  border-color: rgba(255,68,68,0.3);
}

.card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  position: relative;
}

/* Mini binoculars */
.mini-bino {
  display: flex;
  align-items: center;
  gap: 4px;
  filter: drop-shadow(0 8px 24px rgba(203,44,48,0.15));
}

.mb-lens {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1020, #05080f);
  border: 2px solid rgba(203,44,48,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mb-iris {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,50,30,0.8), rgba(0,5,10,0.95));
  border: 1px solid rgba(203,44,48,0.2);
}

.ai-glow {
  background: radial-gradient(circle at 40% 40%, rgba(0,102,255,0.4), rgba(0,5,20,0.95));
  border-color: rgba(0,102,255,0.4);
  animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,102,255,0.2); }
  50% { box-shadow: 0 0 20px rgba(0,102,255,0.5); }
}

.mb-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.mb-bridge span {
  font-family: var(--font-head);
  font-size: 11px;
  color: #CB2C30;
  letter-spacing: 2px;
  writing-mode: vertical-lr;
}

.ai-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  background: #CB2C30;
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* Scope visual */
.scope-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scope-body {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scope-lens {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a0a0a, #0d0505);
  border: 2px solid rgba(255,68,68,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,100,100,0.5);
  box-shadow: 0 0 20px rgba(255,68,68,0.1);
}

.scope-reticle {
  font-size: 24px;
  color: rgba(255,100,100,0.6);
  font-weight: 300;
}

.scope-rail {
  width: 60px;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,68,68,0.2) 0,
    rgba(255,68,68,0.2) 3px,
    transparent 3px,
    transparent 7px
  );
  border-radius: 2px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.card-name {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: -0.5px;
}

.card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
}

.price-label {
  font-size: 12px;
  color: var(--gray);
}

/* ============================================
   TECH STRIP
   ============================================ */
.tech-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
}

.ts-icon {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.ts-icon svg { width: 100%; height: 100%; }

.ts-val {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: -0.5px;
}

.ts-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ts-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   PRESS / SOCIAL PROOF
   ============================================ */
.press {
  padding: 120px 0;
  background: var(--bg-2);
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}

.press-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  transition: all 0.3s;
}

.press-logo:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.quote-card:hover {
  border-color: rgba(203,44,48,0.3);
  transform: translateY(-4px);
}

.quote-stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.quote-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-source {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
}

.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-text p {
  font-size: 18px;
  color: var(--gray);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: #CB2C30;
  color: #CB2C30;
  background: rgba(203,44,48,0.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-col a:hover { color: #CB2C30; }

.footer-bottom {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   PAGE HEADERS (Inner Pages)
   ============================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CB2C30, transparent);
  opacity: 0.2;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203,44,48,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,44,48,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black, transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: -1px;
  margin: 16px 0 24px;
}

.page-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-product-3d {
    width: 360px;
    height: 360px;
    right: 2%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-inner {
    gap: 48px;
  }

  .lineup-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }

  .hero-product-3d {
    display: none;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spotlight-visual { display: none; }

  .lineup-cards {
    grid-template-columns: 1fr;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .ts-item { padding: 12px 20px; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions { justify-content: center; }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .hero-ctas { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .ts-item { padding: 10px 16px; }
}

/* ============================================
   REAL PRODUCT IMAGES
   ============================================ */

/* Hero product image */
.hero-product-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(203,44,48,0.25));
  border-radius: 12px;
}

/* Lineup card images */
.lineup-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
}
.lineup-product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.lineup-card:hover .lineup-product-img {
  transform: scale(1.04);
}

/* Product showcase images */
.showcase-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
}
.showcase-product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 16px 40px rgba(203,44,48,0.2));
}

/* Shop card images */
.shop-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.shop-product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.shop-product-card:hover .shop-product-img {
  transform: scale(1.04);
}

/* Spotlight image */
.spotlight-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.spotlight-product-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 24px 64px rgba(203,44,48,0.3));
}
.spotlight-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  background: #CB2C30;
  color: #000;
  border-radius: 100px;
  padding: 6px 16px;
}

/* ============================================
   PHOTO GALLERY STRIP
   ============================================ */
.photo-gallery {
  padding: 80px 0 0;
  background: var(--bg);
  overflow: hidden;
}

.gallery-strip {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.gallery-strip::before,
.gallery-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.gallery-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: gallery-scroll 40s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex-shrink: 0;
  width: 360px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   3D TERRAIN JOURNEY
   ══════════════════════════════════════════════ */
.terrain-journey {
  position: relative;
  height: 400vh;
  background: #0a0e1a;
}
.terrain-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.terrain-sticky iframe,
.terrain-sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  display: block;
}
.terrain-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 100px rgba(10,14,26,0.85);
  pointer-events: none;
  z-index: 2;
}
.terrain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,8,0.3) 0%, transparent 20%, transparent 75%, rgba(5,5,8,0.6) 100%);
  pointer-events: none;
  z-index: 3;
}
.terrain-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 10;
  max-width: 500px;
}
.terrain-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -2px;
  margin: 12px 0 16px;
}
.terrain-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   NIGHT VISION LENS DEMO
   ══════════════════════════════════════════════ */
.nv-lens-demo {
  position: relative;
  height: 100vh;
  overflow: hidden;
  cursor: none;
  background: #050508;
}
.nv-lens-bg {
  position: absolute;
  inset: 0;
}
.nv-lens-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nv-lens-darkness {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1;
}
.nv-lens-circle {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(203,44,48,0.5);
  box-shadow: 0 0 40px rgba(203,44,48,0.2), inset 0 0 30px rgba(0,255,65,0.05);
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
  /* Crosshair lines */
  background:
    linear-gradient(rgba(203,44,48,0.3), rgba(203,44,48,0.3)) center/1px 100% no-repeat,
    linear-gradient(rgba(203,44,48,0.3), rgba(203,44,48,0.3)) center/100% 1px no-repeat;
}
.nv-lens-circle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(2.2) saturate(1.2) hue-rotate(60deg) contrast(1.1);
}
.nv-lens-demo:hover .nv-lens-circle,
.nv-lens-demo:active .nv-lens-circle {
  opacity: 1;
}
.nv-lens-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}
.nv-lens-text h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.nv-lens-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════
   SPLIT-SCREEN BEFORE/AFTER
   ══════════════════════════════════════════════ */
.split-compare {
  position: relative;
  height: 200vh;
  background: #050508;
}
.split-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
}
.split-side {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.05s linear;
}
.split-dark .split-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.03);
}
.split-light .split-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: brightness(1.6) saturate(1.1) contrast(1.1);
}
.split-light {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.split-label {
  position: absolute;
  bottom: 80px;
  z-index: 5;
  color: #fff;
}
.split-dark .split-label { left: 60px; bottom: 100px; }
.split-light .split-label { right: 60px; bottom: 100px; text-align: right; }
.split-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border-radius: 2px;
}
.split-light .split-label span {
  color: #CB2C30;
  background: rgba(203,44,48,0.15);
}
.split-label h3 {
  font-family: var(--font-head);
  font-size: 42px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  z-index: 10;
  transform: translateX(-50%);
}
.split-divider-line {
  width: 100%;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(203,44,48,0.4);
}

/* ══════════════════════════════════════════════
   NATURE STORIES GRID
   ══════════════════════════════════════════════ */
.nature-stories {
  padding: 120px 0;
  background: var(--bg);
}
.ns-header {
  text-align: center;
  margin-bottom: 60px;
}
.ns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ns-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
  border: 1px solid var(--border);
}
.ns-card:hover { transform: translateY(-6px); border-color: rgba(203,44,48,0.3); }
.ns-card-wide { grid-column: span 2; min-height: 380px; }
.ns-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.55) contrast(1.1);
}
.ns-card:hover img { transform: scale(1.06); filter: brightness(0.65); }
.ns-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, rgba(5,5,8,0.5) 60%, transparent 100%);
  z-index: 2;
}
.ns-card-info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 6px;
}
.ns-card-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ns-grid { grid-template-columns: 1fr; }
  .ns-card-wide { grid-column: span 1; min-height: 260px; }
  .terrain-content { left: 20px; right: 20px; bottom: 40px; }
  .terrain-journey { height: 250vh; }
  .nv-lens-circle { width: 200px; height: 200px; display: none; }
  .nv-lens-demo { height: 60vh; cursor: auto; }
  .nv-lens-darkness { background: rgba(0,0,0,0.6); }
  .nv-lens-text p { display: none; }
  .split-label h3 { font-size: 28px; }
  .split-label span { font-size: 10px; letter-spacing: 3px; }
}

/* ══════════════════════════════════════════════
   PAGE LOADER
   ══════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-inner {
  text-align: center;
}
.page-loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.page-loader-fill {
  height: 100%;
  width: 0%;
  background: #CB2C30;
  transition: width 0.3s;
}

/* Fix hero layout — more breathing room */
.hero-video .hv-content {
  bottom: 100px !important;
  padding-top: 120px;
}

/* Fix award badge images */
.fa-badge img {
  height: 28px;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(0.9);
}

/* ══════════════════════════════════════════════
   TERRAIN SLIDE-IN HEADLINES
   ══════════════════════════════════════════════ */
.terrain-slide {
  position: absolute;
  z-index: 10;
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 72px);
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.terrain-slide-1 {
  top: 30%;
  right: -100%;
  transition: right 1.2s cubic-bezier(0.16,1,0.3,1), opacity 0.8s;
}
.terrain-slide-1.visible {
  right: 5%;
  opacity: 1;
}
.terrain-slide-2 {
  top: 50%;
  left: -100%;
  color: var(--green);
  transition: left 1.2s cubic-bezier(0.16,1,0.3,1), opacity 0.8s;
}
.terrain-slide-2.visible {
  left: 5%;
  opacity: 1;
}
.terrain-slide-3 {
  top: 70%;
  right: -100%;
  font-size: clamp(48px, 7vw, 96px);
  transition: right 1.2s cubic-bezier(0.16,1,0.3,1), opacity 0.8s;
}
.terrain-slide-3.visible {
  right: 10%;
  opacity: 1;
}

/* Fix lens — inner image must match outer exactly */
.nv-lens-circle {
  background: none !important;
}
.nv-lens-circle img {
  position: absolute;
  object-fit: cover;
  filter: brightness(2.5) saturate(1.3) hue-rotate(60deg) contrast(1.1);
  pointer-events: none;
}

@media (max-width: 768px) {
  .terrain-slide { font-size: clamp(24px, 7vw, 40px); }
  .terrain-slide-3 { font-size: clamp(32px, 9vw, 52px); }
}
