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

:root {
  --bg: #050505;
  --surface: #0c0c0c;
  --text: #f0f0f0;
  --text-dim: #555;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.35);
  --hud: rgba(255,255,255,0.45);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(230, 57, 70, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(60, 60, 120, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(20, 20, 30, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ═══════════ BOOT SCREEN ═══════════ */
.boot-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ─── TACHO ARC ─── */
.boot-tacho {
  margin-top: -0.5rem;
}

.tacho-arc-svg {
  width: 140px;
  height: 80px;
}

.tacho-arc-fill {
  animation: tachoFill 2s ease forwards 0.3s;
}

@keyframes tachoFill {
  to { stroke-dashoffset: 0; }
}

.tacho-needle {
  transform-origin: 80px 80px;
  animation: needleSweep 2s ease forwards 0.3s;
}

@keyframes needleSweep {
  0% { transform: rotate(-90deg); }
  60% { transform: rotate(80deg); }
  80% { transform: rotate(60deg); }
  100% { transform: rotate(70deg); }
}

.tacho-label {
  font-family: var(--font-mono);
  font-size: 7px;
  fill: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}

/* ─── HUD TEXT ─── */
.boot-hud {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 260px;
}

.boot-hud-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(5px);
}

.boot-hud-line.hl1 { animation: hudIn 0.3s ease forwards 0.5s; }
.boot-hud-line.hl2 { animation: hudIn 0.3s ease forwards 0.8s; }
.boot-hud-line.hl3 { animation: hudIn 0.3s ease forwards 1.1s; }
.boot-hud-line.hl4 { animation: hudIn 0.3s ease forwards 1.4s; }
.boot-hud-line.hl5 { animation: hudIn 0.3s ease forwards 1.7s; }

@keyframes hudIn {
  to { opacity: 1; transform: translateY(0); }
}

.hud-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.hud-key {
  color: var(--text-dim);
  white-space: nowrap;
}

.hud-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
  margin: 0 0.3rem;
  min-width: 20px;
}

.hud-val {
  color: var(--text);
  white-space: nowrap;
}

.hud-val.accent {
  color: var(--accent);
  font-weight: 700;
}

/* ─── CAR SILHOUETTE ─── */
.boot-car {
  position: absolute;
  bottom: 18%;
  left: -100%;
  animation: carDrive 2.2s ease-in-out forwards 0.6s;
}

.car-svg {
  width: 220px;
  height: 42px;
}

@keyframes carDrive {
  0% { left: -30%; }
  100% { left: 110%; }
}

.car-wheel {
  animation: wheelSpin 0.6s linear infinite;
}

@keyframes wheelSpin {
  to { transform-origin: center; transform: rotate(360deg); }
}

.car-speedline {
  animation: speedFade 0.8s ease infinite alternate;
}

.car-speedline.s2 { animation-delay: 0.2s; }
.car-speedline.s3 { animation-delay: 0.4s; }

@keyframes speedFade {
  from { opacity: 0; }
  to { opacity: 0.2; }
}

/* ─── LOGO ─── */
.boot-logo {
  position: absolute;
  bottom: 6%;
  opacity: 0.3;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(230, 57, 70, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(60, 60, 120, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(10,10,15,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
.hero-nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.hero-brand {
  display: flex;
  align-items: center;
}

.hero-nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.hero-nav-links a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.hero-nav-links a:hover {
  color: var(--accent);
}

.hero-nav-cta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.hero-nav-cta:hover {
  background: #ff4d5a;
  transform: translateY(-1px);
}

/* ─── MAIN GRID ─── */
.hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 3rem 5rem;
  align-items: center;
}

/* ─── LEFT: TEXT + SLIDERS ─── */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 2.5s; }
.hero-title-line:nth-child(2) {
  animation-delay: 2.7s;
  color: var(--text-dim);
}

.hero-title-line.accent {
  color: var(--accent);
}

.hero-title-line.accent, .hero-title-line:first-child {
  color: var(--text);
}

.hero-title-line:nth-child(2) {
  color: var(--text-dim);
}

.hero-title-line.accent {
  color: var(--accent);
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroReveal 0.8s ease forwards 2.9s;
  transform: translateY(20px);
}

.hero-desc .accent {
  color: var(--accent);
  font-weight: 500;
}

/* Controls hint */
.hero-controls-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 0.8s ease forwards 3.1s;
  transform: translateY(15px);
}

.hero-controls-icon {
  flex-shrink: 0;
}

/* Sliders */
.hero-sliders {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  opacity: 0;
  animation: heroReveal 0.8s ease forwards 3.3s;
  transform: translateY(15px);
}

/* ─── RIGHT: PHOTO ─── */
.hero-photo-col {
  position: relative;
  opacity: 0;
  animation: photoSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.8s;
}

@keyframes photoSlideIn {
  from { opacity: 0; transform: translateX(30px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.ls-photo-frame {
  position: relative;
}

.ls-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
  aspect-ratio: 16 / 10;
}

.ls-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.15s ease;
}

.ls-grain {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.ls-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: box-shadow 0.15s ease;
}

.ls-frame-border {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  pointer-events: none;
}

.ls-exif-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.ls-exif-sep {
  color: rgba(255,255,255,0.15);
}

.hero-photo-caption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hero-photo-num {
  color: var(--accent);
  font-weight: 700;
}

/* ─── SLIDERS (shared) ─── */
.ls-slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ls-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ls-slider-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ls-slider-val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  min-width: 55px;
  text-align: right;
}

.ls-track {
  position: relative;
  height: 32px;
  cursor: pointer;
  touch-action: none;
}

.ls-track-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%);
  border-radius: 1px;
}

.ls-track-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  width: 0%;
  transition: width 0.05s;
}

.ls-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: left 0.08s ease-out;
}

.ls-handle-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.ls-handle:hover .ls-handle-dot,
.ls-handle.active .ls-handle-dot {
  transform: scale(1.4);
  box-shadow: 0 0 18px var(--accent-glow);
}

.ls-track-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

/* ─── TACHOMETER ─── */
.tachometer {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 5;
  width: 50px;
  height: 50px;
}

.tacho-svg {
  width: 100%;
  height: 100%;
}

.tacho-fill {
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.1s;
}

.tacho-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.scroll-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ═══════════ FILM REEL STRIP ═══════════ */
.reel {
  padding: 6rem 0 6rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230, 57, 70, 0.02) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 100%, rgba(40, 40, 80, 0.025) 0%, transparent 60%);
  pointer-events: none;
}

.reel-header {
  display: flex;
  justify-content: center;
  padding: 0 3rem;
  margin-bottom: 3rem;
}

.reel-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.reel-track {
  display: flex;
  gap: 2.5rem;
  padding: 0 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 3rem;
}

.reel-track::-webkit-scrollbar { display: none; }

.reel-item {
  flex: 0 0 auto;
  width: 420px;
  scroll-snap-align: start;
}

.reel-frame {
  position: relative;
  background: #111;
  padding: 0.8rem 2.2rem;
  overflow: hidden;
}

.reel-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
  transition: filter 0.4s;
}

.reel-item:hover .reel-frame img {
  filter: contrast(1.1) saturate(1);
}

/* Film borders */
.film-border {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.8rem;
  background: #0a0a0a;
  z-index: 2;
}

.film-left { left: 0; }
.film-right { right: 0; }

/* Film sprocket holes */
.film-holes {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1rem 0;
}

.film-holes-l { left: 0.3rem; }
.film-holes-r { right: 0.3rem; }

.film-holes::before,
.film-holes::after {
  content: '';
  width: 8px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 1px;
}

.film-holes-l::before,
.film-holes-r::before { box-shadow: 0 28px 0 #1a1a1a, 0 56px 0 #1a1a1a, 0 84px 0 #1a1a1a, 0 112px 0 #1a1a1a, 0 140px 0 #1a1a1a, 0 168px 0 #1a1a1a, 0 196px 0 #1a1a1a; }

.reel-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.reel-num {
  color: var(--accent);
  font-weight: 700;
}

.reel-name {
  color: var(--text);
  flex: 1;
  text-transform: uppercase;
}

.reel-date {
  color: var(--text-dim);
}

.reel-more {
  display: flex;
  justify-content: center;
  padding: 2.5rem 3rem 0;
}

.reel-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s, border-color 0.3s;
}

.reel-more-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ═══════════ DASHBOARD CARDS ═══════════ */
.specs {
  position: relative;
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.specs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(230, 57, 70, 0.025) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(40, 40, 80, 0.03) 0%, transparent 55%);
  pointer-events: none;
}


.dash-intro {
  position: relative;
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}

.specs-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.specs-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.accent { color: var(--accent); }

.specs-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ─── DASHBOARD GRID ─── */
.dash-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2%;
}

.dash-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-card:nth-child(1) {
  z-index: 1;
}

.dash-card:nth-child(2) {
  z-index: 2;
}

.dash-card:nth-child(3) {
  z-index: 3;
}

.dash-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Slanted shapes */
.dash-card:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.dash-card:nth-child(2) {
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.dash-card:nth-child(3) {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

/* Blurred photo background */
.dash-card-bg {
  position: absolute;
  inset: 0;
}

.dash-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.45);
  transform: scale(1.05);
  transition: filter 0.5s, transform 0.5s;
}

.dash-card:hover .dash-card-bg img {
  filter: saturate(0.85) brightness(0.5);
  transform: scale(1.1);
}

/* Dark overlay */
.dash-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 60%, rgba(5,5,5,0.95) 100%),
    linear-gradient(135deg, rgba(230,57,70,0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Gauge arc */
.dash-card-gauge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80px;
}

.gauge-arc {
  width: 100%;
  height: auto;
}

.gauge-fill {
  transform-origin: center;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gauge tick marks */
.gauge-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin-top: -4px;
}

.gauge-ticks span {
  display: block;
  width: 1px;
  height: 6px;
  background: rgba(255,255,255,0.15);
}

.gauge-ticks span:nth-child(odd) {
  height: 4px;
  background: rgba(255,255,255,0.08);
}

/* Card content */
.dash-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem 2rem 2.5rem;
}

.dash-num {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--text);
}

.dash-plus {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--accent);
  vertical-align: top;
  line-height: 1.2;
  margin-left: 2px;
}

.dash-unit {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--accent);
  vertical-align: bottom;
  line-height: 1;
  margin-left: 4px;
}

.dash-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

.dash-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.15);
  margin-top: 0.4rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .dash-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 2rem;
  }

  .dash-card {
    height: 320px;
    clip-path: none !important;
  }

  .dash-num {
    font-size: clamp(5rem, 15vw, 7rem);
  }

  .specs {
    padding: 5rem 1.5rem;
  }

  .dash-intro {
    margin-bottom: 3rem;
  }
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  position: relative;
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 4rem;
  text-align: center;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  background: rgba(255,255,255,0.03);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* ═══════════ CTA / WEAPON CHOICE ═══════════ */
.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(230, 57, 70, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 4rem 2rem;
}

.cta-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 4rem;
}

/* ─── CHAMBERS ─── */
.cta-chambers {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.chamber {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}

.chamber-ring {
  position: relative;
  width: 130px;
  height: 130px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chamber:hover .chamber-ring {
  transform: scale(1.15);
}

.chamber-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.chamber-fill {
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.chamber:hover .chamber-fill {
  stroke-dashoffset: 0;
}

.chamber-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color 0.3s, transform 0.3s;
}

.chamber-icon svg {
  width: 36px;
  height: 36px;
}

.chamber:hover .chamber-icon {
  color: var(--accent);
  transform: scale(1.1);
}

.chamber-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.chamber:hover .chamber-info {
  opacity: 1;
  transform: translateY(0);
}

.chamber-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.chamber-detail {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 180px;
  line-height: 1.5;
}

/* ─── FORM ─── */
.cta-form {
  max-width: 500px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  align-self: start;
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.15);
}

.form-input:focus {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 3px;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
  background: #ff4d5a;
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
.cta-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta-stamp-text {
  display: flex;
  align-items: center;
}

.cta-stamp-text span {
  color: rgba(230, 57, 70);
}

.cta-copy {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--accent);
}

.mobile-menu-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.8rem 2.5rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
}

.mobile-menu-cta:hover {
  background: #ff4d5a;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-photo-col { order: -1; }

  .dash-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 2rem;
  }

  .dash-card { height: 360px; }
  .dash-num { font-size: clamp(5rem, 15vw, 7rem); }
  .specs { padding: 5rem 1.5rem; }
  .dash-intro { margin-bottom: 3rem; }

  .cta-chambers { gap: 2rem; }
  .chamber-ring { width: 110px; height: 110px; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-nav { padding: 1rem 1.5rem; }
  .hero-nav-links, .hero-nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-main {
    padding: 1rem 1.5rem 4rem;
    gap: 2rem;
  }

  .hero-title-line { font-size: clamp(3rem, 12vw, 4.5rem); }

  .tachometer { width: 40px; height: 40px; bottom: 1.5rem; right: 1.5rem; }
  .scroll-label { display: none; }

  .reel-header { padding: 0 1.5rem; }
  .reel-track { padding: 0 1.5rem; gap: 1.5rem; }
  .reel-item { width: 300px; }
  .reel-frame img { height: 200px; }

  .cta-chambers {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .cta-chamber { flex-direction: row; gap: 1.5rem; }
  .chamber-ring { width: 90px; height: 90px; }
  .chamber-info { opacity: 1; transform: none; }
  .chamber-name { font-size: 0.65rem; }
  .chamber-detail { font-size: 0.65rem; }

  .form-row { grid-template-columns: 1fr; }
  .cta-form { max-width: 100%; }

  .cta-stamp { display: none; }

  .testimonials { padding: 4rem 1.5rem; }
}
