/* ============================================================
   ZOFFER — Who We Are (investor page)
   Built on tokens.css + site.css + sections.css.
   Page rhythm: cream manifesto hero → typographic problem chain
   → white-card verticals diagram → glossed why-now grid →
   NAVY founder band → left-aligned capabilities list → navy CTA.
   ============================================================ */

/* ── hero — centered manifesto ── */
.who-hero { padding-block: var(--space-9) var(--space-7); }
.who-hero-inner { max-width: 900px; margin-inline: auto; text-align: center; }
.zoffer .who-hero h1 { font-size: clamp(38px, 5vw, 60px); }
.zoffer .who-hero-inner .sub { max-width: 620px; margin-inline: auto; }

.zoffer .credentials-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: var(--space-3);
  row-gap: var(--space-2);
  margin: var(--space-6) 0 0;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zoffer-navy);
}
.credentials-line .cred-dot {
  color: var(--zoffer-orange);
  font-size: 16px;
  letter-spacing: 0;
}

/* ── problem — numbered chain, no card chrome ── */
.problem-chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  margin-top: var(--space-7);
}
.problem-item { position: relative; }
.problem-num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 44px;
  color: var(--zoffer-orange);
  line-height: 1;
}
.zoffer .problem-title { margin: var(--space-3) 0 var(--space-2); }
.zoffer .problem-body {
  color: var(--zoffer-muted);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  margin: 0;
}
/* chain connector between columns, at numeral height */
.problem-item:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 8px;
  right: -34px;
  color: var(--zoffer-orange);
  font-size: 24px;
  line-height: 1;
}

/* deck-style "closed loop" callout */
.zoffer .problem-close {
  max-width: 68ch;
  margin: var(--space-7) 0 0;
  padding-left: var(--space-5);
  border-left: var(--bw-thick) solid var(--zoffer-orange);
  font-family: var(--font-headline);
  font-style: italic;
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--zoffer-ink);
}

@media (max-width: 760px) {
  .problem-chain { grid-template-columns: 1fr; gap: var(--space-6); }
  .problem-item:not(:last-child)::after { display: none; }
}

/* ============================================================
   THREE VERTICALS DIAGRAM — the only white-card moment
   ============================================================ */
.verticals-diagram {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.vertical-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--bg-surface);
  border: var(--bw-hairline) solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
/* the live product anchors the ecosystem — mirror .price-card-featured */
.vertical-card-live {
  border-color: var(--zoffer-orange);
  border-top: var(--bw-thick) solid var(--zoffer-orange);
  box-shadow: var(--shadow-lg);
}

.vertical-top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.vertical-num { font-family: var(--font-headline); font-weight: 800; font-size: 26px; color: var(--zoffer-orange); line-height: 1; }

.vertical-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.status-live { color: var(--success); background: var(--success-bg); }
.status-dev { color: var(--warning); background: var(--warning-bg); }
.status-roadmap { color: var(--info); background: var(--info-bg); }

.zoffer .vertical-name { margin: 0; }

.zoffer .vertical-money {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 20px;
  color: var(--zoffer-navy);
  margin: 0;
}
.zoffer .vertical-money em { color: var(--zoffer-orange); font-style: italic; }

.zoffer .vertical-desc {
  color: var(--zoffer-muted);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.vertical-foot {
  border-top: var(--bw-hairline) solid var(--border-subtle);
  padding-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vertical-promise { font-size: var(--fs-caption); color: var(--zoffer-muted); }
.vertical-model { font-weight: 700; color: var(--zoffer-navy); font-size: var(--fs-body-sm); }

.vertical-arrow {
  flex: none;
  align-self: center;
  color: var(--zoffer-orange);
}

/* ── return loop: card 3 feeds card 1 ── */
.verticals-loop {
  position: relative;
  height: 96px;
  margin-top: var(--space-2);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.loop-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  color: var(--zoffer-orange);
  overflow: visible;
}
/* crisp filled arrowhead at the curve's end (SVG stretch would distort one) */
.loop-arrowhead {
  position: absolute;
  left: calc(5% - 8px);
  top: -2px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid var(--zoffer-orange);
}
.loop-chip {
  position: relative;
  z-index: 1;
  font-family: var(--font-casual);
  font-size: 21px;
  color: var(--zoffer-navy);
  background: var(--zoffer-cream);
  padding: 6px 22px;
  border: var(--bw-hairline) solid var(--border-default);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.zoffer .verticals-close {
  text-align: center;
  max-width: 64ch;
  margin: var(--space-7) auto 0;
  font-size: var(--fs-body-lg);
  color: var(--zoffer-muted);
}
.verticals-close strong { color: var(--zoffer-navy); }

@media (max-width: 900px) {
  .verticals-diagram { flex-direction: column; }
  .vertical-arrow { transform: rotate(90deg); }
  .verticals-loop { height: auto; margin-top: var(--space-5); }
  .loop-svg, .loop-arrowhead { display: none; }
}

/* ============================================================
   WHY NOW — tailwinds with one-line glosses
   ============================================================ */
.tailwind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
}
.tailwind-grid li {
  background: var(--bg-surface);
  border: var(--bw-hairline) solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.tailwind-grid li b {
  display: block;
  color: var(--zoffer-navy);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.tailwind-grid li span {
  display: block;
  color: var(--zoffer-muted);
  font-size: var(--fs-caption);
  line-height: 1.5;
}

.zoffer .why-now-quote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--zoffer-ink);
  text-align: center;
  max-width: 68ch;
  margin: var(--space-7) auto 0;
  line-height: 1.5;
}
.why-now-quote strong { color: var(--zoffer-orange); font-style: normal; font-weight: 700; }

@media (max-width: 860px) {
  .tailwind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tailwind-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDER — full-bleed navy band (the page's dark moment)
   ⚠ Every text element here sets its colour explicitly at
   .zoffer .classname specificity — see HANDOFF.md contract.
   ============================================================ */
.founder-band { background: var(--zoffer-navy); }
.zoffer .founder-band .h2 { color: #fff; }
.zoffer .founder-band .h2 em { color: var(--zoffer-orange); }

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 860px;
  margin: var(--space-7) auto 0;
  text-align: center;
}
.fstat-num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 40px);
  color: #fff;
  line-height: 1;
}
.fstat-num .unit { font-size: 0.55em; color: var(--zoffer-orange); }
.fstat-lbl {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-body-sm);
  color: var(--fg-on-navy-muted);
}

.zoffer .founder-prose {
  max-width: 720px;
  margin: var(--space-7) auto 0;
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--fg-on-navy-muted);
}
.zoffer .founder-mission {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--zoffer-cream);
  text-align: center;
}
.zoffer .founder-mission em { color: var(--zoffer-orange); font-style: italic; }

@media (max-width: 640px) {
  .founder-stats { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ── team (inside the navy band) ── */
.team {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: var(--bw-hairline) solid rgba(255, 255, 255, 0.14);
}
.zoffer .team-head {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--fg-on-navy-faint);
  text-align: center;
  margin: 0 0 var(--space-6);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.team-card {
  display: flex;
  gap: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: var(--bw-hairline) solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.team-avatar {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--zoffer-orange);
}
/* anonymous advisor — neutral chip, not a branded monogram */
.team-avatar-anon {
  color: var(--fg-on-navy-muted);
  background: rgba(255, 255, 255, 0.10);
  border: var(--bw-hairline) solid rgba(255, 255, 255, 0.20);
}

.team-copy { min-width: 0; }
.team-name {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: 1.25;
  color: #fff;
}
.team-role {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zoffer-orange);
}
.zoffer .team-bio {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  color: var(--fg-on-navy-muted);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ============================================================
   CAPABILITIES — two-column tick list (reuses .showcase-list)
   ============================================================ */
.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-8);
  row-gap: var(--space-4);
  align-items: start;
  margin-top: var(--space-6);
}
.cap-list .text-link { font-size: 14px; }

@media (max-width: 760px) {
  .cap-list { grid-template-columns: 1fr; }
}
