/* Why Seed Out — hero banner (indigo & amber mission palette) */

.wso-hero {
  --wso-bg-start: #1a1f45;
  --wso-bg-mid: #2a3568;
  --wso-bg-end: #1a5c42;
  --wso-accent: #fbbf24;
  --wso-accent-soft: rgba(251, 191, 36, 0.16);
  --wso-cool-glow: rgba(147, 197, 253, 0.12);
  --wso-text: #ffffff;
  --wso-text-muted: rgba(255, 255, 255, 0.82);
  --wso-btn-primary-bg: #ffffff;
  --wso-btn-primary-text: #1a1f45;
  --wso-btn-primary-hover: #fff8e8;
  --wso-glass-bg: rgba(255, 255, 255, 0.1);
  --wso-glass-border: rgba(255, 255, 255, 0.2);

  background: linear-gradient(135deg, var(--wso-bg-start) 0%, var(--wso-bg-mid) 50%, var(--wso-bg-end) 100%);
  padding-bottom: 48px;
  min-height: auto;
  position: relative;
  margin-top: 0;
}

.wso-hero > .nav-section {
  margin-top: 0;
  top: 0;
}

.wso-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 38%, var(--wso-accent-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, var(--wso-cool-glow) 0%, transparent 50%);
  pointer-events: none;
}

.wso-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 41px;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
}

.wso-hero__eyebrow {
  display: inline-block;
  font-family: Outfit, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wso-accent);
  margin-bottom: 8px;
}

.wso-hero__heading {
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  color: var(--wso-text);
  line-height: 1.15;
  margin: 0 0 16px;
}

.wso-hero__lead {
  font-family: Outfit, sans-serif;
  font-size: 1.0625rem;
  color: var(--wso-text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 520px;
}

.wso-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wso-btn-primary {
  background: var(--wso-btn-primary-bg);
  color: var(--wso-btn-primary-text) !important;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.wso-btn-primary:hover {
  background: var(--wso-btn-primary-hover);
  color: var(--wso-btn-primary-text) !important;
  text-decoration: none;
}

.wso-btn-outline {
  background: transparent;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.wso-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  text-decoration: none;
}

.wso-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wso-hero__visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 24px 20px;
  background: var(--wso-glass-bg);
  border: 1px solid var(--wso-glass-border);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wso-hero__visual-card img {
  width: 100%;
  max-width: 380px;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.wso-hero__stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wso-hero__stat {
  background: var(--wso-glass-bg);
  border: 1px solid var(--wso-glass-border);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.wso-hero__stat-num {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 900;
  color: var(--wso-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.wso-hero__stat-label {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 991px) {
  .wso-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .wso-hero__lead {
    max-width: 100%;
  }

  .wso-hero__stat-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .wso-hero__stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .wso-hero__stat-cards {
    grid-template-columns: 1fr 1fr;
  }

  .wso-hero__cta {
    flex-direction: column;
  }

  .wso-hero__cta .btn {
    width: 100%;
    text-align: center;
  }
}
