.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding: 100px 0 76px;
  overflow: hidden;
}

/* Vignette so the hash-texture body background stays visible at the hero's
   edges but fades out behind the logo/tagline where legibility matters most. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 40%, rgba(6, 6, 7, 0.92) 0%, rgba(6, 6, 7, 0.55) 55%, transparent 85%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  text-align: center;
}

.hero .eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero img.hero__logo {
  display: block;
  max-width: 420px;
  width: 90%;
  margin: 0 auto 20px;
}

.hero p.tagline {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.features {
  padding: 64px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  padding: 22px;
  box-shadow: var(--shadow-lift);
}

.feature:nth-child(3n+2) { border-top-color: var(--red); }

.feature h3 {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
}

.stats-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}
.stats-strip__item {
  flex: 1;
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid var(--border);
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--yellow);
}
.stats-strip__label {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
