/* ============================================
   NEXTPULSE PRO — about.css
   ============================================ */

/* ── HERO ───────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--bg-surface);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}
.about-hero__bg-word {
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(0, 200, 224, 0.04);
  line-height: 1;
  white-space: nowrap;
  margin-right: -2rem;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero__left h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  margin-top: 1rem;
}
.about-hero__lead {
  font-size: 1.1rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.about-hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: var(--border);
}
.about-stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.about-stat__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── STORY BLOCKS ───────────────────────── */
.story-section { background: var(--bg); }
.story-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: var(--border);
}
.story-block:last-child { border-bottom: none; }

.story-block__label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(244,248,250,0.25);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.story-block__label-accent { color: var(--white); }

.story-block__content p {
  font-size: 1rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.story-block__content p:last-of-type { margin-bottom: 0; }

/* ── PILLARS ────────────────────────────── */
.pillars-section { background: var(--bg-surface); }
.pillars-header {
  padding-top: var(--section-pad);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pillars-header .eyebrow { margin-bottom: 1rem; }
.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border);
}
.pillar {
  padding: clamp(2.5rem, 4vw, 4rem);
  border-right: var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-card); }

.pillar__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar__text {
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.75;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-block       { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-block__label { position: static; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .pillar            { border-right: none; border-bottom: var(--border); }
  .pillar:last-child { border-bottom: none; }
  .about-hero__stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .about-hero__stats { flex-direction: column; gap: 1.25rem; }
}
