/* ===== Hero: Terminal Atelier ===== */
.hero-b { padding: 140px 32px 64px; }
.hero-b .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; min-height: calc(100vh - 200px); align-items: center; }
.hero-b .left .eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 32px; display: flex; gap: 16px; align-items: center; }
.hero-b .left .eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }
.hero-b .left .mega { font-family: var(--font-serif); font-size: clamp(56px, 10vw, 160px); line-height: 0.9; letter-spacing: -0.03em; margin: 0; }
.hero-b .left .mega .typed::after { content: '|'; color: var(--accent); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-b .left .sub { margin-top: 40px; font-size: 16px; line-height: 1.6; max-width: 460px; color: var(--fg-muted); }
.hero-b .left .actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.hero-b .terminal {
  background: var(--ink); color: var(--ivory);
  border-radius: 4px; overflow: hidden;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.3);
}
.hero-b .terminal-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #1C1C1A; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-b .terminal-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-b .terminal-head .dot.r { background: #FF5F57; }
.hero-b .terminal-head .dot.y { background: #FEBC2E; }
.hero-b .terminal-head .dot.g { background: #28C840; }
.hero-b .terminal-head .title { margin-left: 16px; opacity: 0.5; font-size: 11px; letter-spacing: 0.08em; }
.hero-b .terminal-body { padding: 20px 24px; min-height: 320px; }
.hero-b .terminal-body .line { white-space: pre-wrap; }
.hero-b .terminal-body .prompt { color: var(--accent); }
.hero-b .terminal-body .cmt { color: #8C8880; }
.hero-b .terminal-body .str { color: #E4DCC6; }
.hero-b .terminal-body .key { color: #FEBC2E; }

@media (max-width: 900px) {
  .hero-b { padding: 96px 20px 40px; }
  .hero-b .grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== Shared hero bits ========== */
.metadata-strip {
  display: flex; justify-content: space-between; gap: 32px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-muted);
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.metadata-strip span { display: inline-flex; gap: 8px; }
.metadata-strip span b { color: var(--fg); font-weight: 500; }
