/* ============================================================
   about.css — About / founder page
   Requires: tokens.css + base.css + site.css loaded first.
   Tokens only. Mobile-first.
   ============================================================ */

/* ── HERO (branded, no stock photo) ───────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-surface-blue);
  text-align: center;
}
.about-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 20%, var(--glow-primary), transparent 70%),
    radial-gradient(38% 38% at 82% 6%, var(--glow-accent-soft), transparent 70%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
}
.about-hero__avatar {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto var(--sp-6);
  border-radius: var(--r-full);
  border: 5px solid var(--c-bg);
  background: var(--c-bg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-hero__title {
  font-size: var(--text-5xl);
  text-wrap: balance;
}
.about-hero__descr {
  margin-top: var(--sp-3);
  font-size: var(--text-xl);
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
}

/* ── BIO prose (editorial) ────────────────────────────────── */
.about-bio__col {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--c-text-2);
  text-wrap: pretty;
}
.about-bio__col + .about-bio__col {
  margin-top: var(--sp-6);
}
.about-bio__col p {
  margin: 0;
}
.about-bio__col p + p {
  margin-top: var(--sp-5);
}
/* prose links (e.g. the /testimonials link) read clearly as links */
.about-bio__col a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Lead — larger opening */
.about-bio__lead {
  font-size: var(--text-xl);
  color: var(--c-text);
  line-height: var(--lh-relaxed);
  text-wrap: pretty;
}
/* Greeting — confident opener (replaces the awkward float drop-cap) */
.about-bio__greeting {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}

/* Skim-path crossheads (dual-readership) — a skimmer reading only these
   still gets the full story arc */
.about-bio__crosshead {
  margin-bottom: var(--sp-5);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
  text-wrap: balance;
}

/* Bulleted beat (clients / sales / profit) */
.about-bio__list {
  margin: var(--sp-3) 0 0;
  padding-left: var(--sp-6);
}
.about-bio__list li {
  margin-top: var(--sp-2);
  line-height: var(--lh-relaxed);
}
.about-bio__list li::marker { color: var(--c-primary); }
/* breathing room when a highlight follows the bulleted beat */
.about-bio__list + .about-bio__highlight { margin-top: var(--sp-10); }

/* Inline emphasis on existing striking sentences */
.about-bio__highlight {
  margin-block: var(--sp-6);
  padding-left: var(--sp-5);
  border-left: 3px solid var(--c-accent);
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  color: var(--c-text);
  line-height: var(--lh-snug);
  text-wrap: pretty;
}

/* Vertical rhythm between narrative beats / inserted bands */
.about-bio .container + .container {
  margin-top: var(--sp-10);
}

/* ── «3 свободы» feature row ──────────────────────────────── */
.about-freedoms {
  list-style: none;
  margin: var(--sp-8) auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  max-width: var(--max-width-narrow);
}
/* card treatment — finished, tactile look on mobile (was boxless/centered) */
.about-freedoms__item {
  text-align: left;
  padding: var(--sp-6);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.about-freedoms__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--sp-12);
  height: var(--sp-12);
  margin-bottom: var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--c-surface-blue);
  color: var(--c-primary);
}
.about-freedoms__label {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
  text-wrap: balance;
}
.about-freedoms__text {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--c-text-2);
  text-wrap: pretty;
}

/* ── Mentors band (names → chips) ─────────────────────────── */
.about-mentors {
  max-width: var(--max-width-narrow);
  margin: var(--sp-6) auto 0;
  padding: var(--sp-8);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
/* Honor-roll roster — names flow into clean columns, each with a blue marker */
.about-mentors__roster {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: var(--sp-8);
}
.about-mentors__name {
  break-inside: avoid;
  position: relative;
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  line-height: var(--lh-snug);
}
.about-mentors__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: var(--sp-2);
  height: var(--sp-2);
  border-radius: var(--r-full);
  background: var(--c-primary);
}
/* Tail of the original sentence ("…и еще много других…") kept visible;
   the named marketers themselves are lifted verbatim into the chips above. */
.about-mentors__note {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: var(--text-base);
  color: var(--c-text-muted);
}

/* ── MISSION ──────────────────────────────────────────────── */
.about-mission__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.about-mission__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.about-mission__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.about-mission__img--1 {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}
.about-mission__img--2 { aspect-ratio: 4 / 3; }
.about-mission__img--3 { aspect-ratio: 4 / 3; }
.about-mission__title {
  font-size: var(--text-4xl);
  text-transform: uppercase;
  text-wrap: balance;
}
.about-mission__descr {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--c-text-2);
  text-wrap: pretty;
}
.about-mission__descr p { margin: 0; }
.about-mission__descr p + p { margin-top: var(--sp-5); }

/* ── VALUES ───────────────────────────────────────────────── */
.about-values__title {
  margin-bottom: var(--sp-12);
}
/* Editorial "credo" list — full-width rows, big number gutter, hairline
   dividers. Handles very uneven text lengths without empty boxes. */
.about-values__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max-width-narrow);
}
.about-values__item {
  padding-block: var(--sp-10);
  border-top: 1px solid var(--c-border);
}
.about-values__item:first-child {
  padding-top: 0;
  border-top: 0;
}
.about-values__symbol {
  display: block;
  margin-bottom: var(--sp-4);
  font-size: var(--text-5xl);
  font-weight: var(--fw-extrabold);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--c-primary);
}
.about-values__body { min-width: 0; }
.about-values__name {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
  text-wrap: balance;
}
.about-values__descr {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--c-text-2);
  text-wrap: pretty;
}
.about-values__descr p { margin: 0; }
.about-values__descr p + p { margin-top: var(--sp-4); }

/* ── DESKTOP ──────────────────────────────────────────────── */
@media (min-width: 769px) {
  .about-freedoms {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-bio__crosshead { font-size: var(--text-3xl); }
  .about-mentors__roster { column-count: 3; }
  .about-mission__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
  /* number moves into a left gutter beside the text */
  .about-values__item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: var(--sp-8);
    align-items: start;
  }
  .about-values__symbol {
    margin-bottom: 0;
    font-size: var(--text-6xl);
  }
}

/* ── FINAL CTA (mirrors home) ─────────────────────────────── */
.final-cta__sub {
  margin-top: var(--sp-5);
  font-size: var(--text-xl);
  color: var(--c-text-inv);
  opacity: 0.92;
  line-height: var(--lh-relaxed);
  text-wrap: pretty;
}

/* ── SMALL MOBILE ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .about-hero__avatar { width: 140px; height: 140px; }
  .about-hero__title { font-size: var(--text-4xl); }
  .about-bio__highlight { font-size: var(--text-lg); }
}
