/* ════════════════════════════════════════════════════════════
   hero.css — Asymmetric Editorial Hero
   ════════════════════════════════════════════════════════════ */

#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding: var(--space-3xl) var(--space-l);
  overflow: hidden;
  background: var(--bg);
}

.hero-content {
  grid-column: 2 / 10;
  position: relative;
  z-index: 10;
  text-align: left;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border-deep) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 30% 50%, black 20%, transparent 80%);
  opacity: 0.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 8%);
  border: 1px solid oklch(from var(--accent) l c h / 20%);
  padding: var(--space-3xs) var(--space-s);
  border-radius: 100px;
  margin-bottom: var(--space-l);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s var(--ease-in-out) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-name {
  font-family: var(--font-serif);
  font-size: var(--step-7);
  line-height: 0.85;
  margin-bottom: var(--space-m);
  color: var(--text);
}

.hero-name em {
  display: block;
  font-style: italic;
  color: var(--accent);
  transform: translateX(var(--space-l));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--text-soft);
  max-width: 40ch;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: var(--space-m);
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-l);
  right: var(--space-l);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-s);
}

.scroll-cue span {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  writing-mode: vertical-rl;
  color: var(--text-muted);
}

.scroll-cue-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: grow 2s var(--ease-in-out) infinite;
}

@keyframes grow {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Background Blobs */
.hero-blob1, .hero-blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-blob1 {
  top: 10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: oklch(from var(--accent) l c h / 5%);
}

.hero-blob2 {
  bottom: -5%;
  left: 10%;
  width: 30vw;
  height: 30vw;
  background: oklch(from var(--secondary) l c h / 5%);
}

@media (max-width: 900px) {
  .hero-content {
    grid-column: 1 / -1;
    text-align: center;
  }
  .hero-name em {
    transform: none;
  }
  .hero-actions {
    justify-content: center;
  }
}
