﻿/* ========================================
   DHDS V2 — Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  perspective: 1200px;
  background: linear-gradient(180deg, rgba(10,11,12,0.85) 0%, rgba(10,11,12,0.75) 50%, rgba(10,11,12,0.95) 100%),
              url('../../ASSETS/IMAGES/marginal.jpg') center/cover no-repeat;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  will-change: transform;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-text {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text .eyebrow {
  justify-content: center;
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.04;
  margin: 20px 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lead {
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin: 40px 0 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  justify-content: center;
  width: 100%;
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}

.stat-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(198, 161, 91, 0.4);
}

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* --- Phone Demo (signature element) --- */
/* Removed old phone styles, now handled by simulator.css */
