/* ═══════════════════════════════════════
   HERO — Dark background + swirl + stats
═══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px 56px 90px;
  overflow: hidden;
  background: #050505;
}

/* Swirling curve texture */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg svg {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 75%;
  height: 120%;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: fadeUp 0.6s ease both;
}

/* Eyebrow */
.hero-eyebrow {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.hero-eyebrow em {
  font-style: normal;
  color: var(--teal);
  font-weight: 400;
}

/* Big bold wordmark */
.hero-wordmark {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-wordmark .accent {
  color: var(--teal);
}

/* Body text */
.hero-body {
  max-width: 700px;
  margin-bottom: 36px;
}

.hero-body .label {
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  display: inline;
}

.hero-body p {
  display: inline;
  font-size: 15px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 40px 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  gap: 6px;
  min-width: 160px;
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -2px;
}

.hstat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   HERO — RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 70px;
    min-height: auto;
  }

  .hero-wordmark {
    font-size: 42px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }

  .hstat {
    min-width: calc(50% - 1px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
