/* ============================================================
   DVX VISION — V2 World-Class Styles
   Inspired by Apple Vision Pro, DJI, Teenage Engineering
   ============================================================ */

:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #111;
  --red: #CB2C30;
  --red-glow: rgba(203,44,48,0.25);
  --white: #fff;
  /* Aliases used by page-specific CSS */
  --bg: #050505;
  --bg-2: #111;
  --surface: #0a0a0a;
  --radius: 12px;
  --radius-lg: 20px;
  /* Text grays — calibrated for readability on dark bg */
  --gray: rgba(255,255,255,0.72);
  --gray-1: rgba(255,255,255,0.72);
  --gray-2: rgba(255,255,255,0.60);
  --gray-3: rgba(255,255,255,0.42);
  --border: rgba(255,255,255,0.1);
  --font-head: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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


/* ── IMAGE SKELETON SHIMMER ─────────────────── */
.img-sk {
  position: relative;
  overflow: hidden;
  background: var(--black-2);
}
.img-sk > img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.img-sk::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.035) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: imgShimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes imgShimmer {
  to { transform: translateX(200%); }
}
.img-sk-done > img {
  opacity: 1;
}
.img-sk-done::after { display: none; }

/* ── LANGUAGE TOGGLE ─────────────────────────── */
.lang-toggle {
  position: relative;
}
.lang-globe-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}
.lang-globe-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.lang-cur {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 160px;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 2000;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.lang-dropdown::-webkit-scrollbar { width: 4px; }
.lang-dropdown::-webkit-scrollbar-track { background: transparent; }
.lang-dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 9px 10px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.lang-opt:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.lang-opt.active {
  color: var(--red);
}
.lang-opt span {
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0;
}
.lang-opt.active span { color: rgba(203,44,48,0.6); }

/* ── NAV V2 ─────────────────────────────────── */
.nav-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.35s var(--ease-out);
}
.nav-v2.scrolled,
.nav-v2.nav-scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-v2 .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-v2 .nav-links { gap: clamp(16px, 2.5vw, 36px); }
.nav-v2 .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-v2 .nav-link:hover,
.nav-v2 .nav-link.active { color: #fff; }
.nav-v2 .nav-shop {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 18px;
  white-space: nowrap;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.nav-v2 .nav-shop:hover { opacity: 0.85; background: var(--red) !important; color: #fff !important; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cart {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); position: relative;
  padding: 4px; transition: color 0.2s;
}
.nav-cart:hover { color: #fff; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
}
.cart-count.visible { display: flex; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1080px) { .nav-hamburger { display: flex; } }
@media (max-width: 1080px) { .nav-v2 .nav-links { display: none; } }

/* Mobile nav */
.nav-mobile { display: none; }
.nmob-link {
  display: block; padding: 14px 24px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 15px; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nmob-link:hover { color: #fff; }
.nmob-shop { color: var(--red); font-weight: 700; }
.nav-mobile.open {
  display: block;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* ── HERO VIDEO ──────────────────────────────── */
.hero-video {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hv-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.6) 0%,
    rgba(5,5,5,0.15) 25%,
    rgba(5,5,5,0.15) 40%,
    rgba(5,5,5,0.6) 75%,
    rgba(5,5,5,0.95) 100%
  );
}
.hv-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.4) 100%);
}
.hv-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 60px 48px;
  margin-top: auto; /* push to bottom, never overlap nav */
}
.hv-eyebrow {
  display: none; /* removed — too busy above headline */
}
.hv-dot {
  display: none;
}
.hv-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 14px;
  overflow: hidden;
}
.hv-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: hv-slide-up 0.9s var(--ease-out) var(--d, 0ms) forwards;
}
.hv-line-red { color: var(--red); }
@keyframes hv-slide-up {
  to { opacity: 1; transform: translateY(0); }
}
.hv-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  opacity: 0;
  animation: hv-fade-up 0.8s var(--ease-out) var(--d, 400ms) forwards;
}
.hv-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: hv-fade-up 0.8s var(--ease-out) var(--d, 550ms) forwards;
}
.btn-hv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hv-primary {
  background: var(--red);
  color: #fff;
}
.btn-hv-primary:hover { background: #b02227; transform: translateY(-2px); }
.btn-hv-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-hv-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hv-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: hv-fade-up 0.8s var(--ease-out) var(--d, 750ms) forwards;
}
.hvs-item { display: flex; flex-direction: column; gap: 4px; padding: 0 24px 0 0; }
.hvs-item:first-child { padding-left: 0; }
.hvs-num { font-family: var(--font-head); font-size: 28px; letter-spacing: -1px; line-height: 1; }
.hvs-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; }
.hvs-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); margin: 0 24px 0 0; flex-shrink: 0; }
@keyframes hv-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hv-scroll-cue {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
  transition: color 0.2s;
}
.hv-scroll-cue:hover { color: rgba(255,255,255,0.6); }
.hv-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scroll-line 1.8s ease infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TICKER BAR ──────────────────────────────── */
.ticker-bar {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.85);
  padding: 0 20px;
}
.t-sep, .ticker-dot { opacity: 0.4; padding: 0 8px !important; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRODUCT SEQUENCE ────────────────────────── */
.product-sequence {
  height: 400vh;
  position: relative;
}
.ps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--black);
}
.ps-canvas-wrap {
  position: relative;
  overflow: hidden;
}
.ps-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ps-text-panels {
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 60px;
  position: relative;
}
.ps-panel {
  position: absolute;
  padding: 80px 80px 80px 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.ps-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.psp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.psp-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.psp-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-1);
  max-width: 400px;
}
.ps-progress {
  position: absolute;
  bottom: 48px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ps-prog-track {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.ps-prog-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s var(--ease-out);
}
.ps-prog-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}


/* ── MODEL VIEWER PROGRESS ───────────────────── */
.mvp-progress {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.92);
  z-index: 10;
  pointer-events: none; /* CRITICAL: never block canvas events */
  transition: opacity 0.5s ease;
}
.mvp-track {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  overflow: hidden;
  pointer-events: none;
}
.mvp-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.25s ease;
}

/* ── THREE.JS VIEWER ─────────────────────────── */
.viewer-section {
  padding: 80px 0 0;
  background: var(--black);
}
.viewer-header {
  text-align: center;
  padding-bottom: 28px;
}
.viewer-sub {
  font-size: 14px;
  color: var(--gray-1);
  margin-top: 16px;
  letter-spacing: 0.5px;
}
.viewer-wrap {
  position: relative;
  height: 600px;
  background: var(--black-2);
  overflow: hidden;
}
.three-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  cursor: grab;
}
.three-canvas:active { cursor: grabbing; }
.viewer-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vhs-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}
.vhs-dot {
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid rgba(203,44,48,0.3);
  position: relative;
  animation: hotspot-pulse 2s ease infinite;
}
.vhs-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(203,44,48,0.25);
  animation: hotspot-ring 2s ease infinite;
}
@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
@keyframes hotspot-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.vhs-tooltip {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(203,44,48,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(10px);
}
.vhs-tooltip span { font-size: 11px; color: var(--gray-1); font-weight: 400; display: block; margin-top: 2px; }
.vhs-item:hover .vhs-tooltip { opacity: 1; }
.viewer-ui {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none; /* container transparent — only children capture events */
}
.viewer-ui > * { pointer-events: auto; }
.vui-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  transition: opacity 0.4s;
}
.vui-controls {
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
}
.vui-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}
.vui-btn.active, .vui-btn:hover {
  background: var(--red);
  color: #fff;
}
.vui-zoom {
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 6px;
}
.vui-zoom-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  width: 30px;
  height: 28px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}
.vui-zoom-btn:hover { background: var(--red); color: #fff; }

/* Display badge — floating NV image in corner of viewer */
.vui-display-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 140px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.vui-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .vui-display-badge { width: 100px; height: 72px; top: 16px; right: 16px; }
}

/* Model name label — bottom-left of viewer */
.vui-model-name {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}
.vui-model-name span { color: var(--red); }

/* ── SPEC WALL ───────────────────────────────── */
.spec-wall {
  background: var(--black);
  overflow: hidden;
}
.sw-row-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.sw-image-col {
  position: relative;
  overflow: hidden;
}
.sw-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 40px;
  transition: transform 0.8s var(--ease-out);
}
.sw-image-col:hover .sw-img { transform: scale(1.04); }
.sw-stats-col {
  background: var(--black-2);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.sw-stat-item {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sw-val {
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.sw-num {
  font-family: var(--font-head);
  font-size: clamp(72px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -4px;
  color: var(--white);
}
.sw-unit {
  font-family: var(--font-head);
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -2px;
  color: var(--red);
  margin-left: 4px;
}
.sw-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 4px;
}
.sw-divider {
  height: 1px;
  background: var(--border);
}
.sw-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.sw-feat {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sw-feat:last-child { border-right: none; }
.sw-feat:hover { background: rgba(255,255,255,0.02); }
.sw-feat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.sw-feat:hover::before { transform: scaleX(1); }
.sw-feat-num {
  font-family: var(--font-head);
  font-size: 80px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}
.sw-feat-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sw-feat-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .sw-row-image { grid-template-columns: 1fr; }
  .sw-image-col { height: 50vh; }
  .sw-stats-col { grid-template-columns: repeat(2,1fr); display: grid; padding: 40px; gap: 0; }
  .sw-stat-item { padding: 24px; }
  .sw-features-row { grid-template-columns: 1fr; }
  .sw-feat { border-right: none; border-bottom: 1px solid var(--border); }
  .sw-feat:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .sw-stats-col { grid-template-columns: 1fr 1fr; padding: 24px; }
  .sw-feat { padding: 36px 24px; }
}

/* ── FEATURES DARK ───────────────────────────── */
.features-dark {
  padding: 120px 0;
  background: var(--black);
}
.fd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.fd-card {
  background: var(--black-2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.fd-card:hover { background: var(--black-3); }
.fdc-number {
  font-family: var(--font-head);
  font-size: 72px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}
.fdc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
  transition: transform 0.5s var(--ease-out);
}
.fd-card:hover .fdc-img { transform: scale(1.03); }
.fdc-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.fdc-content p {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}

/* ── CINEMATIC REVEAL ────────────────────────── */
.cinematic-reveal {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.cr-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cr-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}
.cr-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.97) 40%, rgba(5,5,5,0.4) 100%);
}
.cr-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 40px;
}
.cr-left { display: flex; flex-direction: column; gap: 0; }
.cr-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 16px 0 20px;
}
.cr-desc {
  font-size: 16px;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.cr-specs {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.crs-item { display: flex; flex-direction: column; gap: 4px; }
.crs-val {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--red);
  line-height: 1;
}
.crs-label { font-size: 11px; color: var(--gray-1); text-transform: uppercase; letter-spacing: 1px; }
.cr-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cr-right { display: flex; align-items: center; justify-content: center; }
.cr-img-stack { position: relative; width: 100%; max-width: 480px; }
.cr-img-main {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: contain;
}
.cr-img-inset {
  position: absolute;
  width: 45%;
  bottom: -24px;
  right: -24px;
  border-radius: 10px;
  border: 3px solid var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ── LINEUP MODERN ───────────────────────────── */
.lineup-modern {
  padding: 120px 0;
  background: var(--black-2);
}
.lm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.lm-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  position: relative;
}
.lm-card:hover { transform: translateY(-8px); border-color: rgba(203,44,48,0.3); }
.lm-card-featured { border-color: rgba(203,44,48,0.4); }
.lm-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  padding: 4px 10px; border-radius: 100px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.lm-badge-hot { background: var(--red); color: #fff; border-color: transparent; }
.lm-badge-thermal { background: rgba(255,120,0,0.15); color: #ff8c00; border-color: rgba(255,120,0,0.3); }
.lm-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.lm-img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 20px; transition: transform 0.6s var(--ease-out); }
.lm-img-wrap { background: var(--black-2); }
.lm-card:hover .lm-img { transform: scale(1.06); }
.lm-img-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lm-card:hover .lm-img-overlay { opacity: 1; }
.lm-quick-btn {
  background: #fff; color: #000;
  padding: 12px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transform: translateY(10px);
  transition: transform 0.3s var(--ease-out);
}
.lm-card:hover .lm-quick-btn { transform: translateY(0); }
.lm-info { padding: 24px; }
.lm-tag { font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.lm-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.lm-desc { font-size: 13px; color: var(--gray-1); line-height: 1.6; margin-bottom: 20px; }
.lm-bottom { display: flex; align-items: center; justify-content: space-between; }
.lm-price { font-family: var(--font-head); font-size: 28px; letter-spacing: -1px; }
.lm-price-accent { color: var(--red); }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ── PRESS V2 ────────────────────────────────── */
.press-v2 {
  padding: 100px 0;
  background: var(--black);
}
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pq-card {
  padding: 48px 40px;
  background: var(--black-2);
  transition: background 0.3s;
}
.pq-card:hover { background: var(--black-3); }
.pq-stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.pq-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 20px;
}
.pq-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
}

/* ── CTA FULLSCREEN ──────────────────────────── */
.cta-fullscreen {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ctaf-bg { position: absolute; inset: 0; z-index: 0; }
.ctaf-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.3); }
.ctaf-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.7);
}
.ctaf-content {
  position: relative; z-index: 1;
  padding: 80px 40px;
  max-width: 800px;
}
.ctaf-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 16px 0 20px;
}
.ctaf-sub {
  font-size: 18px;
  color: var(--gray-1);
  margin-bottom: 40px;
}
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-xl { padding: 20px 52px; font-size: 17px; }

/* ── FOOTER V2 ───────────────────────────────── */
.footer-v2 {
  background: var(--black-2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding: 80px 0 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline { font-size: 14px; color: var(--gray-1); line-height: 1.6; }
.footer-socials { display: flex; gap: 16px; margin-top: 8px; }
.social-link {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex;
}
.social-link:hover { color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fl-head { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.fl-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.fl-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-awards { display: flex; gap: 12px; }
.fa-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── SHARED ELEMENTS ─────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -1px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 560px;
}
.section-header .section-sub { margin: 16px auto 0; }
.section-header { text-align: center; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.25s; letter-spacing: 0.3px;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #b02227; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-card { background: var(--black-3); color: #fff; border: 1px solid var(--border); }
.btn-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* Reveal animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── FV2 FOOTER ALIASES (V2 pages) ───────────── */
/* Maps fv2-* class names used in rebuilt pages to existing footer styles */
.fv2-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; padding: 80px 0 60px; }
.fv2-brand { display: flex; flex-direction: column; gap: 16px; }
.fv2-tagline { font-size: 14px; color: var(--gray-2); line-height: 1.6; }
.fv2-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fv2-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-3); margin-bottom: 16px; display: block; }
.fv2-col a { display: block; font-size: 14px; color: var(--gray-2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.fv2-col a:hover { color: #fff; }
.fv2-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--border); }
.fv2-copy { font-size: 13px; color: var(--gray-3); }
@media (max-width: 1024px) { .fv2-top { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) { .fv2-links { grid-template-columns: 1fr 1fr; } .fv2-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* Cart panel-header alias */
.cart-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-panel-header h3 { font-size: 18px; font-weight: 700; }
.cart-close-btn { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 24px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.cart-close-btn:hover { color: #fff; }

/* Cart / Toast */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-panel { position: fixed; right: 0; top: 0; bottom: 0; width: 400px; background: #0e0e0e; border-left: 1px solid var(--border); z-index: 1200; transform: translateX(100%); transition: transform 0.4s var(--ease-out); display: flex; flex-direction: column; }
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 24px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.cart-close:hover { color: #fff; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.3); }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border); }
.ci-img { width: 48px; height: 48px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ci-price { font-size: 13px; color: var(--red); margin-bottom: 8px; }
.ci-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { background: rgba(255,255,255,0.08); border: none; color: #fff; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 16px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.qty-btn:hover { background: rgba(255,255,255,0.15); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.ci-remove { background: none; border: none; color: rgba(255,255,255,0.3); font-size: 20px; cursor: pointer; transition: color 0.2s; }
.ci-remove:hover { color: var(--red); }
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--red); color: #fff; border-radius: 100px; padding: 14px 24px; font-size: 14px; font-weight: 700; z-index: 3000; transition: transform 0.4s var(--ease-out); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .fd-grid { grid-template-columns: 1fr; gap: 2px; }
  .lm-grid { grid-template-columns: 1fr 1fr; }
  .cr-content { grid-template-columns: 1fr; }
  .cr-right { display: none; }
  .ps-sticky { grid-template-columns: 1fr; }
  .ps-canvas-wrap { height: 50vh; }
  .product-sequence { height: 250vh; }
  .press-quotes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-v2 .nav-inner { padding: 16px 20px; }
  .nav-v2 .nav-links { display: none; }
  .hv-content { padding: 0 24px 24px; }
  .hv-title { font-size: clamp(40px, 11vw, 64px); }
  .hv-sub { font-size: 14px; margin-bottom: 16px; }
  /* All headings larger on mobile */
  .section-title { font-size: clamp(32px, 9vw, 56px) !important; }
  .cr-title { font-size: clamp(36px, 10vw, 60px) !important; }
  .ctaf-title { font-size: clamp(32px, 9vw, 52px) !important; }
  .terrain-title { font-size: clamp(40px, 10vw, 64px) !important; }
  .ns-card-info h3 { font-size: 22px !important; }
  .hv-stats { flex-wrap: wrap; gap: 16px; }
  .hvs-div { display: none; }
  .hv-actions { flex-direction: column; }
  .hv-scroll-cue { right: 24px; }
  .lm-grid { grid-template-columns: 1fr; }
  .cr-content { padding: 60px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .viewer-wrap { height: 400px; }
  .container { padding: 0 20px; }
  .cart-panel { width: 100%; }
  .product-sequence { height: 200vh; }
  .ps-text-panels { padding: 24px; }
  .ps-panel { padding: 24px; }
  .psp-title { font-size: clamp(24px, 7vw, 36px); }
  .psp-sub { font-size: 14px; }
  .ptr-title { font-size: clamp(48px, 14vw, 80px); }
  .ptr-sub { font-size: 20px; }
  .ptr-manifesto { font-size: 14px; }
  .hv-red-shout { margin-bottom: 16px; }
  .red-shout-text { font-size: clamp(14px, 4vw, 20px); }
  .red-shout-domain { font-size: clamp(10px, 2.5vw, 13px); }
}

/* ============================================================
   PUSH THE RED — BRAND SHOUT SYSTEM
   dvx.red — "Push the RED, See Everything"
   ============================================================ */

/* ── HERO: RED SHOUT PRE-TITLE ─────────────────── */
.hv-red-shout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s var(--ease-out) both;
  animation-delay: var(--d, 0ms);
}
.red-shout-text {
  font-family: var(--font-head);
  font-size: clamp(16px, 3vw, 24px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.red-pulse {
  color: var(--red);
  text-shadow: 0 0 20px rgba(203,44,48,0.6), 0 0 60px rgba(203,44,48,0.3);
  animation: redPulseGlow 2s ease-in-out infinite;
}
.red-shout-domain {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(203,44,48,0.12);
  border: 1px solid rgba(203,44,48,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  animation: redPulseGlow 2s ease-in-out infinite 0.5s;
}

@keyframes redPulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(203,44,48,0.5), 0 0 60px rgba(203,44,48,0.2); }
  50% { text-shadow: 0 0 30px rgba(203,44,48,0.8), 0 0 80px rgba(203,44,48,0.4), 0 0 120px rgba(203,44,48,0.15); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TICKER: RED ACCENTS ───────────────────────── */
.ticker-bar-red {
  background: linear-gradient(90deg, #050505 0%, rgba(203,44,48,0.08) 50%, #050505 100%);
  border-top: 1px solid rgba(203,44,48,0.15);
  border-bottom: 1px solid rgba(203,44,48,0.15);
}
.ticker-red-accent {
  color: var(--red) !important;
  font-weight: 800 !important;
  text-shadow: 0 0 12px rgba(203,44,48,0.4);
  letter-spacing: 3px;
}

/* ── PUSH THE RED — INTERSTITIAL SECTION ──────── */
.push-the-red {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}
.ptr-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ptr-pulse-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(203,44,48,0.15);
  animation: ptrPulse 4s ease-out infinite;
}
.ptr-ring-1 { animation-delay: 0s; }
.ptr-ring-2 { animation-delay: 1.3s; }
.ptr-ring-3 { animation-delay: 2.6s; }

@keyframes ptrPulse {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
    border-color: rgba(203,44,48,0.5);
  }
  100% {
    transform: scale(4);
    opacity: 0;
    border-color: rgba(203,44,48,0);
  }
}

.ptr-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}
.ptr-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0.8;
}
.ptr-title {
  font-family: var(--font-head);
  font-size: clamp(64px, 18vw, 160px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ptr-push,
.ptr-the {
  display: block;
  color: rgba(255,255,255,0.9);
}
.ptr-the {
  font-size: 0.5em;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}
.ptr-red-word {
  display: block;
  color: var(--red);
  text-shadow:
    0 0 40px rgba(203,44,48,0.6),
    0 0 80px rgba(203,44,48,0.3),
    0 0 160px rgba(203,44,48,0.15);
  animation: redWordPulse 3s ease-in-out infinite;
}

@keyframes redWordPulse {
  0%, 100% {
    text-shadow:
      0 0 40px rgba(203,44,48,0.6),
      0 0 80px rgba(203,44,48,0.3),
      0 0 160px rgba(203,44,48,0.15);
  }
  50% {
    text-shadow:
      0 0 60px rgba(203,44,48,0.8),
      0 0 120px rgba(203,44,48,0.5),
      0 0 200px rgba(203,44,48,0.25),
      0 0 300px rgba(203,44,48,0.1);
  }
}

.ptr-sub {
  font-family: var(--font-head);
  font-size: clamp(20px, 4vw, 32px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.ptr-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 40px;
  box-shadow: 0 0 12px rgba(203,44,48,0.5);
}
.ptr-manifesto {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto 48px;
  letter-spacing: 0.5px;
}
.ptr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 30px rgba(203,44,48,0.3), 0 0 60px rgba(203,44,48,0.15);
}
.ptr-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(203,44,48,0.5), 0 0 80px rgba(203,44,48,0.25);
}
.ptr-btn-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: btnDotPulse 1.5s ease-in-out infinite;
}

@keyframes btnDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.6); }
}
