:root {
  --ink: #08111f;
  --ink-soft: #101c2e;
  --paper: #f3f5f2;
  --white: #ffffff;
  --text: #1d2938;
  --muted: #667384;
  --line: #d6dbd7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --lime: #c8ff37;
  --lime-soft: #e5ff9f;
  --blue: #6d99ff;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; background: var(--lime); color: var(--ink); padding: 10px 14px; font-weight: 800; text-decoration: none; border-radius: 8px; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 245, 242, 0.88);
  border-bottom: 1px solid rgba(8, 17, 31, 0.09);
  backdrop-filter: blur(18px);
}
.nav-shell { width: min(var(--max), calc(100% - 48px)); min-height: 74px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; width: max-content; color: var(--ink); font-size: 0.92rem; font-weight: 850; letter-spacing: -0.02em; text-decoration: none; }
.wordmark-mark { display: grid; place-items: center; width: 32px; aspect-ratio: 1; background: var(--ink); color: var(--lime); border-radius: 8px; font: 800 0.9rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a, .nav-contact { position: relative; color: #344153; font-size: 0.82rem; font-weight: 750; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--ink); transition: right 180ms ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-contact { justify-self: end; color: var(--ink); }
.nav-contact span { color: #6b8500; }
.menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; padding: 12px 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; overflow: clip; padding: 92px 0 0; background: var(--paper); }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; right: -180px; top: -180px; border: 1px solid rgba(8, 17, 31, 0.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(8, 17, 31, 0.018), 0 0 0 160px rgba(8, 17, 31, 0.014); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.58fr); gap: 74px; align-items: center; min-height: 550px; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: #526070; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.signal { position: relative; width: 9px; height: 9px; background: #7ea500; border-radius: 50%; box-shadow: 0 0 0 6px rgba(126, 165, 0, 0.12); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 870px; margin: 0; color: var(--ink); font-size: clamp(3.45rem, 7.3vw, 7.15rem); font-weight: 760; line-height: 0.93; letter-spacing: -0.068em; }
h1 em { position: relative; z-index: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 em::after { content: ""; position: absolute; z-index: -1; left: -0.02em; right: -0.03em; bottom: 0.04em; height: 0.16em; background: var(--lime); transform: rotate(-1deg); }
.hero-intro { max-width: 700px; margin: 32px 0 0; color: #4c5968; font-size: clamp(1.04rem, 1.35vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border: 1px solid transparent; border-radius: 10px; font-size: 0.84rem; font-weight: 820; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(8, 17, 31, 0.15); }
.button-primary span { color: var(--lime); }
.button-secondary { border-color: #c9cfcb; background: rgba(255, 255, 255, 0.52); color: var(--ink); }
.button-secondary:hover { background: var(--white); }
.button-dark { margin-top: 25px; background: var(--ink); color: var(--white); }
.button-dark span { color: var(--lime); }

.hero-console { align-self: center; overflow: hidden; background: var(--ink); color: #dbe4ef; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.console-bar { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; border-bottom: 1px solid var(--line-dark); background: var(--ink-soft); font: 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.console-state { color: var(--lime); }
.console-state::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: currentColor; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.console-list { margin: 0; padding: 22px 22px 13px; font: 0.78rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.console-list div { display: grid; grid-template-columns: 80px 1fr; gap: 13px; padding: 12px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.11); }
.console-list dt { color: #7f8da1; }
.console-list dt::after { content: ":"; }
.console-list dd { margin: 0; color: #edf4fb; }
.console-footer { padding: 14px 22px 22px; color: #aebaca; font: 0.75rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.console-footer > span:first-child { color: var(--lime); margin-right: 8px; }
.cursor { display: inline-block; width: 7px; height: 1.1em; margin-left: 5px; vertical-align: -0.16em; background: var(--lime); animation: blink 1.2s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 84px; border: 1px solid var(--line); border-bottom: 0; background: rgba(255, 255, 255, 0.45); }
.proof-strip div { min-height: 130px; padding: 24px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 1.55rem; line-height: 1; letter-spacing: -0.04em; }
.proof-strip span { display: block; max-width: 170px; color: var(--muted); font-size: 0.77rem; line-height: 1.4; }

.section { padding: 124px 0; border-top: 1px solid var(--line); }
.section-index { margin: 0 0 20px; color: #687586; font: 750 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.09em; text-transform: uppercase; }
.split-heading { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 110px; }
h2 { margin: 0; color: var(--ink); font-size: clamp(2.75rem, 5.6vw, 5.65rem); line-height: 0.98; letter-spacing: -0.058em; }
.about-copy { max-width: 720px; padding-top: 43px; }
.about-copy p { color: #53606f; font-size: 1rem; }
.about-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(1.28rem, 2vw, 1.7rem); line-height: 1.42; letter-spacing: -0.025em; }
.role-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.role-list span, .tag-row span { display: inline-flex; align-items: center; min-height: 31px; padding: 5px 10px; border: 1px solid #cdd3cf; border-radius: 999px; color: #485563; background: rgba(255, 255, 255, 0.48); font-size: 0.72rem; font-weight: 750; }

.section-ink { background: var(--ink); color: #dce5ef; border-color: transparent; }
.section-heading { max-width: 810px; margin-bottom: 66px; }
.section-heading h2 { max-width: 780px; }
.section-heading > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); }
.section-heading.inverse .section-index { color: #92a0b2; }
.section-heading.inverse h2 { color: var(--white); }
.section-heading.inverse > p:last-child { color: #9caabd; }
.section-heading.compact { margin-bottom: 46px; }
.experience-list { border-top: 1px solid var(--line-dark); }
.experience-item { display: grid; grid-template-columns: 260px 1fr; gap: 72px; padding: 54px 0; border-bottom: 1px solid var(--line-dark); }
.experience-meta { display: flex; flex-direction: column; gap: 7px; color: #7f8da1; font: 0.73rem/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.experience-meta .date { color: var(--lime); }
.company { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 8px; color: var(--white); font-size: 0.88rem; font-weight: 800; }
.company span { color: #8795a8; font-size: 0.73rem; font-weight: 600; }
.experience-body h3 { margin: 0 0 23px; color: var(--white); font-size: clamp(1.65rem, 2.5vw, 2.4rem); line-height: 1.15; letter-spacing: -0.035em; }
.experience-body ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.experience-body li { position: relative; padding-left: 20px; color: #aebaca; font-size: 0.9rem; }
.experience-body li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 2px; background: var(--lime); }
.recognition { margin: 24px 0 0; color: var(--lime-soft); font-size: 0.78rem; font-weight: 750; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-card { display: grid; grid-template-columns: 42px 1fr; gap: 20px; min-height: 360px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.28); transition: background 180ms ease, transform 180ms ease; }
.project-card:hover { position: relative; z-index: 1; background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.project-featured { grid-column: 1 / -1; grid-template-columns: 52px 1fr; min-height: 390px; background: var(--lime); }
.project-featured:hover { background: #d4ff5e; }
.project-number { color: #7a8794; font: 700 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.project-featured .project-number { color: #566f00; }
.project-content { display: flex; flex-direction: column; align-items: flex-start; }
.project-content h3 { margin: 8px 0 14px; color: var(--ink); font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.1; letter-spacing: -0.04em; }
.project-content > p:not(.project-type) { max-width: 780px; margin: 0; color: #566270; font-size: 0.9rem; }
.project-featured .project-content > p:not(.project-type) { color: #293800; font-size: 1rem; }
.project-type { margin: 0; color: #71808f; font: 750 0.68rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.07em; text-transform: uppercase; }
.project-featured .project-type { color: #567000; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.project-featured .tag-row span { border-color: rgba(8, 17, 31, 0.24); background: rgba(255, 255, 255, 0.2); color: var(--ink); }
.inline-link { display: inline-flex; gap: 6px; margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 0.78rem; font-weight: 850; text-underline-offset: 4px; }
.project-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: auto; }

.research { overflow: clip; background: var(--lime); }
.research-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 92px; align-items: center; }
.research .section-index, .research .section-heading > p:last-of-type { color: #506700; }
.publication-card { position: relative; overflow: hidden; padding: 42px; background: var(--ink); color: var(--white); border-radius: var(--radius); box-shadow: 18px 18px 0 rgba(8, 17, 31, 0.1); }
.publication-card::after { content: ""; position: absolute; right: -65px; bottom: -65px; width: 210px; height: 210px; border: 1px solid rgba(200, 255, 55, 0.22); border-radius: 50%; box-shadow: 0 0 0 32px rgba(200, 255, 55, 0.035), 0 0 0 64px rgba(200, 255, 55, 0.025); }
.publication-label { display: flex; justify-content: space-between; gap: 18px; color: var(--lime); font: 750 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
blockquote { position: relative; z-index: 1; margin: 55px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.9rem, 3.5vw, 3.2rem); line-height: 1.12; letter-spacing: -0.035em; }
.publication-role { color: #9eacbd; font-size: 0.82rem; }
.research-metrics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 38px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.research-metrics div { min-height: 125px; padding: 17px; background: var(--ink-soft); }
.research-metrics strong { display: block; color: var(--lime); font-size: 1.55rem; line-height: 1; }
.research-metrics span { display: block; margin-top: 9px; color: #a6b2c1; font-size: 0.69rem; line-height: 1.4; }
.research-note { position: relative; z-index: 1; max-width: 620px; margin: 25px 0 0; color: #929fb0; font-size: 0.76rem; }

.writing { background: #e8ece8; }
.writing-layout { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 90px; align-items: start; }
.writing-intro { position: sticky; top: 112px; }
.writing-intro h2 { max-width: 570px; font-size: clamp(2.8rem, 5.2vw, 5.2rem); }
.writing-lead { max-width: 590px; margin: 26px 0 0; color: #5d6977; font-size: 0.98rem; }
.reporter-role { margin-top: 38px; padding: 25px; border: 1px solid #c8ceca; border-radius: var(--radius); background: rgba(255, 255, 255, 0.5); }
.reporter-role-top { display: flex; justify-content: space-between; gap: 18px; color: #6d7987; font: 750 0.68rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.reporter-role-top span:first-child { color: #5d7400; }
.reporter-role h3 { margin: 22px 0 4px; color: var(--ink); font-size: 1.45rem; letter-spacing: -0.035em; }
.reporter-role p { margin: 0; color: #53606e; font-size: 0.83rem; }
.reporter-role time { display: block; margin-top: 16px; color: #72808e; font: 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.communication-skills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.communication-skills span { padding: 6px 10px; border: 1px solid #c7ceca; border-radius: 999px; color: #566371; background: rgba(255, 255, 255, 0.38); font-size: 0.69rem; font-weight: 750; }
.writing-showcase { display: grid; gap: 16px; }
.featured-story { min-height: 475px; padding: 38px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.story-meta { display: flex; justify-content: space-between; gap: 20px; color: #8f9daf; font: 700 0.68rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.story-meta span { color: var(--lime); }
.story-topic { margin: 55px 0 10px; color: #71808f; font: 750 0.68rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.07em; text-transform: uppercase; }
.featured-story .story-topic { color: var(--lime); }
.featured-story h3 { max-width: 720px; margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.7vw, 3.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.04em; }
.featured-story > p:not(.story-topic) { max-width: 670px; color: #a9b5c4; font-size: 0.88rem; }
.story-link { display: inline-flex; gap: 7px; margin-top: 24px; color: inherit; font-size: 0.77rem; font-weight: 850; text-underline-offset: 4px; }
.featured-story .story-link { color: var(--lime); }
.podcast-card { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; padding: 30px; border: 1px solid #c9cfcb; border-radius: var(--radius); background: rgba(255, 255, 255, 0.54); }
.podcast-icon { display: flex; align-items: center; justify-content: center; gap: 5px; height: 110px; background: var(--lime); border-radius: 14px; }
.podcast-icon span { width: 4px; height: 32px; background: var(--ink); border-radius: 4px; }
.podcast-icon span:nth-child(2), .podcast-icon span:nth-child(4) { height: 58px; }
.podcast-icon span:nth-child(3) { height: 82px; }
.podcast-card .story-topic { margin: 0 0 7px; color: #607900; }
.podcast-card h3 { margin: 0 0 9px; color: var(--ink); font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.025em; }
.podcast-card p:not(.story-topic) { margin: 0; color: #667382; font-size: 0.79rem; }
.podcast-card .story-link { color: var(--ink); }
.author-link { display: flex; justify-content: space-between; gap: 20px; padding: 18px 4px; border-bottom: 1px solid #c5ccc7; color: var(--ink); font-size: 0.76rem; font-weight: 820; text-decoration: none; }
.author-link:hover { color: #607900; }

.skills-table { border-top: 1px solid var(--line); }
.skills-table article { display: grid; grid-template-columns: 270px 1fr; gap: 50px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.skills-table h3 { margin: 0; color: var(--ink); font-size: 1rem; letter-spacing: -0.02em; }
.skills-table p { max-width: 820px; margin: 0; color: #637080; font-size: 0.88rem; }
.credentials-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; margin-top: 105px; }
.credential-item { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); }
.credential-item > span { color: #768391; font: 700 0.74rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.credential-item h3 { margin: 0 0 4px; color: var(--ink); font-size: 1rem; }
.credential-item p, .credential-item small { display: block; margin: 0; color: #667382; font-size: 0.79rem; }
.credential-item small { margin-top: 4px; }
.cert-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.cert-list li { position: relative; padding: 20px 36px 20px 0; border-bottom: 1px solid var(--line); color: #3c4958; font-size: 0.84rem; font-weight: 700; }
.cert-list li::after { content: "check"; position: absolute; right: 0; color: #657d00; font: 700 0.66rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.community { overflow: clip; background: #dfe5ff; }
.community-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 90px; align-items: center; }
.community .section-heading { margin-bottom: 0; }
.community .section-heading > p:last-child { color: #58667a; }
.volunteer-card { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: center; overflow: hidden; min-height: 340px; padding: 38px; border: 1px solid rgba(8, 17, 31, 0.12); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.volunteer-card::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 240px; height: 240px; border: 1px solid rgba(109, 153, 255, 0.25); border-radius: 50%; box-shadow: 0 0 0 36px rgba(109, 153, 255, 0.05), 0 0 0 72px rgba(109, 153, 255, 0.03); }
.volunteer-mark { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; height: 190px; padding: 20px; background: var(--ink); color: var(--white); border-radius: 14px; transform: rotate(-2deg); }
.volunteer-mark strong { color: var(--lime); font-size: 4.6rem; line-height: 0.85; letter-spacing: -0.08em; }
.volunteer-mark span { font: 750 0.72rem/1.12 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.volunteer-content { position: relative; z-index: 1; }
.volunteer-label { margin: 0 0 9px; color: #567000; font: 750 0.68rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.volunteer-content h3 { margin: 0 0 14px; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -0.045em; }
.volunteer-content > p:not(.volunteer-label) { max-width: 540px; margin: 0; color: #637081; font-size: 0.87rem; }
.volunteer-values { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.volunteer-values span { padding: 5px 9px; border: 1px solid #ccd3df; border-radius: 999px; color: #586678; font-size: 0.68rem; font-weight: 750; }

.contact { padding: 112px 0; background: var(--ink); color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 100px; align-items: end; }
.contact .section-index { color: var(--lime); }
.contact h2 { color: var(--white); }
.contact-copy { padding-bottom: 8px; }
.contact-copy p { margin: 0 0 28px; color: #9eacbd; }
.contact-email { color: var(--white); font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 800; text-underline-offset: 5px; }
.contact-email span { color: var(--lime); }
.contact-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.contact-links a { color: #a7b4c4; font-size: 0.78rem; font-weight: 750; text-decoration: none; }
.contact-links a:hover { color: var(--lime); }
.site-footer { padding: 28px 0; background: #050b14; color: #7f8b9b; font-size: 0.72rem; }
.footer-layout { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-layout a { text-decoration: none; }
.footer-layout a:hover { color: var(--white); }

@media (max-width: 980px) {
  .desktop-nav, .nav-contact { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .mobile-menu.open { display: grid; height: calc(100vh - 74px); align-content: start; gap: 0; padding: 20px 24px; background: var(--paper); border-top: 1px solid var(--line); }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1.25rem; font-weight: 780; text-decoration: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-console { max-width: 620px; transform: none; }
  .split-heading, .research-layout, .writing-layout, .community-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .about-copy { padding-top: 0; }
  .experience-item { grid-template-columns: 190px 1fr; gap: 40px; }
  .credentials-layout { gap: 45px; }
  .writing-intro { position: static; }
}

@media (max-width: 720px) {
  .page-shell, .nav-shell { width: min(var(--max), calc(100% - 30px)); }
  .hero { padding-top: 64px; }
  .hero-grid { min-height: 0; }
  h1 { font-size: clamp(3.05rem, 16vw, 5.2rem); }
  .proof-strip { grid-template-columns: 1fr 1fr; margin-top: 62px; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 88px 0; }
  h2 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .section-heading { margin-bottom: 44px; }
  .experience-item { grid-template-columns: 1fr; gap: 20px; padding: 42px 0; }
  .experience-meta { flex-direction: row; justify-content: space-between; }
  .project-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }
  .project-card, .project-featured { grid-template-columns: 35px 1fr; min-height: 340px; padding: 23px; }
  .research { padding-bottom: 105px; }
  .publication-card { padding: 28px 24px; box-shadow: 10px 10px 0 rgba(8, 17, 31, 0.1); }
  blockquote { margin-top: 40px; }
  .research-metrics { grid-template-columns: 1fr; }
  .research-metrics div { min-height: 0; }
  .featured-story { min-height: 0; padding: 28px 24px; }
  .podcast-card { grid-template-columns: 90px 1fr; padding: 22px; }
  .podcast-icon { height: 95px; }
  .skills-table article { grid-template-columns: 1fr; gap: 8px; }
  .credentials-layout { grid-template-columns: 1fr; gap: 60px; margin-top: 80px; }
  .volunteer-card { grid-template-columns: 120px 1fr; gap: 25px; padding: 26px; }
  .volunteer-mark { height: 165px; }
  .volunteer-mark strong { font-size: 3.6rem; }
  .contact { padding: 86px 0; }
  .contact-layout { gap: 42px; }
}

@media (max-width: 430px) {
  .hero-actions .button { width: 100%; }
  .proof-strip { width: 100%; border-inline: 0; }
  .console-list div { grid-template-columns: 72px 1fr; }
  .project-card, .project-featured { grid-template-columns: 1fr; }
  .project-number { margin-bottom: 8px; }
  .podcast-card, .volunteer-card { grid-template-columns: 1fr; }
  .podcast-icon { width: 100%; height: 95px; }
  .volunteer-mark { width: 130px; height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .hero-console, .hero-actions, .contact, .site-footer { display: none; }
  body { background: white; color: black; }
  .section, .hero { padding: 36px 0; }
  .section-ink, .research { background: white; color: black; }
  .section-ink h2, .section-ink h3, .section-ink .company, .research h2 { color: black; }
}
