:root {
  --paper: #f6f7f2;
  --paper-deep: #ecefe7;
  --ink: #122119;
  --forest: #174d37;
  --forest-dark: #0e3526;
  --lime: #e9ff70;
  --orange: #ff6846;
  --muted: #526159;
  --line: rgba(18, 33, 25, 0.18);
  --line-light: rgba(246, 247, 242, 0.2);
  --white: #ffffff;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-space: clamp(72px, 10vw, 144px);
  --header-height: 76px;
  --shadow-soft: 0 24px 70px rgba(18, 33, 25, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.125rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:active,
button:active {
  opacity: 0.72;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.65rem, 3vw, 3.2rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  max-width: 72ch;
}

main,
main * {
  min-width: 0;
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--paper);
}

.evidence :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--lime);
  box-shadow: 0 0 0 7px var(--forest-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

section[id],
.pathways[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.eyebrow,
.card-label,
.case-index,
.timeline-period,
.skill-number {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: var(--lime);
}

.lead,
.section-lead {
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading-wide {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.section-heading-wide > div {
  grid-column: span 7;
}

.section-heading-wide .section-lead {
  grid-column: span 5;
  margin-bottom: 4px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: #dcf25e;
}

.button-dark {
  color: var(--paper);
  background: var(--forest-dark);
}

.button-dark:hover {
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  background: var(--white);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--forest);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.8rem;
}

.text-link,
.case-link,
.pathway-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  width: min(100% - (2 * var(--gutter)), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 6px;
  align-items: center;
  font-size: 0.79rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--forest);
}

.site-nav .nav-cta {
  min-height: 44px;
  padding-inline: 16px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: var(--forest-dark);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
}

.hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 126px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 76px);
  align-items: stretch;
}

.hero-copy {
  grid-column: span 7;
  align-self: center;
  animation: hero-enter 480ms ease both;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 32px;
  font-size: clamp(2.85rem, 8.5vw, 7.5rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero h1 span {
  position: relative;
  z-index: 1;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.04em;
  bottom: 0.03em;
  height: 0.18em;
  border-radius: 999px;
  background: var(--lime);
  transform: rotate(-1deg);
}

.hero-summary {
  min-height: 5.1em;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.audience-control {
  max-width: 680px;
  margin-bottom: 28px;
}

.audience-control > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.audience-buttons {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.audience-buttons button {
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 820;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.audience-buttons button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--forest);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.noscript-note {
  margin-top: 20px;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  font-size: 0.85rem;
}

.hero-proof {
  position: relative;
  grid-column: span 5;
  min-height: 620px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--forest);
  box-shadow: var(--shadow-soft);
}

.hero-proof-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proof-kicker {
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-statement {
  max-width: 10ch;
  margin-bottom: 52px;
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-proof-list {
  margin-bottom: 0;
  border-top: 1px solid var(--line-light);
}

.hero-proof-list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-light);
}

.hero-proof-list dt {
  color: rgba(246, 247, 242, 0.72);
  font-size: 0.82rem;
}

.hero-proof-list dd {
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.proof-shape {
  position: absolute;
  border-radius: 50%;
}

.proof-shape-lime {
  top: -70px;
  right: -68px;
  width: 240px;
  height: 240px;
  background: var(--lime);
}

.proof-shape-orange {
  top: 132px;
  right: 58px;
  width: 96px;
  height: 96px;
  background: var(--orange);
}

.evidence {
  padding-block: clamp(62px, 7vw, 92px);
  color: var(--paper);
  background: var(--forest-dark);
}

.evidence-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.evidence-intro .eyebrow {
  margin-bottom: 9px;
}

.evidence h2 {
  max-width: none;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.evidence-item {
  position: relative;
  min-height: 152px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.evidence-item::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(246, 247, 242, 0.5);
}

.evidence-item.is-emphasized {
  color: var(--ink);
  background: var(--lime);
}

.evidence-item.is-emphasized::after {
  border-color: var(--ink);
  background: var(--ink);
}

.evidence-item dt {
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.evidence-item dd {
  max-width: 24ch;
  color: inherit;
  font-size: 0.82rem;
  opacity: 0.77;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 90px);
}

.about-grid .section-heading {
  grid-column: span 5;
  margin-bottom: 0;
}

.about-copy {
  grid-column: 7 / span 6;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-points li {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 770;
}

.projects {
  border-top: 1px solid var(--line);
}

.projects.audience-focus .section-heading h2,
.education.audience-focus .section-heading h2 {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.08em;
}

.case-studies {
  display: grid;
  gap: clamp(32px, 5vw, 68px);
}

.case-study {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.case-study-wide .case-media {
  grid-column: span 7;
}

.case-study-wide .case-copy {
  grid-column: span 5;
}

.case-study-balanced .case-media {
  grid-column: span 5;
}

.case-study-balanced .case-copy {
  grid-column: span 7;
}

.case-media,
.project-card-media {
  position: relative;
  min-height: 0;
  padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px) 0;
  overflow: hidden;
}

.case-media img,
.project-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: top;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 20px 46px rgba(18, 33, 25, 0.2);
  transition: transform 180ms ease;
}

.case-study:hover .case-media img,
.project-card:hover .project-card-media img {
  transform: scale(1.02);
}

.case-media picture,
.project-card-media picture {
  height: auto;
  aspect-ratio: 4 / 3;
}

.media-green {
  background: var(--forest);
}

.media-lime {
  background: var(--lime);
}

.media-orange {
  background: var(--orange);
}

.media-paper {
  background: var(--paper-deep);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 70px);
}

.case-copy h3,
.project-card-copy h3 {
  margin-bottom: 12px;
}

.case-copy > p:not(.case-index, .case-meta),
.project-card-copy > p:not(.case-index, .case-meta) {
  color: var(--muted);
}

.case-meta {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 780;
}

.result-block {
  margin-top: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.result-block strong,
.result-block span {
  display: block;
}

.result-block strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.result-block span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 740;
}

.case-link {
  align-self: flex-start;
  margin-top: 8px;
}

.supporting-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 68px);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.project-card-media {
  min-height: 320px;
  padding: 24px 24px 0;
}

.project-card-copy {
  padding: clamp(26px, 4vw, 42px);
}

.project-card-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.experience {
  color: var(--paper);
  background: var(--forest);
}

.experience .eyebrow,
.experience .case-meta,
.experience .timeline-period {
  color: var(--lime);
}

.experience .section-lead {
  color: rgba(246, 247, 242, 0.72);
}

.timeline {
  border-top: 1px solid var(--line-light);
}

.timeline-entry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  padding-block: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line-light);
}

.timeline-company {
  grid-column: span 4;
}

.timeline-company h3 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.timeline-roles {
  grid-column: 6 / span 7;
  display: grid;
  gap: 32px;
}

.timeline-roles section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-light);
}

.timeline-roles section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-roles h4 {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.timeline-roles p {
  color: rgba(246, 247, 242, 0.72);
}

.timeline-entry-secondary {
  color: var(--ink);
  background: var(--lime);
  margin-inline: calc(-1 * clamp(20px, 3vw, 38px));
  padding-inline: clamp(20px, 3vw, 38px);
}

.timeline-entry-secondary .timeline-period,
.timeline-entry-secondary .timeline-roles p {
  color: var(--ink);
}

.experience-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
}

.experience-more p {
  margin-bottom: 0;
  color: rgba(246, 247, 242, 0.72);
}

.experience .button-outline {
  border-color: var(--lime);
  color: var(--lime);
}

.experience .button-outline:hover {
  color: var(--ink);
  background: var(--lime);
}

.palu-section {
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--forest);
}

.palu-section .eyebrow,
.palu-section .section-lead,
.palu-section .section-lead p {
  color: var(--paper);
}

.palu-section .section-lead p {
  margin-bottom: 14px;
}

.palu-section .text-link {
  color: var(--lime);
}

.palu-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.palu-projects a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.palu-projects a:hover {
  color: var(--ink);
  background: var(--lime);
}

.palu-projects strong {
  max-width: 16ch;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.palu-projects a > span:last-child {
  color: rgba(246, 247, 242, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.palu-projects a:hover > span:last-child {
  color: var(--ink);
}

.project-type {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.palu-projects a:hover .project-type {
  color: var(--forest);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(42px, 6vw, 76px);
  background: var(--line-light);
}

.direction-grid article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
  background: var(--paper);
}

.direction-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

.direction-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.study-focus {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.study-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 64px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.study-grid article:last-child {
  color: var(--paper);
  background: var(--forest-dark);
}

.study-grid h3 {
  max-width: 13ch;
  margin-bottom: 22px;
}

.study-grid article > p:not(.card-label) {
  margin-bottom: 30px;
  color: var(--muted);
}

.study-grid article:last-child > p:not(.card-label) {
  color: rgba(246, 247, 242, 0.72);
}

.study-grid .button {
  margin-top: auto;
}

.study-grid article:last-child .button-outline {
  border-color: var(--lime);
  color: var(--lime);
}

.documents {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.document-grid article {
  grid-column: span 4;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.document-grid article:nth-child(4),
.document-grid article:nth-child(5) {
  grid-column: span 6;
}

.document-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.document-grid article > p:not(.card-label) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.document-grid .button {
  margin-top: auto;
}

.education {
  background: var(--paper-deep);
}

.education-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.degree-card,
.research-card {
  min-height: 620px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius-lg);
}

.degree-card {
  color: var(--paper);
  background: var(--forest);
}

.degree-card .card-label {
  color: var(--lime);
}

.degree-card h3 {
  margin-bottom: 10px;
}

.degree-name {
  color: rgba(246, 247, 242, 0.7);
}

.degree-gpa {
  font-variant-numeric: tabular-nums;
  margin-block: clamp(36px, 6vw, 74px);
  font-size: 1rem;
}

.degree-gpa span {
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.degree-details {
  border-top: 1px solid var(--line-light);
}

.degree-details section {
  padding-block: 18px;
  border-bottom: 1px solid var(--line-light);
}

.degree-details h4 {
  margin-bottom: 6px;
}

.degree-details p {
  margin-bottom: 0;
  color: rgba(246, 247, 242, 0.7);
  font-size: 0.85rem;
}

.research-card {
  color: var(--ink);
  background: var(--lime);
}

.research-card .card-label {
  color: var(--ink);
}

.research-lead {
  max-width: 52ch;
  font-size: 1.2rem;
}

.research-steps {
  display: grid;
  gap: 0;
  margin: 36px 0;
  padding: 0;
  border-top: 1px solid rgba(18, 33, 25, 0.25);
  list-style: none;
}

.research-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(18, 33, 25, 0.25);
}

.research-steps span {
  font-size: 0.72rem;
  font-weight: 850;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.community-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.community-card-featured {
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-0.7deg);
}

.community-card-featured .card-label {
  color: var(--ink);
}

.community-card h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
}

.community-card p:not(.card-label) {
  color: var(--muted);
}

.community-card-featured p:not(.card-label) {
  color: var(--ink);
}

.talks {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 88px);
  margin-top: clamp(52px, 8vw, 96px);
  padding-top: clamp(42px, 6vw, 68px);
  border-top: 1px solid var(--line);
}

.talks-intro h3 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.talks-intro p:not(.card-label) {
  color: var(--muted);
}

.talk-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.talk-list a {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 780;
  text-decoration: none;
}

.talk-list a:hover {
  padding-left: 10px;
  color: var(--forest);
}

.skills {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skills-grid article {
  grid-column: span 4;
  min-height: 260px;
  padding: clamp(25px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skills-grid article:nth-child(4),
.skills-grid article:nth-child(5) {
  grid-column: span 6;
}

.skills-grid h3 {
  font-size: 1.45rem;
}

.skills-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(38px, 7vw, 100px);
}

.credentials-grid .section-heading {
  margin-bottom: 0;
}

.credential-groups {
  border-top: 1px solid var(--line);
}

.credential-groups details {
  border-bottom: 1px solid var(--line);
}

.credential-groups summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 4px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

.credential-groups summary::-webkit-details-marker {
  display: none;
}

.credential-groups summary span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 150ms ease;
}

.credential-groups details[open] summary span {
  transform: rotate(45deg);
}

.credential-groups ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0;
  padding: 0 0 24px;
  list-style: none;
}

.credential-groups li {
  border-top: 1px solid rgba(18, 33, 25, 0.1);
}

.credential-groups a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 9px 2px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 720;
}

.pathways {
  padding-block: clamp(86px, 12vw, 154px);
  color: var(--ink);
  background: var(--orange);
}

.pathways-inner {
  text-align: center;
}

.pathways .eyebrow {
  color: var(--ink);
}

.pathways h2 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.pathways-inner > p:not(.eyebrow) {
  margin: 28px auto 38px;
  font-size: 1.12rem;
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.site-footer {
  padding-block: 58px max(58px, env(safe-area-inset-bottom));
  color: var(--paper);
  background: var(--forest-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
}

.brand-on-dark {
  color: var(--paper);
}

.footer-grid > div:first-child p {
  margin: 18px 0 0;
  color: rgba(246, 247, 242, 0.67);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-links a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  font-size: 0.82rem;
  font-weight: 760;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(246, 247, 242, 0.55);
  font-size: 0.74rem;
}

.update-notice {
  position: fixed;
  z-index: 300;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(390px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: var(--paper);
  background: var(--forest-dark);
  box-shadow: var(--shadow-soft);
}

.update-notice p {
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.update-notice > div {
  display: flex;
  gap: 8px;
}

.update-notice .button-dark {
  color: var(--ink);
  background: var(--lime);
}

.utility-page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
}

.utility-header {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-block: 20px;
}

.utility-main {
  width: min(100% - (2 * var(--gutter)), 800px);
  margin: auto;
  padding-block: 64px;
}

.utility-main h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.utility-main > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a:not(.nav-cta) {
    font-size: 0.74rem;
  }

  .hero-proof {
    min-height: 570px;
  }

  .case-study-wide .case-media,
  .case-study-balanced .case-media {
    grid-column: span 6;
  }

  .case-study-wide .case-copy,
  .case-study-balanced .case-copy {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-copy,
  .hero-proof {
    grid-column: span 3;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8.4vw, 5rem);
  }

  .hero-proof {
    min-height: 560px;
  }

  .section-heading-wide > div {
    grid-column: span 6;
  }

  .section-heading-wide .section-lead {
    grid-column: span 6;
  }

  .section-heading-wide {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .case-study {
    display: block;
  }

  .about-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .about-grid .section-heading,
  .about-copy {
    grid-column: span 3;
  }

  .timeline-company {
    grid-column: span 5;
  }

  .timeline-roles {
    grid-column: 6 / span 7;
  }

  .education-grid,
  .talks,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .degree-card,
  .research-card {
    min-height: auto;
  }

  .community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .community-card-featured {
    grid-column: span 2;
    min-height: 270px;
  }

  .palu-projects {
    grid-template-columns: repeat(2, 1fr);
  }

  .document-grid article,
  .document-grid article:nth-child(4),
  .document-grid article:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 839px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .js .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: var(--gutter);
    left: var(--gutter);
    width: auto;
    max-height: calc(100dvh - var(--header-height) - 30px);
    display: grid;
    align-content: start;
    gap: 3px;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 150ms ease,
      visibility 150ms ease,
      transform 150ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .js .site-nav a {
    justify-content: center;
    min-height: 48px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  .section-heading-wide,
  .hero-grid,
  .about-grid,
  .case-study,
  .timeline-entry {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-proof,
  .section-heading-wide > div,
  .section-heading-wide .section-lead,
  .about-grid .section-heading,
  .about-copy,
  .case-study-wide .case-media,
  .case-study-balanced .case-media,
  .case-study-wide .case-copy,
  .case-study-balanced .case-copy,
  .timeline-company,
  .timeline-roles {
    grid-column: 1;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-summary {
    min-height: 0;
  }

  .hero-proof {
    min-height: 510px;
  }

  .evidence-intro {
    grid-template-columns: 1fr;
  }

  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-copy {
    margin-top: 0;
  }

  .case-study {
    display: block;
  }

  .case-media {
    min-height: 390px;
  }

  .supporting-work {
    grid-template-columns: 1fr;
  }

  .timeline-entry {
    gap: 34px;
  }

  .timeline-company h3 {
    max-width: none;
  }

  .experience-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-card-featured {
    grid-column: auto;
  }

  .palu-projects,
  .direction-grid,
  .study-grid {
    grid-template-columns: 1fr;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .document-grid article,
  .document-grid article:nth-child(4),
  .document-grid article:nth-child(5) {
    grid-column: auto;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-grid article,
  .skills-grid article:nth-child(4),
  .skills-grid article:nth-child(5) {
    grid-column: auto;
  }

  .skills-grid article:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 479px) {
  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

  .audience-buttons {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .audience-buttons button {
    width: 100%;
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-proof {
    min-height: 480px;
  }

  .proof-statement {
    margin-bottom: 36px;
    font-size: 2.6rem;
  }

  .evidence-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid article:last-child {
    grid-column: auto;
  }

  .evidence-item {
    min-height: 126px;
  }

  .case-media,
  .project-card-media {
    min-height: 300px;
    padding: 18px 18px 0;
  }

  .case-copy,
  .project-card-copy {
    padding: 26px 22px;
  }

  .degree-card,
  .research-card,
  .community-card {
    padding: 28px 22px;
  }

  .degree-gpa span {
    font-size: 4.7rem;
  }

  .credential-groups ul {
    grid-template-columns: 1fr;
  }

  .pathway-links,
  .pathway-links .button,
  .pathway-links .pathway-link {
    width: 100%;
  }

  .pathway-links .pathway-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .audience-control,
  .hero-actions,
  .update-notice {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .hero,
  .evidence,
  .experience,
  .pathways,
  .site-footer {
    padding-block: 28px;
    color: #000;
    background: #fff;
  }

  .case-study,
  .project-card,
  .degree-card,
  .research-card,
  .community-card {
    break-inside: avoid;
    color: #000;
    background: #fff;
  }
}
