:root {
  --ink: #091824;
  --ink-soft: #40515f;
  --paper: #f7fafc;
  --white: #ffffff;
  --navy: #071a2b;
  --navy-2: #0a263d;
  --cyan: #54d6e9;
  --blue: #1c79d0;
  --line: #cfdae2;
  --muted: #e8eff4;
  --coral: #f66d57;
  --radius: 18px;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(3, 24, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 218, 226, 0.75);
  background: rgba(247, 250, 252, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  background: linear-gradient(140deg, #f9fcfe 0%, #edf6fa 56%, #e5f4f8 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 73, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 73, 107, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom right, #000 0%, transparent 72%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
  padding-bottom: 88px;
}

.eyebrow,
.section-number,
.timeline-kicker,
.story-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(246, 109, 87, 0.13);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6.5vw, 6.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-summary {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 26, 43, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(28, 121, 208, 0.28);
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, 3px);
}

.compass {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  padding: 22px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.compass::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(70px);
  opacity: 0.28;
}

.compass-topline {
  display: flex;
  justify-content: space-between;
  color: #a9bfd0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compass-core {
  position: relative;
  height: 350px;
  display: grid;
  place-items: center;
}

.compass-core::before,
.compass-core::after {
  content: "";
  position: absolute;
  background: rgba(130, 171, 198, 0.2);
}

.compass-core::before {
  width: 1px;
  height: 86%;
}

.compass-core::after {
  width: 86%;
  height: 1px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(84, 214, 233, 0.38);
  border-radius: 50%;
}

.orbit-one {
  width: 236px;
  height: 236px;
}

.orbit-two {
  width: 168px;
  height: 168px;
  border-style: dashed;
}

.compass-initials {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 14px rgba(84, 214, 233, 0.08);
}

.compass-label {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(12, 44, 69, 0.88);
  color: #def8fb;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.label-one {
  top: 44px;
  right: 26px;
}

.label-two {
  bottom: 48px;
  right: 10px;
}

.label-three {
  bottom: 82px;
  left: 12px;
}

.compass > p {
  max-width: 310px;
  margin: 0;
  color: #b5c8d7;
  font-size: 0.88rem;
}

.metric-strip {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.25fr 1.25fr;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--white);
  box-shadow: 0 -12px 44px rgba(9, 40, 64, 0.07);
}

.metric-strip > div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-strip strong {
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric-strip span {
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 750;
  line-height: 1.4;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 10vw, 140px);
}

.section-heading h2,
.service-intro h2,
.credentials h2,
.contact h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.6vw, 4.6rem);
  letter-spacing: -0.055em;
}

.prose-stack {
  padding-top: 6px;
}

.prose-stack > p {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.prose-stack .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.48;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.focus-grid article {
  min-height: 230px;
  padding: 28px 24px;
  background: var(--white);
}

.focus-grid article > span {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.focus-grid h3 {
  margin-bottom: 11px;
  font-size: 1.25rem;
}

.focus-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.experience-section {
  background: var(--white);
}

.scholarship {
  background: linear-gradient(145deg, #f4f9fc 0%, #e8f3f7 100%);
}

.horizontal-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 62px;
}

.horizontal-heading > p {
  max-width: 400px;
  margin: 0 0 10px;
  color: var(--ink-soft);
}

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

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 48px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  margin: 5px 0 0;
  font-size: 0.84rem;
  font-weight: 800;
}

.timeline-kicker {
  margin-bottom: 11px;
  color: var(--blue);
}

.timeline-row h3 {
  margin-bottom: 12px;
  font-size: clamp(1.38rem, 2vw, 1.75rem);
  letter-spacing: -0.03em;
}

.timeline-row div > p:last-child {
  max-width: 740px;
  margin: 0;
  color: var(--ink-soft);
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.scholarship-heading {
  margin-bottom: 48px;
}

.publication-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.publication-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(9, 40, 64, 0.06);
}

.publication-featured {
  background: var(--white);
}

.publication-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 68px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-card h3 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  letter-spacing: -0.04em;
}

.publication-card > p {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--ink-soft);
}

.publication-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.service {
  background: var(--navy);
  color: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 10vw, 140px);
}

.service-intro .section-number,
.section-number.light {
  color: var(--cyan);
}

.service-intro > p:last-child {
  max-width: 480px;
  margin-top: 30px;
  color: #aac0d0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(165, 201, 224, 0.18);
  border-radius: var(--radius);
  background: var(--navy-2);
}

.story-featured {
  grid-column: 1 / -1;
  min-height: 300px;
  background: linear-gradient(125deg, #0b304d, #0d3958);
}

.story-label {
  color: var(--cyan);
}

.story h3 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  letter-spacing: -0.035em;
}

.story > p:not(.story-label) {
  max-width: 680px;
  margin: 0 0 28px;
  color: #bdd0de;
}

.story > span {
  margin-top: auto;
  color: #85a4b9;
  font-size: 0.78rem;
  font-weight: 750;
}

.credentials {
  background: #eaf2f6;
}

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 140px);
}

.credential-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.credential-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.credential-list dt {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credential-list dd {
  margin: 0;
  font-weight: 750;
}

.credential-note {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-soft);
}

.recognition-list {
  margin-top: 46px;
  border-top: 1px solid var(--ink);
}

.recognition-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-list article > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.recognition-list h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.recognition-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact {
  padding: clamp(82px, 10vw, 130px) 0;
  background: var(--blue);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 60px;
}

.contact h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
}

.contact-copy > p:first-child {
  max-width: 500px;
  margin: 0 0 26px;
  color: #e5f3ff;
  font-size: 1.05rem;
}

.button-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(2, 40, 74, 0.15);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.contact-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-phone {
  color: var(--white);
  font-weight: 850;
  text-underline-offset: 5px;
}

.location {
  margin: 19px 0 0;
  color: #d7ebfa;
  font-size: 0.82rem;
  font-weight: 750;
}

.interest-line {
  max-width: 520px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #d7ebfa;
  font-size: 0.86rem;
}

.footer {
  padding: 28px 0;
  background: var(--navy);
  color: #aec1d0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer a {
  color: var(--white);
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .hero {
    padding-top: 70px;
  }

  .hero-layout,
  .split-layout,
  .service-layout,
  .credentials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 55px;
  }

  .compass {
    width: min(100%, 540px);
    min-height: 440px;
  }

  .compass-core {
    height: 310px;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

  .metric-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metric-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .horizontal-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .publication-card {
    min-height: 330px;
  }

  .service-layout,
  .credentials-layout {
    gap: 58px;
  }

  .contact-layout {
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-name {
    display: none;
  }

  .nav {
    gap: 17px;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .nav a:nth-child(3) {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-layout {
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .compass {
    min-height: 390px;
    border-radius: 24px;
  }

  .compass-core {
    height: 275px;
  }

  .orbit-one {
    width: 210px;
    height: 210px;
  }

  .orbit-two {
    width: 145px;
    height: 145px;
  }

  .compass > p {
    font-size: 0.78rem;
  }

  .metric-strip > div {
    min-height: 116px;
    padding: 22px;
  }

  .metric-strip strong {
    font-size: 1.8rem;
  }

  .section {
    padding: 84px 0;
  }

  .split-layout {
    gap: 42px;
  }

  .section-heading h2,
  .service-intro h2,
  .credentials h2 {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
  }

  .focus-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .publication-card {
    min-height: 0;
  }

  .publication-meta {
    margin-bottom: 46px;
  }

  .focus-grid article {
    min-height: 200px;
  }

  .focus-grid article > span {
    margin-bottom: 38px;
  }

  .timeline-row {
    grid-template-columns: 1fr 40px;
    gap: 22px;
  }

  .timeline-date {
    grid-column: 1 / -1;
  }

  .story-featured {
    grid-column: auto;
  }

  .credential-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav a:nth-child(2) {
    display: none;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip > div:last-child {
    border-bottom: 0;
  }

  .label-one {
    right: 4px;
  }

  .label-three {
    left: 2px;
  }
}

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

@media print {
  .site-header,
  .hero-grid,
  .hero-actions,
  .footer a {
    display: none;
  }

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

  .hero,
  .service,
  .contact,
  .credentials {
    background: #fff;
    color: #000;
  }

  .compass {
    display: none;
  }

  .hero-layout,
  .split-layout,
  .service-layout,
  .credentials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
