.page-hero {
    padding: 160px var(--gutter) 100px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .page-hero-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  }
  .page-hero h1 { font-size: clamp(48px,7vw,96px); font-weight:300; letter-spacing:-0.045em; line-height:0.92; }
  .page-hero h1 em { font-style:normal; color:var(--leaf); }

  /* Founders */
  .founders-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--line); border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden;
  }
  .founder-card { background: var(--paper); padding: 56px 48px; }
  .founder-photo {
    width: 140px; height: 140px; border-radius: 50%;
    object-fit: cover; object-position: center top;
    margin-bottom: 28px;
    border: 2px solid var(--line);
  }
  .founder-role-tag {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing:.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 6px; display:block;
  }
  .founder-name { font-size: 24px; font-weight: 500; letter-spacing:-0.025em; margin-bottom: 4px; }
  .founder-diploma { font-size: 13px; color: var(--muted); margin-bottom: 28px; font-family: var(--font-mono); letter-spacing:.03em; }
  .founder-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* Facts table */
  .facts-table {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden;
    font-size: 15px;
  }
  .facts-table tr { border-bottom: 1px solid var(--line); }
  .facts-table tr:last-child { border-bottom: none; }
  .facts-table tr:nth-child(even) td { background: var(--cream); }
  .facts-table td { padding: 18px 32px; vertical-align: middle; }
  .facts-table td:first-child {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing:.08em; text-transform: uppercase;
    color: var(--muted); width: 200px; white-space: nowrap;
  }
  .facts-table td:last-child { font-weight: 500; color: var(--ink); }

  /* Timeline */
  .timeline { display: flex; flex-direction: column; gap: 0; }
  .tl-item {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 0 40px;
    padding-bottom: 0;
  }
  .tl-year-col {
    display: flex; flex-direction: column; align-items: flex-end;
    padding-top: 6px; padding-right: 0;
  }
  .tl-year {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing:.1em; color: var(--leaf);
    text-align: right; white-space: nowrap;
  }
  .tl-year-line {
    flex: 1; width: 1px; background: var(--line);
    margin: 10px auto 0; display: block;
  }
  .tl-content {
    padding: 2px 0 48px 32px;
    border-left: 1px solid var(--line);
    position: relative;
  }
  .tl-content::before {
    content: '';
    position: absolute; left: -5px; top: 7px;
    width: 9px; height: 9px;
    background: var(--leaf); border-radius: 50%;
  }
  .tl-item:last-child .tl-content { padding-bottom: 0; }
  .tl-item:last-child .tl-year-line { display: none; }
  .tl-label {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing:.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px; display:block;
  }
  .tl-content h3 { font-size: 18px; font-weight: 500; letter-spacing:-0.02em; margin-bottom: 10px; }
  .tl-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* Join */
  .join-card {
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
    padding: 56px 64px;
    background: var(--ink); color: var(--paper);
    border-radius: var(--radius-lg);
  }
  .join-card h2 { font-size: clamp(24px,3vw,40px); font-weight:300; letter-spacing:-0.03em; margin-bottom:12px; }
  .join-card p { opacity:.65; font-size:15px; line-height:1.6; }

  @media (max-width: 880px) {
    .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .founders-grid { grid-template-columns: 1fr; }
    .join-card { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 600px) {
    .tl-item { grid-template-columns: 72px 1fr; }
    .facts-table td:first-child { width: auto; }
  }
