/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  right: -100px; top: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.04) 0%, transparent 70%);
  left: 200px; bottom: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--cyan);
}

.hero-title {
  font-family: 'Chakra Petch', monospace;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-hi);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-title .accent { color: var(--cyan); }

.hero-title .line-2 {
  display: block;
  color: var(--text-mid);
  font-weight: 300;
}

.hero-desc {
  font-size: 16px; font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* ─── HERO VISUAL / TERMINAL ─── */
.hero-visual {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 50%; max-width: 680px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.9s forwards;
}

.terminal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--glow), 0 40px 80px rgba(0,0,0,0.5);
  margin-right: 48px;
  position: relative;
}

.terminal-window::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(0,229,255,0.15), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  position: relative; z-index: 1;
}

.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.t-dot-r { background: #FF5F57; }
.t-dot-y { background: #FEBC2E; }
.t-dot-g { background: #28C840; }

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-lo);
  margin-left: 8px; letter-spacing: 0.05em;
}

.terminal-body {
  padding: 20px 20px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.9;
  position: relative; z-index: 1;
}

.t-line { display: block; }
.t-prompt { color: var(--cyan); }
.t-cmd { color: var(--text-hi); }
.t-out { color: var(--text-mid); padding-left: 16px; }
.t-ok { color: var(--green); }
.t-warn { color: var(--amber); }
.t-comment { color: var(--text-lo); }

.t-cursor {
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--cyan);
  animation: blink 1.1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

/* Security Ring */
.security-ring {
  position: absolute;
  right: -20px; bottom: -30px;
  width: 200px; height: 200px;
  opacity: 0.5;
}
