/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + var(--space-12)) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

/* ── Background Orbs ── */
.hero-bg-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(108, 60, 225, 0.08);
  top: -200px;
  right: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.06);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(108, 60, 225, 0.05);
  top: 50%;
  left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 40px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -30px) scale(1.15); }
}

/* ── Hero Grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: var(--z-base);
}

.hero-title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: var(--space-8);
}

.hero-price-highlight {
  display: inline-block;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  vertical-align: baseline;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(245, 158, 11, 0.18);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
}

.stat-suffix {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  margin-top: var(--space-1);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-gray-200);
}

/* ── Hero Visual (Rings) ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-ring-container {
  position: relative;
  width: 620px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-outer {
  width: 620px;
  height: 620px;
  border-color: rgba(108, 60, 225, 0.08);
  animation: ringRotate 30s linear infinite;
}

.ring-outer::before,
.ring-outer::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
}

.ring-outer::before {
  top: 20px;
  right: 60px;
}

.ring-outer::after {
  bottom: 40px;
  left: 30px;
  background: var(--color-secondary);
  width: 6px;
  height: 6px;
}

.ring-middle {
  width: 470px;
  height: 470px;
  border-color: rgba(108, 60, 225, 0.12);
  border-style: dashed;
  animation: ringRotate 20s linear infinite reverse;
}

.ring-middle::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  top: 50%;
  right: -5px;
  box-shadow: var(--shadow-glow);
}

.ring-inner {
  width: 320px;
  height: 320px;
  border-color: rgba(108, 60, 225, 0.15);
  animation: ringRotate 15s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero-video-shell {
  position: relative;
  width: 352px;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(108, 60, 225, 0.22) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-2xl);
  z-index: 2;
}

.hero-video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
  z-index: 3;
}

.hero-video-trigger,
.hero-video-embed {
  position: absolute;
  inset: 0;
}

.hero-video-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.hero-video-shell:hover .hero-video-trigger {
  transform: scale(1.03);
}

.hero-video-shell.is-playing .hero-video-trigger {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

.hero-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.1) 0%, rgba(10, 10, 15, 0.55) 100%),
    radial-gradient(circle at center, rgba(108, 60, 225, 0.18) 0%, transparent 60%);
}

.hero-video-embed {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-video-shell.is-playing .hero-video-embed {
  opacity: 1;
  pointer-events: auto;
}

.hero-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-button {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

.play-button svg {
  margin-left: 3px;
}

.play-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-gray-300);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-primary);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}
