/* _hero.css */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--bg-primary);
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}


.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}

.text-gradient {
  background: linear-gradient(135deg, #FFF 30%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  font-style: italic;
  font-family: Georgia, serif; /* Or keep Inter italics */
  font-weight: 400;
  color: var(--accent-primary);
  -webkit-text-fill-color: var(--accent-primary);
}

.hero-p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
}

.btn-hero-primary {
  background: var(--accent-primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  font-weight: 600;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-hero-outline:hover {
  border-color: var(--accent-hover);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

/* Counters */
.hero-counters {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 64px;
}

.hero-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-counter-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-counter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Companies Dropdown overrides */
.hero-companies-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: var(--shadow-lg);
}

.hero-companies-dropdown.hidden {
  display: none;
}
