:root {
  color-scheme: light;
  --bg-top: #faf9f6;
  --bg-mid: #ece9e4;
  --bg-bottom: #d3cfc8;
  --text: #0a1525;
  --text-soft: #616874;
  --text-faint: #808792;
  --line: rgba(255, 255, 255, 0.54);
  --line-strong: rgba(255, 255, 255, 0.88);
  --glass-top: rgba(255, 255, 255, 0.62);
  --glass-mid: rgba(255, 255, 255, 0.15);
  --glass-bottom: rgba(219, 217, 212, 0.1);
  --rose: #9a1330;
  --rose-deep: #6b0b23;
  --rose-soft: rgba(154, 19, 48, 0.14);
  --steel: #9fb0c9;
  --steel-strong: #7083a1;
  --blue-soft: rgba(118, 146, 193, 0.16);
  --shadow: 0 28px 76px rgba(28, 33, 40, 0.14);
  --shadow-strong: 0 38px 104px rgba(21, 26, 32, 0.18);
  --radius-panel: 38px;
  --radius-card: 30px;
  --radius-pill: 999px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 54% 64%, rgba(237, 234, 228, 0.38), rgba(237, 234, 228, 0) 34%),
    radial-gradient(circle at 50% 112%, rgba(145, 139, 131, 0.24), rgba(145, 139, 131, 0) 38%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 36%, var(--bg-bottom));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 56% 78%, rgba(245, 242, 236, 0.46), rgba(245, 242, 236, 0) 28%);
  filter: blur(60px);
}

body::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 50% 108%, rgba(132, 128, 122, 0.22), rgba(132, 128, 122, 0) 34%);
  opacity: 0.76;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  padding-bottom: 36px;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(104px);
  opacity: 0.46;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 8%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.82);
}

.ambient-two {
  top: 14%;
  right: -7%;
  width: 360px;
  height: 360px;
  background: rgba(228, 225, 219, 0.5);
}

.ambient-three {
  bottom: 10%;
  left: 22%;
  width: 380px;
  height: 380px;
  background: rgba(160, 154, 146, 0.22);
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
  scroll-margin-top: 124px;
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 30;
  padding-top: 20px;
  isolation: isolate;
}

.topbar .container {
  position: relative;
  display: flex;
  justify-content: center;
}

.topbar.is-condensed .nav-shell {
  padding: 10px 12px;
  border-radius: 30px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 -1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 54px rgba(41, 54, 77, 0.12),
    0 2px 16px rgba(255, 255, 255, 0.12) inset;
}

.topbar.is-condensed .brand {
  padding: 9px 15px 9px 11px;
}

.topbar.is-condensed .site-nav {
  padding: 6px;
}

.topbar.is-condensed .nav-link {
  min-height: 42px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16) 28%, rgba(236, 232, 226, 0.08)),
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, var(--glass-top), var(--glass-mid) 48%, var(--glass-bottom));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 -1px 0 rgba(255, 255, 255, 0.1) inset,
    0 6px 28px rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.06),
    var(--shadow);
  backdrop-filter: blur(36px) saturate(140%) contrast(1.02) brightness(1.04);
  -webkit-backdrop-filter: blur(36px) saturate(140%) contrast(1.02) brightness(1.04);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18) 18%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 32%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.interactive-surface {
  position: relative;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --lift-x: 0px;
  --lift-y: 0px;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --motion-scale: 1;
  --tilt-scale: 1;
  --surface-scale: 1;
  isolation: isolate;
  transform:
    translate3d(calc(var(--lift-x) * var(--motion-scale)), calc(var(--lift-y) * var(--motion-scale)), 0)
    rotateX(calc(var(--rotate-x) * var(--tilt-scale)))
    rotateY(calc(var(--rotate-y) * var(--tilt-scale)))
    scale(var(--surface-scale));
  transform-style: preserve-3d;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    filter 280ms ease;
  will-change: transform;
}

.interactive-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16) 16%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.52) 49%, rgba(255, 255, 255, 0.14) 58%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: translateX(-34%) translateY(0);
  transition:
    opacity 280ms ease,
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-surface:hover,
.interactive-surface:focus-visible {
  --surface-scale: 1.006;
  border-color: var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 -1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 24px rgba(255, 255, 255, 0.08) inset,
    var(--shadow-strong);
  filter: saturate(1.04) brightness(1.025);
}

.interactive-surface:hover::after,
.interactive-surface:focus-visible::after {
  opacity: 0.84;
  transform: translateX(26%) translateY(0);
}

.interactive-surface:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(116, 146, 194, 0.16),
    var(--shadow-strong);
}

.glass-panel > *,
.interactive-surface > * {
  position: relative;
  z-index: 1;
}

.nav-shell {
  width: min(100%, 980px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.14)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 34%),
    rgba(247, 245, 240, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 -1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 58px rgba(28, 33, 40, 0.13),
    0 4px 20px rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(44px) saturate(145%) contrast(1.02) brightness(1.04);
  -webkit-backdrop-filter: blur(44px) saturate(145%) contrast(1.02) brightness(1.04);
  transition:
    padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background 260ms ease;
}

.nav-shell::before {
  z-index: 1;
  opacity: 0.84;
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(249, 248, 245, 0.44), rgba(241, 238, 232, 0.18)),
    radial-gradient(circle at 56% -14%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 54%),
    rgba(247, 244, 239, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.44) inset;
  backdrop-filter: blur(58px) saturate(150%) contrast(1.03) brightness(1.02);
  -webkit-backdrop-filter: blur(58px) saturate(150%) contrast(1.03) brightness(1.02);
  pointer-events: none;
}

.nav-shell > * {
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.56) inset,
    0 10px 24px rgba(43, 56, 78, 0.08);
  backdrop-filter: blur(20px) saturate(170%) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(170%) brightness(1.03);
  transition:
    padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background 260ms ease;
}

.brand-rose {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(36, 38, 43, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-copy span {
  color: rgba(92, 101, 117, 0.82);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.site-nav {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    rgba(247, 245, 240, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 24px rgba(28, 33, 40, 0.05) inset,
    0 0 24px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(28px) saturate(145%) brightness(1.03);
  -webkit-backdrop-filter: blur(28px) saturate(145%) brightness(1.03);
  overflow-x: auto;
  scrollbar-width: none;
  transition:
    padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background 260ms ease;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%);
  opacity: 0.9;
  pointer-events: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 -1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 28px rgba(45, 58, 80, 0.1);
  backdrop-filter: blur(18px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.05);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.nav-indicator::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 40%),
    linear-gradient(118deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.2) 46%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
  opacity: 0.94;
}

.nav-indicator.is-visible {
  opacity: 1;
}

.nav-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 0;
  background: transparent;
  color: rgba(10, 21, 37, 0.74);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  box-shadow: none;
  z-index: 1;
  transition:
    color 220ms ease,
    transform 220ms ease,
    min-height 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
  opacity: 0;
  transition:
    opacity 220ms ease,
    box-shadow 220ms ease;
  z-index: 0;
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 10px 18px rgba(45, 58, 80, 0.08);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: rgba(10, 21, 37, 0.92);
}

.nav-link.active {
  color: rgba(10, 21, 37, 0.98);
  background: transparent;
  box-shadow: none;
}

.hero {
  padding-top: 68px;
}

.hero-shell,
.contact-panel,
.footer-panel {
  padding: 30px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  min-height: min(76vh, 720px);
  padding: clamp(30px, 4vw, 56px);
  border-radius: 42px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18) 30%, rgba(233, 229, 223, 0.08)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.36), rgba(239, 235, 229, 0.14) 56%, rgba(212, 208, 201, 0.18));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 -1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 30px rgba(255, 255, 255, 0.08) inset,
    0 34px 92px rgba(24, 29, 35, 0.14);
}

.publication-card,
.timeline-item,
.award-card,
.contact-panel,
.footer-panel {
  border-color: rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14)),
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 34%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 -1px 0 rgba(255, 255, 255, 0.08) inset,
    0 6px 24px rgba(255, 255, 255, 0.08) inset,
    0 26px 62px rgba(24, 29, 35, 0.12);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 16%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08));
  opacity: 0.94;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 8% -4% -16% 42%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 70% 26%, rgba(233, 229, 224, 0.26), rgba(233, 229, 224, 0) 34%),
    radial-gradient(circle at 50% 72%, rgba(148, 144, 136, 0.12), rgba(148, 144, 136, 0) 32%);
  filter: blur(24px);
  opacity: 0.98;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  order: 1;
  display: grid;
  align-content: center;
  gap: 0;
  max-width: 640px;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.publication-copy h3,
.timeline-item h3,
.award-card h3,
.highlight-card h3 {
  margin: 0;
  letter-spacing: -0.07em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  line-height: 0.86;
  text-wrap: balance;
}

.eyebrow,
.card-eyebrow,
.timeline-kind,
.meta-label,
.award-year {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow,
.card-eyebrow,
.timeline-kind,
.meta-label,
.award-year {
  color: rgba(95, 111, 137, 0.78);
}

.hero-headline {
  margin: 18px 0 12px;
  max-width: 20ch;
  font-size: clamp(1.22rem, 2vw, 1.66rem);
  line-height: 1.18;
  color: rgba(12, 23, 39, 0.94);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-summary,
.section-heading p,
.highlight-card p,
.publication-note,
.timeline-description,
.contact-copy p,
#footer-note {
  margin: 0;
  color: rgba(10, 21, 37, 0.7);
  line-height: 1.78;
}

.hero-summary {
  max-width: 54ch;
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta-item {
  --motion-scale: 0.32;
  --tilt-scale: 0.16;
  flex: 0 1 178px;
  display: grid;
  gap: 6px;
  min-width: 170px;
  padding: 13px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 36%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.52) inset,
    0 12px 24px rgba(43, 56, 78, 0.05);
  backdrop-filter: blur(22px) saturate(165%) brightness(1.03);
  -webkit-backdrop-filter: blur(22px) saturate(165%) brightness(1.03);
}

.hero-meta-item .meta-label {
  color: rgba(95, 108, 126, 0.54);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.hero-meta-item span:last-child {
  color: rgba(10, 21, 37, 0.92);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.glass-button,
.highlight-card,
.publication-card,
.timeline-item,
.award-card {
  position: relative;
  overflow: hidden;
}

.glass-button {
  --motion-scale: 0.42;
  --tilt-scale: 0.2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.04);
  font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 -1px 0 rgba(255, 255, 255, 0.06) inset,
    0 2px 14px rgba(255, 255, 255, 0.08) inset,
    0 16px 30px rgba(43, 56, 78, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(175%) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(175%) brightness(1.03);
}

.glass-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1) 22%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 34%);
  opacity: 0.94;
  pointer-events: none;
  z-index: 0;
}

.glass-button.primary {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(231, 227, 221, 0.28) 58%, rgba(207, 202, 195, 0.16));
  color: #081320;
}

.glass-button.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.glass-button.ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
}

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

.glass-button:active,
.nav-link:active {
  transform: translateY(2px) scale(0.988);
}

.button-arrow {
  font-size: 0.98rem;
  opacity: 0.74;
  transition: transform 220ms ease, opacity 220ms ease;
}

.portrait-panel {
  --motion-scale: 0.55;
  --tilt-scale: 0.4;
  order: 2;
  width: min(100%, 360px);
  max-width: 360px;
  justify-self: end;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(222, 229, 238, 0.08));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 22px 52px rgba(38, 52, 76, 0.12);
  backdrop-filter: blur(24px) saturate(165%) brightness(1.02);
  -webkit-backdrop-filter: blur(24px) saturate(165%) brightness(1.02);
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: -10% -6%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 68% 78%, rgba(172, 166, 157, 0.16), rgba(172, 166, 157, 0) 32%);
  filter: blur(16px);
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(189, 203, 224, 0.08));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 20px 42px rgba(38, 52, 76, 0.1);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.14)),
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
  z-index: 1;
}

.portrait-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 26px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  line-height: 0.96;
}

.highlight-grid,
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.highlight-card,
.award-card {
  padding: 22px;
  border-radius: var(--radius-card);
}

.highlight-card {
  min-height: 176px;
}

.highlight-card h3,
.publication-copy h3,
.timeline-item h3,
.award-card h3 {
  font-size: clamp(1.24rem, 1.5vw, 1.54rem);
  line-height: 1.16;
  margin-top: 8px;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.publication-card {
  --motion-scale: 0.44;
  --tilt-scale: 0.2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-card);
}

.publication-featured {
  grid-column: span 2;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.publication-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(233, 239, 247, 0.12)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.58) inset,
    0 2px 12px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(18px) saturate(150%) brightness(1.02);
  -webkit-backdrop-filter: blur(18px) saturate(150%) brightness(1.02);
}

.publication-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.44)),
    rgba(223, 220, 214, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 10px 22px rgba(45, 58, 80, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(70, 74, 82, 0.86);
}

.publication-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.publication-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.publication-authors {
  margin: 0;
  color: rgba(10, 21, 37, 0.88);
  line-height: 1.72;
}

.author-emphasis {
  font-weight: 800;
  color: var(--text);
}

.publication-actions {
  margin-top: 10px;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 30px;
  width: 1px;
  background:
    linear-gradient(180deg, rgba(162, 167, 174, 0.08), rgba(162, 167, 174, 0.52), rgba(217, 220, 224, 0.28), rgba(162, 167, 174, 0.06));
  box-shadow: 0 0 12px rgba(168, 173, 181, 0.14);
}

.timeline-item {
  --motion-scale: 0.34;
  --tilt-scale: 0.14;
  padding: 24px 24px 24px 80px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16) 34%, rgba(232, 229, 223, 0.08)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(224, 220, 214, 0.12) 60%, rgba(209, 205, 198, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 -1px 0 rgba(255, 255, 255, 0.08) inset,
    0 4px 22px rgba(255, 255, 255, 0.08) inset,
    0 22px 58px rgba(38, 52, 76, 0.1);
  backdrop-filter: blur(34px) saturate(175%) brightness(1.03);
  -webkit-backdrop-filter: blur(34px) saturate(175%) brightness(1.03);
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle 220px at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24) 18%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0) 52%);
  opacity: 0.62;
  transform: scale(1);
  transition:
    background 320ms ease,
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: -12% -18%;
  border-radius: 44%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 24%),
    linear-gradient(112deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.14) 30%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.24) 57%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: translateX(-18%) translateY(4%) rotate(-8deg);
  filter: blur(8px);
  mix-blend-mode: screen;
  transition:
    opacity 280ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.36) 42%, rgba(176, 181, 188, 0.72)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(208, 211, 216, 0.22));
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.12),
    0 16px 24px rgba(86, 92, 102, 0.16);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    background 320ms ease;
}

.timeline-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.timeline-range,
.timeline-org {
  color: rgba(10, 21, 37, 0.8);
}

.timeline-range {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.timeline-org {
  margin: 10px 0 10px;
  font-weight: 600;
}

.timeline-item h3,
.publication-copy h3,
.award-card h3,
.highlight-card h3 {
  color: rgba(8, 19, 32, 0.96);
}

.timeline-item:hover,
.timeline-item:focus-visible,
.publication-card:hover,
.award-card:hover,
.highlight-card:hover,
.hero-meta-item:hover {
  border-color: rgba(255, 255, 255, 0.96);
}

.timeline-item:hover,
.timeline-item:focus-visible {
  --surface-scale: 1.01;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 -1px 0 rgba(255, 255, 255, 0.1) inset,
    0 6px 28px rgba(255, 255, 255, 0.1) inset,
    0 26px 66px rgba(32, 37, 44, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(219, 223, 228, 0.16);
}

.timeline-item:hover::before,
.timeline-item:focus-visible::before {
  background:
    radial-gradient(circle 240px at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 18%, rgba(255, 255, 255, 0.12) 32%, rgba(222, 219, 214, 0.14) 46%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0) 52%);
  opacity: 0.98;
  transform: scale(1.015);
  filter: saturate(1.1) brightness(1.04);
}

.timeline-item:hover::after,
.timeline-item:focus-visible::after {
  opacity: 0.94;
  transform: translateX(22%) translateY(-4%) rotate(-7deg);
  filter: blur(4px);
}

.timeline-item:hover .timeline-dot,
.timeline-item:focus-visible .timeline-dot {
  transform: scale(1.08);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.14),
    0 18px 28px rgba(86, 92, 102, 0.18),
    0 0 24px rgba(220, 223, 228, 0.16);
}

.award-card {
  --motion-scale: 0.44;
  --tilt-scale: 0.2;
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.contact-panel,
.footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.contact-panel {
  flex-wrap: wrap;
}

.contact-copy {
  max-width: 580px;
  display: grid;
  gap: 14px;
}

.site-footer {
  padding-top: 14px;
}

.footer-panel {
  padding: 18px 22px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-soft);
}

.noscript-warning {
  margin: 12px auto 0;
  width: min(var(--max-width), calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 246, 224, 0.92);
  color: #7a5d12;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.interaction-ripple {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 54%, rgba(255, 255, 255, 0));
  animation: ripple-expand 620ms ease-out forwards;
  mix-blend-mode: screen;
}

@keyframes ripple-expand {
  0% {
    opacity: 0.66;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    min-height: auto;
  }

  .portrait-panel {
    max-width: 320px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 38px 0;
  }

  .nav-shell,
  .contact-panel,
  .footer-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-shell {
    border-radius: 30px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .highlight-grid,
  .awards-grid,
  .publications-grid,
  .publication-featured {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-shell::after {
    inset: 44% -10% -12% 18%;
  }

  .portrait-panel {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .topbar {
    top: 10px;
    padding-top: 10px;
  }

  .hero-shell,
  .contact-panel,
  .footer-panel {
    padding: 22px;
  }

  .hero {
    padding-top: 42px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
  }

  .nav-link {
    padding: 0 11px;
    min-height: 40px;
    font-size: 0.88rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-headline {
    font-size: 1.16rem;
  }

  .hero-meta-item {
    flex-basis: 100%;
  }

  .highlight-grid,
  .awards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portrait-panel {
    width: min(100%, 280px);
  }

  .timeline-item {
    padding: 22px 18px 22px 66px;
  }

  .timeline-list::before {
    left: 24px;
  }

  .timeline-dot {
    left: 13px;
  }

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

@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;
    scroll-behavior: auto !important;
  }

  .interactive-surface {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
