/* ============================================
   RED ZONE ENTERPRISES — SHARED STYLES
   Radar/HUD aesthetic · UGA red on deep black
   ============================================ */

:root {
  --red: #BA0C2F;
  --red-bright: #E5102F;
  --red-dim: #7A0820;
  --red-glow: rgba(186, 12, 47, 0.35);
  --red-faint: rgba(186, 12, 47, 0.12);
  --black: #0A0A0B;
  --black-2: #0F0F11;
  --black-3: #15151A;
  --line: rgba(186, 12, 47, 0.18);
  --line-bright: rgba(186, 12, 47, 0.5);
  --text: #E8E8EA;
  --text-dim: #8A8A92;
  --text-faint: #4A4A52;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at top, rgba(186, 12, 47, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(186, 12, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 12, 47, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
}

/* Scanline overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 2px,
    rgba(255, 255, 255, 0.012) 3px
  );
  pointer-events: none;
  z-index: 1000;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 999;
}

a { color: inherit; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--red);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.logo-mark::before { width: 14px; height: 1px; }
.logo-mark::after { width: 1px; height: 14px; }

.logo-mark span {
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 8px var(--red);
}

.logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-links a:hover { color: var(--red-bright); }
.nav-links a.active { color: var(--red); }

.nav-links a::before { content: '['; margin-right: 4px; color: var(--red); opacity: 0; transition: opacity 0.2s; }
.nav-links a::after  { content: ']'; margin-left: 4px;  color: var(--red); opacity: 0; transition: opacity 0.2s; }
.nav-links a:hover::before, .nav-links a:hover::after,
.nav-links a.active::before, .nav-links a.active::after { opacity: 1; }

.nav-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ TYPOGRAPHY ============ */
.mono { font-family: 'JetBrains Mono', monospace; }
.display { font-family: 'Syncopate', sans-serif; letter-spacing: 0.05em; }
.accent { color: var(--red); }

h1, h2, h3 {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 6px 12px;
  border: 1px solid var(--line-bright);
  background: var(--red-faint);
}

.hero-tag::before {
  content: '';
  width: 8px; height: 1px;
  background: var(--red);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero-title .cursor::after {
  content: '_';
  color: var(--red-bright);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-meta span { color: var(--red); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--black);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 24px var(--red-glow);
  transform: translateY(-1px);
}

.btn-secondary { color: var(--red); }
.btn-secondary:hover {
  background: var(--red-faint);
  box-shadow: 0 0 16px var(--red-glow);
}

.btn::after { content: '→'; transition: transform 0.2s; }
.btn:hover::after { transform: translateX(4px); }

/* ============ HERO VISUAL FRAME ============ */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.corner::before, .corner::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.corner::before { width: 16px; height: 1px; }
.corner::after  { width: 1px; height: 16px; }
.corner.tl { top: -1px; left: -1px; }
.corner.tr { top: -1px; right: -1px; }
.corner.tr::before { right: 0; }
.corner.tr::after  { right: 0; }
.corner.bl { bottom: -1px; left: -1px; }
.corner.bl::before { bottom: 0; }
.corner.bl::after  { bottom: 0; }
.corner.br { bottom: -1px; right: -1px; }
.corner.br::before { bottom: 0; right: 0; }
.corner.br::after  { bottom: 0; right: 0; }

/* ============ PHONE MOCKUP ============ */
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #0A0A0B;
  border: 2px solid #2A2A2E;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(186, 12, 47, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(186, 12, 47, 0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #050507;
  border-radius: 28px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--red);
}

.hud-corner-line {
  width: 20px; height: 1px;
  background: var(--red);
  position: absolute;
  top: 8px;
}
.hud-corner-line.left  { left: 14px; }
.hud-corner-line.right { right: 14px; }

.hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.hud-label {
  font-size: 8px;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--red);
  padding-left: 6px;
  margin-top: 16px;
}

.hud-time {
  font-size: 8px;
  border-right: 1px solid var(--red);
  padding-right: 6px;
  margin-top: 16px;
}

.scope-area {
  flex: 1;
  position: relative;
  background-image:
    linear-gradient(rgba(186, 12, 47, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 12, 47, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  margin: 8px 0;
}

.scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scan 3s linear infinite;
  opacity: 0.6;
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(280px); }
}

.reticle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
}
.reticle::before, .reticle::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.reticle::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.reticle::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }

.reticle-circle {
  position: absolute;
  inset: 6px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.reticle-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hud-stats {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  border-top: 1px solid rgba(186, 12, 47, 0.3);
  padding-top: 8px;
  margin-top: 4px;
}
.hud-stats > div {
  border-left: 1px solid var(--red);
  padding-left: 6px;
  letter-spacing: 0.1em;
}

.hud-clips {
  margin-top: 12px;
  border-top: 1px solid rgba(186, 12, 47, 0.3);
  padding-top: 8px;
}

.clips-header {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.clips-empty {
  text-align: center;
  color: rgba(186, 12, 47, 0.5);
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 16px 0;
}
.clips-empty .small {
  font-size: 6px;
  margin-top: 4px;
  opacity: 0.7;
}

/* SpeedCam target markers */
.target {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
}
.target-info { text-align: right; }
.target-speed { font-size: 14px; font-weight: 700; line-height: 1; }
.target-unit  { font-size: 6px; letter-spacing: 0.15em; }
.target-circle {
  width: 28px; height: 28px;
  border: 1px solid var(--red);
  border-radius: 50%;
  position: relative;
}
.target-arrow {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--red);
  transform-origin: left center;
}
.target-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  border-left: 4px solid var(--red);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.target-box {
  width: 24px; height: 24px;
  border: 1px solid var(--red);
  position: relative;
}

/* Flight markers */
.plane {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
}
.plane-icon {
  width: 18px; height: 18px;
  position: relative;
  color: var(--red);
}
.plane-info {
  font-size: 7px;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--red);
  padding-left: 4px;
}
.plane-callsign { font-weight: 700; }
.plane-alt { opacity: 0.7; font-size: 6px; }

/* ============ SECTIONS ============ */
section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}

.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-num::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 540px;
}

/* ============ FEATURES GRID ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  background: var(--black);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.feature:hover { background: var(--black-2); }
.feature:hover .feature-icon { color: var(--red-bright); }

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.feature-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--red);
  transition: color 0.3s;
}

.feature-title {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============ SPECS ============ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec {
  background: var(--black);
  padding: 32px 24px;
}

.spec-value {
  font-family: 'Syncopate', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.spec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ============ CTA ============ */
.cta-section {
  text-align: center;
  padding: 160px 40px;
  position: relative;
}

.cta-frame {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--black-2);
}

.cta-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-desc {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ============ PRODUCT CARDS (home) ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 48px 40px;
  background: var(--black-2);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: all 0.3s;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(186, 12, 47, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card:hover {
  border-color: var(--line-bright);
  background: var(--black-3);
  transform: translateY(-2px);
}

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

.product-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.product-meta .id { color: var(--red); }

.product-name {
  font-family: 'Syncopate', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}

.product-tagline {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: auto;
  max-width: 420px;
}

.product-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
}

.product-cta::after {
  content: '→';
  transition: transform 0.2s;
}

.product-card:hover .product-cta::after { transform: translateX(4px); }

.coming-soon-card {
  border-style: dashed;
  background: transparent;
  color: var(--text-faint);
  cursor: default;
}
.coming-soon-card:hover {
  transform: none;
  background: transparent;
  border-color: var(--line);
}
.coming-soon-card .product-name { color: var(--text-faint); }

/* ============ ACCESSORY / PRODUCT DETAIL ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(186, 12, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 12, 47, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.gallery-placeholder {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.gallery-placeholder svg { margin-bottom: 16px; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--black-2);
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--red); }

.product-info-detail .hero-tag { margin-bottom: 24px; }

.product-info-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.product-price {
  font-family: 'Syncopate', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.product-price .currency { font-size: 1rem; opacity: 0.6; }

.product-summary {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-options {
  margin-bottom: 32px;
}

.option-group { margin-bottom: 24px; }

.option-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.option-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.option-btn:hover { border-color: var(--red); }
.option-btn.selected {
  border-color: var(--red);
  background: var(--red-faint);
  color: var(--red);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}
.qty-btn:hover { background: var(--red-faint); }
.qty-value {
  width: 50px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 40px;
  line-height: 40px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.spec-list {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.spec-row .key {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.spec-row .val { color: var(--text); }

/* ============ COMPANY ============ */
.company {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  margin: 0;
  max-width: none;
  padding: 120px 40px;
}

.company-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-stamp {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(186, 12, 47, 0.08), transparent 70%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(186, 12, 47, 0.03) 20px, rgba(186, 12, 47, 0.03) 21px);
}

.stamp-inner {
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stamp-inner::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(186, 12, 47, 0.4);
  border-radius: 50%;
}

.stamp-text {
  text-align: center;
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.stamp-text .big {
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.stamp-text .small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 8px;
  font-weight: 400;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 40px 40px;
  background: var(--black);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: 'Syncopate', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-bottom span { color: var(--red); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 60px;
    gap: 40px;
  }
  .hero-visual { height: 500px; }
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  section { padding: 80px 20px; }
  .features { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .company { padding: 80px 20px; }
  .company-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-frame { padding: 50px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 20px 60px;
  }
  .product-gallery { position: static; }
}
