/**
 * Single responsibility: Editorial typographic statement block
 * in the hero section. No boxes, no borders — pure flowing text.
 */

/* ─── Section Wrapper ───────────────────────────────────────────────────────── */
.hero_value-section {
  position: relative;
  z-index: 5;
  padding: var(--space-12) 0 var(--space-6);
}

/* ─── Editorial Container ───────────────────────────────────────────────────── */
.hero_value-editorial {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--space-8);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

/* ─── Ambient Glow — no visible shape, just warmth behind text ──────────────── */
.hero_value-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.07) 0%,
    rgba(99, 102, 241, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

/* ─── Eyebrow ───────────────────────────────────────────────────────────────── */
.hero_value-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(96, 165, 250, 0.7);
}

/* Thin decorative lines either side of the eyebrow */
.hero_value-eyebrow::before,
.hero_value-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4));
}
.hero_value-eyebrow::after {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.4), transparent);
}

/* ─── Manifesto Paragraph ───────────────────────────────────────────────────── */
.hero_value-manifesto {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(203, 213, 225, 0.75);
  line-height: 2;
  letter-spacing: 0.012em;
  margin: 0;
  font-style: normal;
}

/* ─── Key Phrase Highlights — inline, no wrapping disruption ────────────────── */
.hero_value-phrase {
  font-style: normal;
  font-weight: 600;
  color: white;
  position: relative;
  display: inline;
  padding: 0 2px;
}

/* Four distinct phrase colours */
.hero_value-phrase--1 { color: #93c5fd; }
.hero_value-phrase--2 { color: #c4b5fd; }
.hero_value-phrase--3 { color: #6ee7b7; }
.hero_value-phrase--4 { color: #fde68a; }
/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero_value-editorial {
    padding-inline: var(--space-5);
    gap: var(--space-3);
  }

  .hero_value-manifesto {
    line-height: 1.85;
  }
}

@media (max-width: 480px) {
  .hero_value-section {
    padding: var(--space-8) 0 var(--space-4);
  }

  .hero_value-editorial {
    padding-inline: var(--space-4);
  }
}
