.page-hero {
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--rule);
}
.page-hero .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}
.page-hero .h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -0.02em;
    margin: 20px 0 0;
    max-width: 17ch;
}
.page-hero .h1 em { font-style: italic; color: var(--accent); }
.page-hero .lede { margin: 0; }

/* ---- section pattern ---- */
.about-section {
    padding: 96px 0;
    border-bottom: 1px solid var(--rule);
}
.about-section:last-of-type { border-bottom: none; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.about-section .eyebrow { margin-bottom: 16px; }
.about-section .h2 { max-width: 14ch; margin: 0 0 4px; }
.about-section .label-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}

/* ---- mission ---- */
.mission-h {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin-bottom: 24px;
}
.mission-h em { font-style: italic; color: var(--accent); }
.mission .body { font-size: 18px; max-width: 60ch; }

/* ---- technology ---- */
.tech-body p { margin: 0 0 16px; }
.tech-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
}
.tech-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tech-list li:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--rule); }
.tech-list li:nth-child(even) { padding-left: 24px; }
.tech-list .k {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.tech-list .v {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
}
.tech-figure .photo { aspect-ratio: 4 / 5; }

/* ---- team ---- */
.team-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card .photo {
    aspect-ratio: 4 / 5;
    margin-bottom: 16px;
    background: var(--paper-2);
}
.team-card .photo.t1 { background: linear-gradient(160deg, var(--accent) 0%, var(--ink-2) 100%); }
.team-card .photo.t2 { background: linear-gradient(160deg, var(--accent-2) 0%, var(--accent) 100%); }
.team-card .photo.t3 { background: linear-gradient(160deg, var(--ink-2) 0%, var(--ink) 100%); }
.team-card .photo.t4 { background: linear-gradient(160deg, var(--rule) 0%, var(--accent-2) 100%); }
.team-card .photo.t1::before, .team-card .photo.t2::before, .team-card .photo.t3::before, .team-card .photo.t4::before { opacity: 0.15; }
.team-card .name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}
.team-card .role {
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 8px;
}
.team-card .bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ---- track record ---- */
.track {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 48px;
}
.track-cell {
    background: var(--paper);
    padding: 48px 36px;
}
.track-cell .num {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 400;
}
.track-cell .num em { font-style: italic; color: var(--accent); }
.track-cell .h3 { margin-bottom: 8px; max-width: 16ch; }
.track-cell .body { font-size: 15px; margin: 0; }

/* ---- pull quote ---- */
.pull {
    padding: 120px 0;
    text-align: center;
}
.pull blockquote {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.012em;
    max-width: 26ch;
    margin: 24px auto 28px;
    color: var(--ink);
}
.pull blockquote::before {
    content: "\201C";
    display: block;
    font-family: var(--serif);
    font-size: 80px;
    line-height: 0.5;
    color: var(--accent);
    margin-bottom: 30px;
}
.pull cite {
    font-style: normal;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  white-space:nowrap;
  gap: 10px;
}

/* ---- cta band ---- */
.cta-band {
    background: var(--ink);
    color: var(--paper);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(87,144,171,0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(156,205,219,0.25) 0%, transparent 50%);
    pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}
.cta-band .eyebrow { color: var(--accent-2); }
.cta-band .eyebrow::before { background: var(--accent-2); }
.cta-band .h2 { color: var(--paper); margin: 20px 0 16px; max-width: 18ch; }
.cta-band .lede { color: rgba(250,250,247,0.75); margin: 0; }
.cta-band .cta-row { justify-content: flex-end; }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.cta-band .btn-secondary { color: var(--paper); border-color: rgba(250,250,247,0.4); }
.cta-band .btn-secondary:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

@media (max-width: 860px) {
    .page-hero .grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .tech-list { grid-template-columns: 1fr; }
    .tech-list li:nth-child(odd) { padding-right: 0; border-right: none; }
    .tech-list li:nth-child(even) { padding-left: 0; }
    .track-grid { grid-template-columns: 1fr; }
    .cta-band-inner { grid-template-columns: 1fr; gap: 24px; }
    .cta-band .cta-row { justify-content: flex-start; }
}