/* ══════════════════════════════════════════════════════════════════
   Dash Cam — Premium Landing Page CSS
   Inurum Technologies
══════════════════════════════════════════════════════════════════ */

/* ── PERFORMANCE: promote heavy animated elements to GPU layers ── */
#hero-img,
#phone-mockup,
#exploded-img,
#buy-product-img,
.cinematic-img,
.scenario-img {
  will-change: transform;
  transform: translateZ(0);
}

.hero-particles {
  will-change: contents;
}

.nv-comparison {
  contain: layout paint;
}

.section-features,
.section-technology {
  contain: layout;
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #080c14;
  --dark2: #0d1420;
  --dark3: #111827;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --blue: #0071e3;
  --blue-bright: #00a8ff;
  --cyan: #00e5c5;
  --silver: #c8cdd4;
  --graphite: #1c1c1e;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
}

/* ── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25);
}

.btn-primary.large {
  font-size: 17px;
  padding: 18px 42px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.btn-ghost.large {
  font-size: 17px;
  padding: 18px 42px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--blue-bright);
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-text:hover {
  opacity: 0.7;
}

.play-icon {
  font-size: 12px;
}

/* ── NAV ────────────────────────────────────────────────────────── */
.navbar-local-unused {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar-local-unused.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner-local-unused {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo-local-unused {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-brand-local-unused {
  color: var(--white);
}

.logo-sep-local-unused {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.logo-product-local-unused {
  color: var(--blue-bright);
}

.nav-links-local-unused {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links-local-unused a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links-local-unused a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links-local-unused a.nav-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions-local-unused {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.btn-buy-nav-local-unused {
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy-nav-local-unused:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hamburger-local-unused {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger-local-unused span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

.nav-mobile-local-unused {
  display: none;
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile-local-unused ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-local-unused a {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-local-unused .mobile-cta {
  color: var(--blue-bright);
  font-weight: 600;
  border-bottom: none;
}

/* ── SECTION SHARED ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}

.section-eyebrow.light {
  color: var(--cyan);
}

.section-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
}

.section-headline.light {
  color: var(--white);
}

.section-headline em {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}

.section-headline.light em {
  color: var(--cyan);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 560px;
  margin-top: 20px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.55);
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(0, 113, 227, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 229, 197, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #000c1a 0%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
}

.hero-headline .accent-word {
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 168, 255, 0.8);
  text-stroke: 2px rgba(0, 168, 255, 0.8);
}

.hero-tagline {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  opacity: 0;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 780px;
  z-index: 1;
  opacity: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 100px rgba(0, 113, 227, 0.4));
}

.hero-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(0, 113, 227, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── PHILOSOPHY ─────────────────────────────────────────────────── */
.section-philosophy {
  background: var(--white);
  padding: 140px 0;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
}

.philosophy-header .section-headline {
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.philosophy-block {
  text-align: center;
  padding: 48px 32px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}

.philosophy-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.philosophy-icon {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 24px;
}

.philosophy-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.philosophy-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.philosophy-statement {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 100%);
  border-radius: 32px;
}

.philosophy-statement blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.philosophy-statement cite {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.04em;
  font-style: normal;
}

/* ── FEATURES ───────────────────────────────────────────────────── */
.section-features {
  background: var(--dark);
  padding: 140px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 100px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  align-items: start;
  /* Use transform (compositor) not padding for hover — no reflow */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.feature-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-number {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  padding-top: 8px;
}

.feature-content {
  max-width: 800px;
}

.feature-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(0, 168, 255, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 168, 255, 0.2);
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.feature-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 680px;
}

.feature-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}

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

.fstat-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.fstat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CINEMATIC ──────────────────────────────────────────────────── */
.section-cinematic {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cinematic-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cinematic-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.7) 100%);
}

.cinematic-text {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 0 80px;
  max-width: 600px;
}

.cinematic-headline {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

.cinematic-headline em {
  font-style: italic;
  color: var(--cyan);
}

.cinematic-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
}

/* ── NIGHT VISION ───────────────────────────────────────────────── */
.section-nightvision {
  background: var(--dark2);
  padding: 140px 0;
}

.nv-header {
  text-align: center;
  margin-bottom: 72px;
}

.nv-header .section-subtitle {
  margin: 20px auto 0;
  text-align: center;
}

.nv-comparison-wrap {
  max-width: 900px;
  margin: 0 auto 80px;
}

.nv-comparison {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: ew-resize;
  aspect-ratio: 16/9;
  user-select: none;
}

.nv-side {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.nv-after-side {
  left: 0;
  right: 0;
}

.nv-before-side {
  left: 0;
  right: 0;
  clip-path: inset(0 0 0 50%);
}

.nv-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.nv-before-side img {
  position: absolute;
  left: 0;
  top: 0;
}

.nv-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  filter: brightness(0.18) contrast(0.3) saturate(0);
}

.nv-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 6px;
}

.nv-label.right {
  left: auto;
  right: 16px;
}

.nv-handle-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 40px;
  pointer-events: none;
}

.nv-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
}

.nv-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 11;
  pointer-events: none;
}

.nv-drag-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.nv-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nv-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.nv-tech-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 197, 0.3);
  transform: translateY(-4px);
}

.nv-tech-icon {
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 20px;
}

.nv-tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nv-tech-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* ── TECHNOLOGY ─────────────────────────────────────────────────── */
.section-technology {
  background: var(--white);
  padding: 140px 0;
}

.tech-header {
  text-align: center;
  margin-bottom: 72px;
}

.tech-header .section-subtitle {
  margin: 20px auto 0;
  text-align: center;
}

.tech-exploded-wrap {
  max-width: 900px;
  margin: 0 auto 80px;
  background: #f5f5f7;
  border-radius: 32px;
  padding: 16px;
  overflow: hidden;
}

.tech-exploded-img {
  width: 100%;
  border-radius: 24px;
}

.tech-components-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.tech-comp {
  padding: 28px;
  background: #f5f5f7;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tech-comp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.tc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color, #00b4ff);
  margin-bottom: 16px;
  box-shadow: 0 0 12px var(--color, #00b4ff);
}

.tech-comp h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.tech-comp p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* ── DRIVING ────────────────────────────────────────────────────── */
.section-driving {
  background: var(--dark);
  padding: 140px 0;
}

.driving-header {
  text-align: center;
  margin-bottom: 72px;
}

.driving-scenarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scenario-card:hover {
  transform: scale(1.02);
}

.scenario-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.scenario-card:hover .scenario-img {
  transform: scale(1.06);
}

.scenario-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.scenario-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 197, 0.1);
  border: 1px solid rgba(0, 229, 197, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.scenario-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.scenario-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.scenario-text-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.st-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.st-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.st-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 18px;
}

.st-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.st-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ── AI FEATURES ────────────────────────────────────────────────── */
.section-ai {
  background: var(--graphite);
  padding: 140px 0;
}

.ai-header {
  text-align: center;
  margin-bottom: 72px;
}

.ai-header .section-subtitle {
  margin: 20px auto 0;
  text-align: center;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.ai-card:hover {
  border-color: rgba(0, 168, 255, 0.4);
  transform: translateY(-4px);
}

.ai-card-wide {
  grid-column: 1 / -1;
}

.ai-card-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.ai-icon-wrap {
  flex-shrink: 0;
}

.ai-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 113, 227, 0.15);
  border: 1px solid rgba(0, 168, 255, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-bright);
}

.ai-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.ai-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.ai-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), transparent);
}

.ai-card-accent.right {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, var(--blue-bright), transparent);
}

/* ── APP SECTION ────────────────────────────────────────────────── */
.section-app {
  background: var(--white);
  padding: 140px 0;
}

.app-header {
  text-align: center;
  margin-bottom: 80px;
}

.app-header .section-subtitle {
  margin: 20px auto 0;
  text-align: center;
}

.app-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-feat {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.af-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.af-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.af-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* Phone Mockup */
.app-mockup-area {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), 0 0 0 1.5px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  background: #0a0a1a;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-ui {
  display: flex;
  flex-direction: column;
}

.app-ui-header {
  padding: 44px 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a1a;
}

.app-ui-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.app-ui-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.app-ui-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.app-ui-video {
  position: relative;
}

.app-live-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 0, 0, 0.9);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.app-ui-stats {
  display: flex;
  justify-content: space-around;
  padding: 14px 12px;
  background: #0d0d1f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.app-stat-v {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.app-stat-l {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.app-ui-trips {
  padding: 8px 16px;
}

.trip-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trip-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.trip-dist {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-bright);
}

.app-ui-nav {
  display: flex;
  justify-content: space-around;
  padding: 14px 20px 20px;
  background: #0a0a1a;
  font-size: 18px;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.3), transparent 70%);
  filter: blur(30px);
}

/* ── SPECS ──────────────────────────────────────────────────────── */
.section-specs {
  background: var(--dark);
  padding: 140px 0;
}

.specs-header {
  text-align: center;
  margin-bottom: 72px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  will-change: transform;
}

/* ── SPEC CARD HOVER GLOW ────────────────────────────────────── */
.spec-card:hover {
  border-color: rgba(0, 168, 255, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.spec-card.spec-glow {
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.2), inset 0 0 0 1px rgba(0, 168, 255, 0.4);
}

.spec-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.spec-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.spec-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ── COMPARE ────────────────────────────────────────────────────── */
.section-compare {
  background: var(--white);
  padding: 140px 0;
}

.compare-header {
  text-align: center;
  margin-bottom: 72px;
}

.compare-header .section-subtitle {
  margin: 20px auto 0;
  text-align: center;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.1);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.compare-table thead th {
  padding: 24px 28px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.th-feature {
  color: #888;
  width: 40%;
}

.th-ds {
  background: linear-gradient(135deg, #0071e3 0%, #00b4ff 100%);
  color: var(--white);
  text-align: center;
  border-radius: 0;
  width: 30%;
}

.th-ds-label {
  font-size: 16px;
  font-weight: 800;
}

.th-cheap {
  color: #bbb;
  text-align: center;
  width: 30%;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.15s;
}

.compare-table tbody tr:hover {
  background: #f9f9fb;
}

.compare-table tbody td {
  padding: 18px 28px;
  font-size: 15px;
}

.compare-table tbody td:first-child {
  color: #333;
  font-weight: 500;
}

.ds-val {
  text-align: center;
  color: #0071e3;
  font-weight: 600;
}

.cheap-val {
  text-align: center;
  color: #bbb;
}

.ds-val:has(✓) {
  color: #00a650;
}

/* ── SAFETY ─────────────────────────────────────────────────────── */
.section-safety {
  background: var(--dark3);
  padding: 140px 0;
}

.safety-header {
  text-align: center;
  margin-bottom: 72px;
}

.safety-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 72px;
}

.safety-stat {
  text-align: center;
}

.stat-counter {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.safety-certs {
  text-align: center;
}

.certs-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cert-badge {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 100px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.section-testimonials {
  background: var(--white);
  padding: 140px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.tcard {
  background: #f5f5f7;
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* CSS hover only — no JS mousemove tilt */
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.tcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.tcard-rating {
  font-size: 16px;
  color: #f5a623;
  letter-spacing: 2px;
}

.tcard blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.tcard-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tcard-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.tcard-car {
  font-size: 12px;
  color: var(--gray);
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.section-faq {
  background: var(--dark2);
  padding: 140px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 72px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--blue-bright);
}

.faq-q[aria-expanded="true"] {
  color: var(--blue-bright);
}

.faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
  color: var(--blue-bright);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}

.faq-a p {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* ── BUY / CTA ──────────────────────────────────────────────────── */
.section-buy {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.buy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
}

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

.buy-image-wrap {
  position: relative;
}

.buy-product-img {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 113, 227, 0.3));
}

.buy-img-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(0, 113, 227, 0.25), transparent);
  filter: blur(40px);
}

.buy-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.buy-headline em {
  color: var(--cyan);
  font-style: italic;
}

.buy-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
  line-height: 1.5;
}

.buy-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.buy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.buy-card.selected {
  border-color: var(--blue);
  background: rgba(0, 113, 227, 0.1);
}

.buy-card-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.buy-card-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.buy-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.buy-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.buy-footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer-local-unused {
  background: #050810;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.footer-logo-accent {
  color: var(--blue-bright);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-region {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────── */
/* Initial hidden states */
.reveal-text {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
}

/* Visible state — added by IntersectionObserver */
.reveal-text.is-visible,
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-fade.is-visible {
  opacity: 1;
  transition: opacity 0.9s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

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

  .buy-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .buy-ctas {
    align-items: center;
  }

  .buy-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-philosophy,
  .section-features,
  .section-nightvision,
  .section-technology,
  .section-driving,
  .section-ai,
  .section-app,
  .section-specs,
  .section-compare,
  .section-safety,
  .section-testimonials,
  .section-faq,
  .section-buy {
    padding: 80px 0;
  }

  .nav-links-local-unused {
    display: none;
  }

  .hamburger-local-unused {
    display: flex;
  }

  .navbar-local-unused.mobile-open .nav-mobile-local-unused {
    display: block;
    background: rgba(0, 0, 0, 0.95);
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: auto;
    transform: none;
    margin-top: 40px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
  }

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

  .feature-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-number {
    font-size: 40px;
  }

  .feature-content h3 {
    font-size: 26px;
  }

  .cinematic-text {
    padding: 0 24px;
    text-align: center;
  }

  .cinematic-body {
    text-align: center;
  }

  .driving-scenarios {
    grid-template-columns: 1fr;
  }

  .scenario-text-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ai-card-wide {
    grid-column: 1;
  }

  .ai-card-inner {
    flex-direction: column;
  }

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

  .phone-mockup {
    width: 240px;
  }

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

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

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

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

  .buy-options {
    grid-template-columns: 1fr;
  }

  .philosophy-statement {
    padding: 40px 28px;
  }

  .nv-tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-components-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

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

  .scenario-text-grid {
    grid-template-columns: 1fr;
  }

  .safety-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-stats {
    gap: 20px;
  }
}

.camera-text-mask {
  position: absolute;
  left: 68.65%;
  top: 53.22%;
  width: 6.35%;
  height: 3.42%;
  background: linear-gradient(to right, rgb(143, 152, 154), rgb(83, 127, 163));
  pointer-events: none;
  z-index: 10;
}