/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0d1a30 0%, #000 60%);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-gradient {
  background: linear-gradient(135deg, #ffd166 0%, #f4845f 40%, #bf5af2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

/* ─── LAMP VISUAL ────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lamp-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lamp-glow-outer {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,0.08) 0%, transparent 70%);
  animation: breathe 4s ease-in-out infinite;
}
.lamp-glow-mid {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,0.18) 0%, transparent 70%);
  animation: breathe 4s ease-in-out infinite 0.5s;
}

.lamp-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.lamp-panel {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #ffd166, #f4845f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 60px rgba(255,209,102,0.6), 0 0 120px rgba(255,209,102,0.2);
  animation: float 6s ease-in-out infinite;
  margin-bottom: 0;
}

.lamp-stem {
  width: 4px; height: 80px;
  background: linear-gradient(180deg, rgba(255,209,102,0.5), rgba(255,209,102,0.05));
  border-radius: 2px;
}

.lamp-head {
  width: 120px; height: 40px;
  background: linear-gradient(180deg, #333, #222);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lamp-lens {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e0 0%, #ffd166 40%, rgba(255,209,102,0.2) 70%);
  box-shadow: 0 0 30px rgba(255,209,102,0.9), 0 0 60px rgba(255,209,102,0.4);
}

.lamp-beam {
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  background: linear-gradient(180deg, rgba(255,209,102,0.15) 0%, transparent 100%);
  clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
}

/* ─── SCROLL HINT ────────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-in 2s 1.5s ease both;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.7; }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@keyframes fade-in {
  from { opacity:0; } to { opacity:1; }
}
@keyframes scroll-pulse {
  0%,100% { opacity:0.3; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(1.2); }
}

@media (max-width: 600px) {
  .hero-visual { width: 220px; height: 220px; }
  .lamp-panel { width: 60px; height: 60px; font-size: 2rem; }
  .lamp-head { width: 90px; }
}