.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-terminal {
  position: absolute; top: 9rem; right: 3rem;
  width: 420px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
}
.terminal-bar {
  background: var(--surface);
  padding: 0.6rem 1rem;
  display: flex; gap: 6px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.terminal-title { margin-left: auto; margin-right: auto; color: var(--text3); font-size: 11px; }
.terminal-body { padding: 1rem 1.25rem; line-height: 1.9; }
.t-prompt { color: var(--green); }
.t-cmd { color: var(--text); }
.t-out { color: var(--text2); }
.t-ok { color: var(--green); }
.t-warn { color: var(--amber); }
.t-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--green); vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--green); margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 650px;
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  max-width: 480px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  color: var(--green);
  display: block;
}
.stat-label { font-size: 11px; color: var(--text3); letter-spacing: 0.08em; }
