#hero,
.careers-hero {
  background: var(--grad-hero-bg);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.careers-hero {
  min-height: 60vh;
  padding-top: var(--space-xl);
}

#hero-canvas {
  height: 100%;
  inset: 0;
  opacity: var(--hero-canvas-opacity);
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: var(--z-canvas);
}

.hero-watermark {
  color: rgba(0, 229, 255, 0.02);
  font-family: var(--font-display);
  font-size: 40vw;
  left: 50%;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  z-index: var(--z-content);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  letter-spacing: 0.02em;
  line-height: var(--leading-tight);
  margin-top: var(--space-md);
}

.hero-title span {
  display: block;
}

.hero-sub {
  color: var(--gray-300);
  margin-top: var(--space-sm);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn-arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-trust {
  align-items: center;
  color: var(--gray-100);
  display: inline-flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero-visual {
  min-height: 460px;
  position: relative;
}

.stat-card,
.terminal-card {
  backdrop-filter: blur(12px);
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-md);
  position: absolute;
}

.stat-card {
  animation: floatCard 6s ease-in-out infinite;
  width: 200px;
}

.stat-card--1 {
  left: 0;
  top: 20px;
}

.stat-card--2 {
  right: 10%;
  top: 120px;
  animation-delay: 0.6s;
}

.stat-card--3 {
  left: 25%;
  top: 250px;
  animation-delay: 1.2s;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
}

.stat-label {
  color: var(--gray-300);
  font-size: var(--size-small);
  margin-top: var(--space-xs);
}

.stat-icon {
  color: var(--cyan);
  font-size: 1.8rem;
}

.terminal-card {
  inset: auto 0 0 auto;
  max-width: 320px;
  min-width: 280px;
}

.terminal-bar {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.dot {
  border-radius: var(--radius-circle);
  height: 9px;
  width: 9px;
}

.dot.red {
  background: var(--red-dot);
}

.dot.yellow {
  background: var(--yellow-dot);
}

.dot.green {
  background: var(--green-dot);
}

.terminal-body {
  display: grid;
  font-family: var(--font-mono);
  gap: 0.35rem;
}

.t-line {
  color: var(--gray-100);
  opacity: 0;
  transform: translateY(8px);
  animation: terminalLine 0.6s forwards;
}

.t-line:nth-child(1) { animation-delay: 0.6s; }
.t-line:nth-child(2) { animation-delay: 1.2s; }
.t-line:nth-child(3) { animation-delay: 1.8s; }
.t-line:nth-child(4) { animation-delay: 2.4s; }
.t-line:nth-child(5) { animation-delay: 2.8s; }

.t-cmd {
  color: var(--cyan);
}

.success {
  color: var(--green-ok);
}

.blink {
  animation: cursorBlink 1s infinite;
}

.hero-scroll-indicator {
  align-items: center;
  bottom: var(--space-md);
  color: var(--gray-300);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: var(--size-small);
  gap: 0.35rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: var(--z-content);
}

.scroll-line {
  animation: scrollPulse 2s ease-in-out infinite;
  background: var(--grad-text);
  border-radius: var(--radius-pill);
  height: 60px;
  transform-origin: top;
  width: 1px;
}

.hero-text .hero-label,
.hero-text .hero-title span,
.hero-text .hero-sub,
.hero-text .hero-actions,
.hero-text .hero-trust,
.hero-visual .stat-card,
.hero-visual .terminal-card {
  animation: slideUp 0.8s var(--ease-out) both;
}

.hero-text .hero-title .line-1 { animation-delay: 0.2s; }
.hero-text .hero-title .line-2 { animation-delay: 0.35s; }
.hero-text .hero-title .line-3 { animation-delay: 0.5s; }
.hero-text .hero-sub { animation-delay: 0.65s; }
.hero-text .hero-actions { animation-delay: 0.8s; }
.hero-text .hero-trust { animation-delay: 0.95s; }
.hero-visual .stat-card--1 { animation-delay: 1s; }
.hero-visual .stat-card--2 { animation-delay: 1.1s; }
.hero-visual .stat-card--3 { animation-delay: 1.2s; }
.hero-visual .terminal-card { animation-delay: 1.3s; }
