/* ══════════════════════════════════════════════════════════════
   About Page – EatCrayons
   Uses design tokens from styles.css :root
   ══════════════════════════════════════════════════════════════ */

/* ── HERO — Neon light streaks + team photo ── */
.abt-hero {
  position: relative;
  background: #060816;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 100px 40px 0;
}

/* ── Layer 1: Ambient atmosphere — large soft color pools ── */
.abt-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    /* Blue pool — upper right quadrant */
    radial-gradient(ellipse 50% 45% at 75% 20%, rgba(68,140,247,0.07) 0%, transparent 100%),
    /* Purple pool — left center */
    radial-gradient(ellipse 40% 50% at 15% 50%, rgba(139,92,246,0.05) 0%, transparent 100%),
    /* Orange warm pool — behind subjects */
    radial-gradient(ellipse 35% 40% at 68% 55%, rgba(242,179,123,0.04) 0%, transparent 100%),
    /* Blue deep pool — bottom center */
    radial-gradient(ellipse 60% 30% at 50% 90%, rgba(68,140,247,0.06) 0%, transparent 100%),
    /* Purple accent — top right corner */
    radial-gradient(ellipse 25% 20% at 95% 5%, rgba(139,92,246,0.08) 0%, transparent 100%);
}

/* ── Layer 2: Animated neon streaks ── */
.abt-streaks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Base streak — thin horizontal line with radial fade */
.streak {
  position: absolute;
  height: 2px;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ═══ KEYFRAMES ═══ */
@keyframes drift-right {
  0%, 100% { transform: translateX(-8%); }
  50%      { transform: translateX(8%); }
}
@keyframes drift-left {
  0%, 100% { transform: translateX(8%); }
  50%      { transform: translateX(-8%); }
}
@keyframes drift-right-pulse {
  0%   { transform: translateX(-8%); opacity: 0.3; }
  50%  { transform: translateX(8%);  opacity: 1; }
  100% { transform: translateX(-8%); opacity: 0.3; }
}
@keyframes drift-left-pulse {
  0%   { transform: translateX(8%);  opacity: 0.3; }
  50%  { transform: translateX(-8%); opacity: 1; }
  100% { transform: translateX(8%);  opacity: 0.3; }
}

/* Shooting star — flies across screen then resets */
@keyframes shoot-right {
  0%   { transform: translateX(-120%); opacity: 0; }
  5%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(120%);  opacity: 0; }
}
@keyframes shoot-left {
  0%   { transform: translateX(120%);  opacity: 0; }
  5%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(-120%); opacity: 0; }
}

/* ═══ PRIMARY STREAKS — Bold with glow ═══ */

/* Orange — behind heads */
.streak--orange-1 {
  --streak-o: 0.95;
  width: 48%; top: 36%; left: 48%;
  background: radial-gradient(ellipse at center, rgba(242,179,123,0.95) 0%, transparent 70%);
  box-shadow: 0 0 20px 6px rgba(242,179,123,0.10);
  animation: drift-right-pulse 8s ease-in-out infinite;
}
.streak--orange-1e {
  --streak-o: 0.4;
  width: 35%; height: 1px; top: 33%; left: 52%;
  background: radial-gradient(ellipse at center, rgba(242,179,123,0.40) 0%, transparent 70%);
  animation: drift-right 10s ease-in-out infinite 1s;
}

/* Purple — upper left */
.streak--purple-1 {
  --streak-o: 0.9;
  width: 55%; top: 5%; left: -3%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.90) 0%, transparent 70%);
  box-shadow: 0 0 18px 5px rgba(139,92,246,0.08);
  animation: drift-left-pulse 9s ease-in-out infinite;
}
.streak--purple-1e {
  --streak-o: 0.35;
  width: 32%; height: 1px; top: 8%; left: 2%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.35) 0%, transparent 70%);
  animation: drift-left 12s ease-in-out infinite 2s;
}

/* Blue — left edge */
.streak--blue-l {
  --streak-o: 1;
  width: 50%; height: 3px; top: 44%; left: -22%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,1) 0%, transparent 65%);
  box-shadow: 0 0 24px 8px rgba(68,140,247,0.15);
  animation: drift-right-pulse 7s ease-in-out infinite;
}
.streak--blue-le {
  --streak-o: 0.35;
  width: 34%; height: 1px; top: 47%; left: -12%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,0.35) 0%, transparent 70%);
  animation: drift-right 9s ease-in-out infinite 1s;
}

/* Blue — right edge */
.streak--blue-r {
  --streak-o: 0.92;
  width: 48%; height: 2.5px; top: 52%; right: -22%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,0.92) 0%, transparent 65%);
  box-shadow: 0 0 20px 6px rgba(68,140,247,0.12);
  animation: drift-left-pulse 8s ease-in-out infinite 1s;
}
.streak--blue-re {
  --streak-o: 0.28;
  width: 30%; height: 1px; top: 55%; right: -10%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,0.28) 0%, transparent 70%);
  animation: drift-left 10s ease-in-out infinite 2s;
}

/* Orange — lower left */
.streak--orange-2 {
  --streak-o: 0.9;
  width: 44%; top: 78%; left: -6%;
  background: radial-gradient(ellipse at center, rgba(242,179,123,0.90) 0%, transparent 70%);
  box-shadow: 0 0 16px 5px rgba(242,179,123,0.10);
  animation: drift-right-pulse 9s ease-in-out infinite 0.5s;
}
.streak--orange-2e {
  --streak-o: 0.32;
  width: 26%; height: 1px; top: 81%; left: 2%;
  background: radial-gradient(ellipse at center, rgba(242,179,123,0.32) 0%, transparent 70%);
  animation: drift-right 11s ease-in-out infinite 2s;
}

/* Purple — lower right */
.streak--purple-2 {
  --streak-o: 0.88;
  width: 52%; top: 86%; right: -10%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.88) 0%, transparent 70%);
  box-shadow: 0 0 18px 6px rgba(139,92,246,0.10);
  animation: drift-left-pulse 8s ease-in-out infinite 2s;
}
.streak--purple-2e {
  --streak-o: 0.30;
  width: 30%; height: 1px; top: 89%; right: 0%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.30) 0%, transparent 70%);
  animation: drift-left 10s ease-in-out infinite 3s;
}

/* ═══ SECONDARY STREAKS — Thinner, subtler ═══ */
.streak--s1 {
  --streak-o: 0.55;
  width: 36%; height: 1.5px; top: 14%; right: 2%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.55) 0%, transparent 70%);
  animation: drift-left-pulse 10s ease-in-out infinite 0.5s;
}
.streak--s2 {
  --streak-o: 0.42;
  width: 22%; height: 1px; top: 11%; left: 2%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.42) 0%, transparent 70%);
  animation: drift-right-pulse 11s ease-in-out infinite 2s;
}
.streak--s3 {
  --streak-o: 0.28;
  width: 18%; height: 1px; top: 10%; right: 0%;
  background: radial-gradient(ellipse at center, rgba(242,179,123,0.28) 0%, transparent 70%);
  animation: drift-left 13s ease-in-out infinite 3s;
}
.streak--s4 {
  --streak-o: 0.20;
  width: 38%; height: 1.5px; top: 60%; left: 5%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,0.20) 0%, transparent 70%);
  animation: drift-right-pulse 9s ease-in-out infinite 1s;
}
.streak--s5 {
  --streak-o: 0.15;
  width: 32%; height: 1px; top: 62%; right: 10%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.15) 0%, transparent 70%);
  animation: drift-left 12s ease-in-out infinite 4s;
}
.streak--s6 {
  --streak-o: 0.12;
  width: 65%; height: 1px; top: 94%; left: 15%;
  background: radial-gradient(ellipse at center, rgba(68,140,247,0.12) 0%, transparent 70%);
  animation: drift-right 14s ease-in-out infinite 1s;
}

/* ═══ SHOOTING STARS — Fly across the screen ═══ */

/* Blue — shoots right, upper area */
.streak--shoot-1 {
  width: 25%; height: 2px; top: 15%; left: 0;
  background: linear-gradient(to right, transparent, rgba(68,140,247,0.9) 40%, rgba(68,140,247,0.4) 70%, transparent);
  box-shadow: 0 0 12px 3px rgba(68,140,247,0.15);
  animation: shoot-right 3s linear infinite;
}

/* Orange — shoots left, mid area */
.streak--shoot-2 {
  width: 20%; height: 2px; top: 40%; right: 0;
  background: linear-gradient(to left, transparent, rgba(242,179,123,0.9) 40%, rgba(242,179,123,0.4) 70%, transparent);
  box-shadow: 0 0 12px 3px rgba(242,179,123,0.12);
  animation: shoot-left 4s linear infinite 1.5s;
}

/* Purple — shoots right, lower-mid */
.streak--shoot-3 {
  width: 22%; height: 1.5px; top: 65%; left: 0;
  background: linear-gradient(to right, transparent, rgba(139,92,246,0.85) 40%, rgba(139,92,246,0.35) 70%, transparent);
  box-shadow: 0 0 10px 3px rgba(139,92,246,0.10);
  animation: shoot-right 3.5s linear infinite 2.5s;
}

/* Blue — shoots left, near bottom */
.streak--shoot-4 {
  width: 30%; height: 1.5px; top: 88%; right: 0;
  background: linear-gradient(to left, transparent, rgba(68,140,247,0.7) 40%, rgba(68,140,247,0.3) 70%, transparent);
  box-shadow: 0 0 8px 2px rgba(68,140,247,0.10);
  animation: shoot-left 4.5s linear infinite 3.5s;
}

/* Orange — shoots right, upper-mid (thin, fast) */
.streak--shoot-5 {
  width: 18%; height: 1px; top: 28%; left: 0;
  background: linear-gradient(to right, transparent, rgba(242,179,123,0.7) 40%, rgba(242,179,123,0.3) 70%, transparent);
  animation: shoot-right 2.5s linear infinite 5s;
}

/* Purple — shoots left, lower (thin) */
.streak--shoot-6 {
  width: 24%; height: 1px; top: 72%; right: 0;
  background: linear-gradient(to left, transparent, rgba(139,92,246,0.6) 40%, rgba(139,92,246,0.25) 70%, transparent);
  animation: shoot-left 3s linear infinite 2s;
}

/* ── Static whisper lines (stay on ::before) ── */
.abt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(ellipse 72% 1px at 50% 20%, rgba(68,140,247,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 60% 1px at 45% 26%, rgba(68,140,247,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 48% 1px at 60% 30%, rgba(139,92,246,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 28% 1px at 14% 32%, rgba(242,179,123,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 52% 1px at 42% 50%, rgba(139,92,246,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 80% 1px at 50% 58%, rgba(68,140,247,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 44% 1px at 55% 66%, rgba(139,92,246,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 32% 1px at 32% 70%, rgba(68,140,247,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 26% 1px at 82% 72%, rgba(242,179,123,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 65% 1px at 50% 94%, rgba(68,140,247,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 40% 1px at 38% 97%, rgba(139,92,246,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 20% 1px at 62% 91%, rgba(242,179,123,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Layer 3: Scan-line texture + noise (below content) ── */
.abt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    /* Subtle scan lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.012) 3px,
      rgba(255,255,255,0.012) 4px
    ),
    /* Noise texture via SVG */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: auto, 200px 200px;
  pointer-events: none;
}

.abt-hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: end;
}

.abt-hero-content {
  padding-bottom: 80px;
  position: relative;
  z-index: 5;
}

.abt-hero-eyebrow {
  font-family: var(--font-body);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.abt-hero-h {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.abt-hero-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 480px;
}

/* Photo — mix-blend-mode: lighten makes black bg transparent */
.abt-hero-photo {
  position: relative;
  z-index: 5;
  align-self: end;
}

/* Warm glow behind subjects */
.abt-hero-photo::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 20%;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(242,179,123,0.12) 0%,
    rgba(139,92,246,0.06) 40%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.abt-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  /* Soft fade — bottom + sides for seamless blend */
  -webkit-mask-image:
    linear-gradient(to bottom, black 50%, transparent 96%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, black 50%, transparent 96%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Bottom gradient fade — hero into next section */
.abt-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  z-index: 4;
  pointer-events: none;
}


/* ── STORY — Founder narrative ── */
.abt-story {
  background: white;
  padding: 120px 40px 140px;
  color: var(--dark);
}

.abt-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.abt-story-label-col {
  position: sticky;
  top: 120px;
}

.abt-story-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  display: block;
}

.abt-story-h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 40px;
}

.abt-story-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.abt-story-body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(0,0,0,0.55);
  margin-bottom: 24px;
  max-width: 68ch;
}

.abt-story-sig {
  margin-top: 48px;
}

.abt-story-sig img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0.85;
  margin-bottom: 16px;
  filter: invert(1);
}

.abt-story-sig-name {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.abt-story-sig-title {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,0.40);
  margin-top: 4px;
}


/* ── WHY THE NAME — 4 pillars ── */
.abt-name {
  background: var(--dark);
  color: white;
  position: relative;
  /* Tall section — extra height = scroll runway for the horizontal movement */
  /* JS will calculate exact height based on card track overflow */
}

/* Subtle top divider line */
.abt-name::before {
  content: '';
  display: block;
  max-width: 1200px;
  margin: 0 auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 120px;
}

/* Header wrapper — normal flow, scrolls away before cards pin */
.abt-name-header-wrap {
  padding: 64px 40px 72px;
}

.abt-name-inner {
  max-width: 100%;
  margin: 0 auto;
}

.abt-name-header {
  max-width: 640px;
}

/* Sticky container — cards only, fills viewport, vertically centered */
.abt-name-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.abt-name-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.abt-name-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
}

.abt-name-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* Horizontal scroll track — driven by vertical page scroll */
.abt-name-scroll-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Edge fades removed — clean edge-to-edge scroll */

.abt-name-bento {
  display: flex;
  gap: 0;
  will-change: transform;
}

/* Progress bar hidden */
.abt-name-progress {
  display: none;
}

.abt-name-card {
  position: relative;
  flex: 0 0 100vw;
  border-radius: 0;
  padding: 80px 64px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  border: none;
  transition: box-shadow 300ms ease;
}

.abt-name-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Featured — same full-width in scroll layout */
.abt-name-card--featured {
  flex: 0 0 100vw;
}

.abt-name-card--featured .abt-name-card-inner {
  max-width: none;
}

.abt-name-card--featured .abt-name-card-h {
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
}

/* Giant background number — matching home page card-number style */
.abt-name-bg-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  right: 40px;
  bottom: -40px;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
}

.abt-name-card--featured .abt-name-bg-num {
  font-size: clamp(240px, 32vw, 440px);
  right: 60px;
  bottom: -50px;
}

/* Solid gradient fills — matching home page service cards */
.abt-name-card--blue {
  background: linear-gradient(145deg, #5B9BF9 0%, #4080E8 100%);
}

.abt-name-card--purple {
  background: linear-gradient(145deg, #9061F9 0%, #7C3AED 100%);
}

.abt-name-card--orange {
  background: linear-gradient(145deg, #EB9B4B 0%, #A04B0F 100%);
}

.abt-name-card--purple-blue {
  background: linear-gradient(145deg, #7C3AED 0%, #4080E8 100%);
}

.abt-name-card-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.abt-name-num {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}

.abt-name-card-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 24px;
}

.abt-name-card--featured .abt-name-card-h {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.abt-name-card-p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
}


/* ── VALUES — What we stand for ── */
.abt-values {
  background: white;
  padding: 120px 40px 140px;
  color: var(--dark);
}

.abt-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.abt-values-header {
  margin-bottom: 64px;
}

.abt-values-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.30);
  margin-bottom: 16px;
}

.abt-values-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.abt-values-list {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.abt-val {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
  transition: background 200ms ease;
}

.abt-val:hover {
  background: rgba(0,0,0,0.015);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 12px;
}

.abt-val-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  padding-top: 4px;
}

.abt-val-h {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.abt-val-p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.50);
  max-width: 68ch;
}


/* ── CTA — Drive to action ── */
.abt-cta {
  background: var(--dark);
  padding: 120px 40px 140px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow behind CTA */
.abt-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.abt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.abt-cta-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.abt-cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
  max-width: 520px;
  margin: 0 auto 48px;
}

.abt-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.abt-cta-link {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 200ms ease;
}

.abt-cta-link:hover {
  color: rgba(255,255,255,0.75);
}


/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .abt-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abt-hero-content {
    padding-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .abt-hero-sub {
    max-width: 100%;
    margin: 0 auto;
  }
  .abt-hero-photo {
    max-width: 800px;
    margin: 0 auto;
  }
  .abt-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abt-story-label-col {
    position: static;
  }
}


@media (max-width: 860px) {
  .abt-hero {
    padding: 120px 24px 0;
    min-height: auto;
  }
  .abt-hero-h {
    font-size: clamp(3rem, 10vw, 4.5rem);
  }
  .abt-story {
    padding: 80px 24px 100px;
  }
  .abt-story-inner {
    gap: 24px;
  }
  .abt-name-sticky {
    height: 100vh;
  }
  .abt-name-header-wrap {
    padding: 48px 24px 56px;
  }
  .abt-name::before {
    padding-top: 80px;
  }
  .abt-name-card {
    flex: 0 0 min(340px, 80vw);
    padding: 36px 32px;
  }
  .abt-name-card--featured {
    flex: 0 0 min(400px, 85vw);
    padding: 36px 32px;
  }
  .abt-values {
    padding: 80px 24px 100px;
  }
  .abt-val {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
  .abt-cta {
    padding: 80px 24px 100px;
  }
}

@media (max-width: 560px) {
  .abt-hero {
    padding: 100px 16px 0;
  }
  .abt-hero-content {
    text-align: left;
  }
  .abt-hero-sub {
    font-size: 15px;
  }
  .abt-story {
    padding: 64px 16px 80px;
  }
  .abt-name::before {
    padding-top: 64px;
  }
  .abt-name-card {
    flex: 0 0 min(280px, 85vw);
    padding: 32px 28px;
  }
  .abt-name-card--featured {
    flex: 0 0 min(300px, 88vw);
    padding: 32px 28px;
  }
  .abt-values {
    padding: 64px 16px 80px;
  }
  .abt-val {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .abt-val-num {
    padding-top: 0;
  }
  .abt-cta {
    padding: 64px 16px 80px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .abt-name-card {
    transition: none;
  }
  .streak {
    animation: none !important;
  }
}
