.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent);
  background: rgba(69,224,196,.08);
  border: 1px solid rgba(69,224,196,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(69,224,196,.15);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(69,224,196,.15); }
  50% { box-shadow: 0 0 0 7px rgba(69,224,196,.05); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 6px;
}
.hero h1 .name-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-role {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin: 18px 0 14px;
}

.hero-typed {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 34px;
}
.hero-typed .prompt { color: var(--accent); margin-right: 6px; }
.hero-typed .typed-cursor { color: var(--accent); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }

.hero-socials { display: flex; gap: 12px; }
.hero-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .2s ease;
}
.hero-socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* -- Terminal window signature element -- */
.hero-terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.55);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.terminal-bar span {
  width: 11px; height: 11px; border-radius: 50%;
}
.terminal-bar span:nth-child(1) { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: #febc2e; }
.terminal-bar span:nth-child(3) { background: #28c840; }
.terminal-bar small {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.terminal-body {
  padding: 22px 22px 26px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.9;
}
.terminal-body .line { white-space: pre-wrap; }
.terminal-body .c1 { color: var(--accent-2); }
.terminal-body .c2 { color: var(--accent); }
.terminal-body .c3 { color: var(--accent-warm); }
.terminal-body .muted { color: var(--text-faint); }
.terminal-body .out { color: var(--text-dim); padding-left: 4px; }

.hero-bg-tags span {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--border);
  opacity: .5;
  user-select: none;
}
