/* /investors */
.inv-hero {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 0;
  }
  .inv-hero .inner { max-width: 60ch; }
  .inv-hero .eyebrow { margin-bottom: 32px; }
  .inv-hero h1 { letter-spacing: -0.03em; }
  .inv-hero h1 .accent { color: var(--primary-strong); font-style: italic; }
  [data-theme="dark"] .inv-hero h1 .accent { color: var(--primary); }
  .inv-hero .lede { margin: 28px auto 0; max-width: 52ch; }
  .inv-hero .leaf {
    width: 56px; height: 56px;
    color: var(--primary-strong);
    opacity: 0.5;
    margin: 0 auto 40px;
  }
  [data-theme="dark"] .inv-hero .leaf { color: var(--primary); }

  .inv-facts {
    margin: 36px auto 0;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
  }
  .inv-facts span {
    color: var(--border);
    margin: 0 10px;
    font-weight: 400;
  }

  .inv-contact {
    margin-top: 120px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .inv-contact .reach {
    font-size: 17px;
    color: var(--text-soft);
    letter-spacing: -0.01em;
  }
  .inv-contact .reach a {
    color: var(--primary-strong);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in oklab, var(--primary-strong) 40%, transparent);
    padding-bottom: 1px;
  }
  [data-theme="dark"] .inv-contact .reach a { color: var(--primary); border-bottom-color: color-mix(in oklab, var(--primary) 40%, transparent); }
  .inv-contact .reach a:hover { border-bottom-color: currentColor; }
  .inv-contact .reg {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.7;
  }

  @media (max-width: 560px) {
    .inv-facts span { display: block; height: 6px; margin: 0; color: transparent; }
  }
