/* css/sections/hero.css */

#hero {
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

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

/* Eyebrow label */
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; background: var(--black); border-radius: 50%;
  animation: heroBlink 2.5s infinite;
}
@keyframes heroBlink { 0%,100%{opacity:1} 50%{opacity:.25} }
.hero-eyebrow-text {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-grey);
}

/* Main title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.93; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.hero-title .italic { font-style: italic; font-weight: 400; color: var(--mid-grey); }

/* Bottom row: body text + CTA */
.hero-bottom {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 4rem;
}
.hero-body {
  max-width: 520px; color: var(--mid-grey);
  font-size: 1rem; font-weight: 300; line-height: 1.75;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }

/* Stats bar */
.hero-stats-row {
  display: flex; margin-top: 5rem;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.hero-stat {
  flex: 1; padding: 1.8rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 600; line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid-grey); margin-top: 4px;
}

@media (max-width: 1024px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: row; align-items: flex-start; }
}
@media (max-width: 768px) {
  .hero-stats-row { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; flex: none; }
  #hero { padding: 120px 0 60px; min-height: unset; }
}
@media (max-width: 480px) {
  .hero-stat { min-width: 100%; }
  .hero-actions { flex-direction: column; }
}
