.page-hero {
    min-height: 70vh;
    background: radial-gradient(ellipse at 40% 100%, #1a4d2e 0%, #0a1f14 70%);
    color: var(--paper);
    padding: 160px var(--gutter) 100px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content:''; position:absolute; inset:0;
    background-image: radial-gradient(circle at 15% 80%, rgba(132,212,154,0.12), transparent 50%),
                      radial-gradient(circle at 85% 20%, rgba(132,212,154,0.07), transparent 50%);
  }
  .page-hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; position: relative; }
  .page-hero h1 {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 300; letter-spacing: -0.045em; line-height: 0.9;
    margin-bottom: 40px;
  }
  .page-hero h1 em { font-style: normal; color: var(--algae); }
  .page-hero .lede { max-width: 560px; opacity: 0.8; font-size: 18px; line-height: 1.65; }

  .timeline {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 40px;
    max-width: 720px;
  }
  .timeline-year {
    font-family: var(--font-mono); font-size: 12px;
    letter-spacing: 0.1em; color: var(--leaf);
    padding-top: 4px; text-align: right;
  }
  .timeline-item {
    padding-bottom: 48px;
    border-left: 1px solid var(--line);
    padding-left: 32px;
    position: relative;
  }
  .timeline-item::before {
    content: '';
    position: absolute; left: -5px; top: 6px;
    width: 9px; height: 9px;
    background: var(--leaf); border-radius: 50%;
  }
  .timeline-item h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.02em; }
  .timeline-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }

  .stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .stat-cell {
    background: var(--paper);
    padding: 48px 32px;
    text-align: center;
  }
  .stat-cell .num {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300; letter-spacing: -0.04em;
    color: var(--ink); line-height: 1;
    margin-bottom: 8px;
  }
  .stat-cell .num em { font-style: normal; color: var(--leaf); }
  .stat-cell p { font-size: 13px; color: var(--muted); line-height: 1.4; }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .value-card {
    background: var(--paper);
    padding: 48px 40px;
  }
  .value-card .icon {
    width: 48px; height: 48px;
    background: var(--mist); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--leaf); margin-bottom: 24px; font-size: 20px;
  }
  .value-card h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; }
  .value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  @media (max-width: 880px) {
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .stat-row { grid-template-columns: 1fr 1fr; }
    .timeline { grid-template-columns: 56px 1fr; gap: 0 20px; }
  }
