/* pages.css — secondary-page layouts.
   Uses tokens.css variables and the component vocabulary from components.css.
   v9 stays the homepage; this file styles About, Investors, Innovators,
   Portfolio, Connect, and the article detail pages. */

/* ============ PAGE BASE ============ */
.page {
  padding-top: 96px; /* clear the fixed nav */
}
.page-hero {
  padding: 120px 48px 96px;
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0, 156, 222, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 32px;
  max-width: 22ch;
}
.page-hero-lede {
  font-size: 19px; line-height: 1.6; max-width: 60ch;
  color: var(--text-muted);
  font-weight: 300;
}
.page-hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ============ CTA BUTTONS ============ */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  font-family: var(--body);
}
.cta-btn-primary {
  background: var(--brand-blue); color: var(--navy);
  border-color: var(--brand-blue);
}
.cta-btn-primary:hover {
  background: var(--brand-blue-soft); border-color: var(--brand-blue-soft);
}
.cta-btn-secondary {
  background: transparent; color: var(--white);
  border-color: var(--line-strong);
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.06); border-color: var(--white);
}

/* ============ ABOUT — TEAM GRID ============ */
.team {
  padding: 96px 48px;
  background: var(--navy);
}
.team-inner { max-width: 1400px; margin: 0 auto; }
.team-h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.15;
  margin: 16px 0 56px;
  max-width: 28ch;
}
.team-group + .team-group { margin-top: 64px; }
.team-group .section-label { margin-bottom: 24px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.team-card {
  /* hover-card overrides for team treatment */
  aspect-ratio: 4 / 5;
  background: var(--navy-deep);
}
.team-headshot {
  /* Placeholder treatment when no headshot is wired yet:
     a soft brand-blue gradient with the kangaroo silhouette. Replace with
     real headshots in the Team CMS collection. */
  background: linear-gradient(135deg, rgba(0,156,222,0.18) 0%, var(--navy-deep) 60%);
}
.team-card .hover-content {
  padding: 24px;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px; line-height: 1.55;
  color: var(--text-muted);
  opacity: 0; transition: opacity .35s ease;
}
.team-card:hover .team-bio { opacity: 1; }
.team-card:hover .team-headshot { transform: scale(1.03); filter: brightness(1.05); }

/* When a real bg-team-{slug} class is wired (future), it overrides .team-headshot. */
.team-card .hover-img {
  background-size: cover; background-position: center top;
  transition: transform .5s ease, filter .5s ease;
}

/* ============ ABOUT — VALUES LIST ============ */
.values {
  padding: 96px 48px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.values-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.values-num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--brand-blue);
}
.values-body {
  font-size: 17px; line-height: 1.6; font-weight: 300;
  color: var(--text);
}
.values-body b { font-weight: 600; }

/* ============ ABOUT — ARTICLES GRID ============ */
.articles {
  padding: 96px 48px;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.articles-inner { max-width: 1400px; margin: 0 auto; }
.articles-header {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap;
  gap: 24px; margin-bottom: 40px;
}
.articles-h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.15;
  margin: 16px 0 0; max-width: 28ch;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--navy-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.article-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}
.article-card-image {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  background-color: var(--navy-deepest);
}
.article-card-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.article-card-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.article-card-meta .dot {
  width: 3px; height: 3px; background: var(--text-quiet); border-radius: 50%;
}
.article-card h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 500; line-height: 1.25;
  margin-bottom: 12px;
}
.article-card p {
  font-size: 14px; line-height: 1.55; color: var(--text-muted);
  font-weight: 300; flex-grow: 1;
}
.article-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--brand-blue);
  margin-top: 16px;
}
.article-card-link:hover { color: var(--brand-blue-soft); }

/* ============ INVESTORS — FUND TABLE ============ */
.fund-table-section {
  padding: 96px 48px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.fund-table-inner { max-width: 900px; margin: 0 auto; }
.fund-table-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.2;
  margin: 16px 0 40px; max-width: 28ch;
}
.fund-table { display: grid; grid-template-columns: 1fr; gap: 0; }
.fund-row {
  display: grid; grid-template-columns: 1fr 2fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 16px;
}
.fund-row:last-child { border-bottom: 1px solid var(--line); }
.fund-row dt {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.fund-row dd {
  font-size: 16px; line-height: 1.5; color: var(--text);
  font-weight: 400;
}

/* ============ INVESTORS — WHOLESALE GATE ============ */
.investor-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.investor-gate[hidden] { display: none; }
.investor-gate-card {
  max-width: 560px;
  background: var(--navy-deep);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 40px;
}
.investor-gate-card h2 {
  font-family: var(--display);
  font-size: 26px; font-weight: 500; line-height: 1.25;
  margin: 16px 0 20px;
}
.investor-gate-card p {
  font-size: 15px; line-height: 1.6; color: var(--text-muted);
  margin-bottom: 24px;
}
.investor-gate-card .cta-btn { margin-right: 8px; margin-bottom: 8px; }
.gate-fineprint {
  font-size: 12px; color: var(--text-quiet); margin-top: 24px !important;
}
body.gate-active { overflow: hidden; }

/* ============ INNOVATORS — PROCESS LIST ============ */
.process {
  padding: 96px 48px;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.2;
  margin: 16px 0 48px; max-width: 28ch;
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-step {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 19px; font-weight: 600; margin-bottom: 8px;
}
.process-step p {
  font-size: 14px; line-height: 1.55; color: var(--text-muted); font-weight: 300;
}

/* ============ PORTFOLIO — GRID + DETAIL MODAL ============ */
.portfolio-page .portfolio { padding: 80px 48px; background: var(--navy); }
.portfolio-page .portfolio:nth-of-type(2n) { background: var(--navy-deep); }
.portfolio-inner { max-width: 1400px; margin: 0 auto; }
.portfolio-header {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px;
  max-width: 800px;
}
.portfolio-h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.15;
  margin: 0;
}
.portfolio-grid-fund1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
}
.portfolio-card .hover-content {
  padding: 24px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
}
.port-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.port-fund, .port-state, .port-sector {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(0,13,20,0.55);
  backdrop-filter: blur(4px);
}
.port-fund { border-color: var(--brand-blue); color: var(--brand-blue); }
.port-fund-fund0 { border-color: var(--text-quiet); color: var(--text-muted); }
.port-headline {
  font-size: 14px; line-height: 1.5; margin-top: 8px;
  color: var(--text-muted);
}
.port-detail-btn {
  align-self: flex-start;
  background: transparent; border: none;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  color: var(--brand-blue);
  margin-top: 14px; padding: 0; cursor: pointer;
  transition: color .2s ease;
}
.port-detail-btn:hover { color: var(--brand-blue-soft); }

/* Detail modal */
dialog.port-detail {
  border: 1px solid var(--line-strong);
  background: var(--navy-deep);
  color: var(--text);
  max-width: 720px; width: calc(100% - 48px);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
dialog.port-detail::backdrop {
  background: rgba(0,13,20,0.78);
  backdrop-filter: blur(8px);
}
.port-close {
  position: absolute; top: 12px; right: 16px;
  background: transparent; border: none;
  font-size: 28px; line-height: 1; color: var(--text-muted);
  cursor: pointer;
}
.port-close:hover { color: var(--white); }
.port-detail-eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
dialog.port-detail h2 {
  font-family: var(--display);
  font-size: 32px; font-weight: 500; margin-bottom: 16px;
}
.port-detail-headline {
  font-size: 17px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px;
}
.port-detail-body p {
  font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 16px;
  font-weight: 300;
}
.port-detail .cta-btn { margin-top: 12px; }

/* Fund 0 plain card */
.portfolio-grid-fund0 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.portfolio-card-fund0 {
  aspect-ratio: auto;
  padding: 24px;
  background: var(--navy-deepest);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; flex-direction: column;
  transition: border-color .25s ease;
}
.portfolio-card-fund0:hover { border-color: var(--brand-blue-dim); }
.portfolio-card-fund0 h3 {
  font-family: var(--display);
  font-size: 19px; font-weight: 600; margin: 12px 0 8px;
}
.portfolio-card-fund0 p {
  font-size: 13px; line-height: 1.5; color: var(--text-muted); flex-grow: 1;
  font-weight: 300;
}
.port-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px; font-weight: 600; color: var(--brand-blue);
}
.port-link:hover { color: var(--brand-blue-soft); }

/* ============ INVESTORS / CONNECT — EMBEDS ============ */
.notion-embed, .calendly-inline-widget {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  margin-top: 24px;
  overflow: hidden;
}
.notion-embed iframe { display: block; background: var(--white); }
.embed-fallback {
  font-size: 13px; color: var(--text-muted);
  margin-top: 16px;
  font-weight: 300;
}
.embed-fallback a { color: var(--brand-blue); }

.im-request, .book-meeting {
  padding: 96px 48px;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.im-request:nth-of-type(2n), .book-meeting:nth-of-type(2n) {
  background: var(--navy-deep);
}
.im-request-inner, .book-meeting-inner { max-width: 900px; margin: 0 auto; }
.im-request h2, .book-meeting h2, .apply h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.25;
  margin: 16px 0 16px;
}
.im-request-blurb, .apply-blurb {
  font-size: 15px; line-height: 1.6; color: var(--text-muted);
  font-weight: 300; max-width: 60ch;
}
.im-request-blurb a {
  color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px;
}
.im-request-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}
.im-request-fallback {
  font-size: 12px; color: var(--text-quiet); margin-top: 24px;
}
.im-request-fallback code {
  font-family: var(--mono); font-size: 12px;
  padding: 2px 6px; background: rgba(255,255,255,0.05);
  border-radius: 3px; border: 1px solid var(--line);
  color: var(--text-muted);
}

/* Apply section */
.apply { padding: 96px 48px; background: var(--navy-deep); border-top: 1px solid var(--line); }
.apply-inner { max-width: 900px; margin: 0 auto; }

/* ============ CONNECT — PATHS + GRID + FORM ============ */
.connect-paths { padding: 80px 48px; background: var(--navy); }
.connect-paths-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.connect-card { aspect-ratio: 4/3; }

.contact-grid { padding: 80px 48px; background: var(--navy-deep); border-top: 1px solid var(--line); }
.contact-grid-inner { max-width: 1100px; margin: 0 auto; }
.contact-grid h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.25;
  margin: 16px 0 32px;
}
.contact-grid-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.contact-col h5 {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-col p {
  font-size: 14px; line-height: 1.6; color: var(--text-muted);
  font-weight: 300; margin-bottom: 4px;
}
.contact-col a { color: var(--white); }
.contact-col a:hover { color: var(--brand-blue); }

.contact-form-section {
  padding: 96px 48px;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.contact-form-inner { max-width: 720px; margin: 0 auto; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form label.contact-form-message { grid-column: 1 / -1; }
.contact-form span {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--body); font-size: 15px;
  padding: 12px 14px;
  background: var(--navy-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
}
.contact-form button { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }

/* ============ FOOTER COMPLIANCE ============ */
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.compliance, .ack-country {
  font-size: 12px; line-height: 1.55; color: var(--text-quiet);
  font-weight: 300;
  max-width: 90ch;
}
.ack-country { font-style: italic; }
.compliance-targets { font-size: 11px; color: var(--text-quiet); }
.copy { font-size: 12px; color: var(--text-quiet); }
.footer-address {
  font-size: 13px; line-height: 1.55; color: var(--text-muted); margin-top: 6px;
  font-weight: 300;
}
.footer-country {
  display: inline-block; margin-top: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-blue);
}

/* ============ ARTICLE COVER CLASS HOOKS ============ */
/* Re-use the news-image bg- classes on article covers and cards.
   The image-set() declarations live in layouts.css, scoped to .news-image.
   Re-bind them to .article-cover and .article-card-image here. */
.article-cover.bg-bradfeld,
.article-card-image.bg-bradfeld {
  background-image: url('../images/news/brad-feld.jpg');
  background-image: image-set(
    url('../images/news/brad-feld.avif') type('image/avif'),
    url('../images/news/brad-feld.webp') type('image/webp'),
    url('../images/news/brad-feld.jpg') type('image/jpeg'));
}
.article-cover.bg-showcase,
.article-card-image.bg-showcase {
  background-image: url('../images/news/showcase.jpg');
  background-image: image-set(
    url('../images/news/showcase.avif') type('image/avif'),
    url('../images/news/showcase.webp') type('image/webp'),
    url('../images/news/showcase.jpg') type('image/jpeg'));
}
/* About-page article-card-image lives at the site root and references images/
   without the ../ prefix. Add a duplicate rule that resolves from there. */
body[data-page="about"] .article-card-image.bg-bradfeld {
  background-image: url('../images/news/brad-feld.jpg');
  background-image: image-set(
    url('../images/news/brad-feld.avif') type('image/avif'),
    url('../images/news/brad-feld.webp') type('image/webp'),
    url('../images/news/brad-feld.jpg') type('image/jpeg'));
}
body[data-page="about"] .article-card-image.bg-showcase {
  background-image: url('../images/news/showcase.jpg');
  background-image: image-set(
    url('../images/news/showcase.avif') type('image/avif'),
    url('../images/news/showcase.webp') type('image/webp'),
    url('../images/news/showcase.jpg') type('image/jpeg'));
}

/* ============ ARTICLE DETAIL PAGE ============ */
.article-page {
  padding-top: 96px;
  background: var(--navy);
}
.article-hero {
  padding: 80px 48px 48px;
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy) 100%);
  position: relative;
}
.article-hero-inner {
  max-width: 760px; margin: 0 auto;
}
.article-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: 24px;
}
.article-meta .dot { width: 3px; height: 3px; background: var(--text-quiet); border-radius: 50%; }
.article-h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 24px;
}
.article-dek {
  font-size: 19px; line-height: 1.5; color: var(--text-muted);
  font-weight: 300; max-width: 60ch;
}
.article-cover {
  max-width: 1100px; margin: 0 auto 48px;
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  border-radius: 4px; overflow: hidden;
}
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 0 48px 96px;
  font-size: 18px; line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}
.article-body p { margin-bottom: 20px; }
.article-body p:first-child::first-letter {
  font-size: 64px; font-weight: 600;
  float: left; line-height: 1; margin: 4px 12px 0 0;
  color: var(--brand-blue); font-family: var(--display);
}
.article-body h2 {
  font-family: var(--display);
  font-size: 26px; font-weight: 600;
  margin: 40px 0 16px; letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 20px; font-weight: 600;
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 2px solid var(--brand-blue);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  font-size: 22px; line-height: 1.5; font-style: italic;
  color: var(--text);
}
.article-body a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--brand-blue-soft); }
.article-share {
  max-width: 720px; margin: 0 auto;
  padding: 0 48px 48px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.article-share-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.article-share-row { display: flex; gap: 16px; flex-wrap: wrap; }
.article-share-row a { font-size: 14px; color: var(--text-muted); }
.article-share-row a:hover { color: var(--white); }

.article-related {
  padding: 80px 48px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.article-related-inner { max-width: 1100px; margin: 0 auto; }
.article-related h2 {
  font-family: var(--display);
  font-size: 24px; font-weight: 500;
  margin: 16px 0 24px;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .page-hero, .team, .values, .articles,
  .fund-table-section, .approach, .process,
  .portfolio-page .portfolio, .im-request, .book-meeting,
  .apply, .connect-paths, .contact-grid, .contact-form-section,
  .article-related {
    padding-left: 24px; padding-right: 24px;
  }
  .article-hero { padding: 64px 24px 32px; }
  .article-body { padding: 0 24px 72px; }
  .article-share { padding: 0 24px 32px; }
  .values-list li { grid-template-columns: 56px 1fr; gap: 14px; }
  .fund-row { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { grid-template-columns: 1fr; }
  .investor-gate-card { padding: 28px; }
  .article-body p:first-child::first-letter {
    font-size: 48px; margin-top: 2px;
  }
}
