:root {
  color-scheme: light;
  --background: #fafafa;
  --surface: #f1f2f4;
  --ink: #1d1d1f;
  --muted: #68686d;
  --line: #dedee2;
  --blue: #0066cc;
  --content: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; background: var(--background); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; text-underline-offset: 4px; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; border-radius: 3px; }
::selection { background: #cfe5fc; color: #1d1d1f; }
img { max-width: 100%; display: block; }
p, h1, h2, h3, h4, figure { margin: 0; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.045em; line-height: 1.1; }
.section-shell { width: min(var(--content), calc(100% - 96px)); margin-inline: auto; }
.eyebrow { color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: .12em; line-height: 1.5; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; background: white; padding: 12px; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; z-index: 20; top: 0; background: rgba(250,250,250,.86); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border-bottom: 1px solid rgba(0,0,0,.065); }
.navigation { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { color: var(--ink); font-size: 1.35rem; font-weight: 650; letter-spacing: -.06em; white-space: nowrap; }
.wordmark-dot { color: var(--blue); }
.nav-links { display: flex; gap: 30px; }
.nav-links a, .nav-contact { color: #424246; font-size: .875rem; }
.nav-contact { padding: 7px 16px; background: #ededf0; border-radius: 24px; white-space: nowrap; }
.nav-contact span { padding-left: 3px; }
.hero { padding-top: 56px; padding-bottom: 48px; }
.hero-main { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); align-items: start; gap: 72px; }
.hero h1 { font-size: clamp(2.5rem, 4vw, 3.25rem); letter-spacing: -.06em; margin-top: 0; margin-left: -4px; }
.hero h1 > span { color: var(--blue); }
.hero-biography { margin-top: 27px; color: #55555b; font-size: 1rem; line-height: 1.85; }
.hero-biography p + p { margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 31px; }
.button-primary { display: inline-flex; align-items: center; gap: 5px; background: #0071e3; color: white; border-radius: 30px; padding: 12px 22px; font-size: .875rem; transition: background .2s, transform .2s; }
.button-primary:hover { background: #0077ed; text-decoration: none; transform: translateY(-2px); }
.text-link { font-size: .9375rem; white-space: nowrap; text-decoration: none; transition: color 180ms ease; }
.text-link:hover, .text-link:focus-visible { color: #004a99; text-decoration: none; }
.text-link span { margin-left: 1px; }
/* Quiet hover feedback for navigation and the introduction. */
.site-header a, .hero a, .news-list a { text-decoration: none; }
.site-header a:hover, .hero a:hover, .news-list a:hover { text-decoration: none; }
.site-header a, :is(.hero-biography, .news-list) a, .hero-actions .text-link {
  transition: color 180ms ease, background-color 180ms ease;
}
.nav-links a { position: relative; isolation: isolate; }
.nav-links a::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 102, 204, .06);
  opacity: 0;
  transition: opacity 180ms ease;
}
:is(.hero-biography, .news-list) a {
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
:is(.nav-contact, .hero-actions a, .text-link, .footer-link) > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}
.site-header a:focus-visible { color: var(--blue); }
.nav-links a:focus-visible::before { opacity: 1; }
:is(.hero-biography, .news-list) a:focus-visible, .hero-actions .text-link:focus-visible { color: #004a99; }
:is(.hero-biography, .news-list) a:focus-visible { background-color: rgba(0, 102, 204, .07); }
.nav-contact:focus-visible { background-color: #e2e8ef; }
:is(.nav-contact, .hero-actions a, .text-link, .footer-link):focus-visible > span[aria-hidden="true"] { transform: translate(var(--arrow-x, 3px), -3px); }
@media (hover: hover) and (pointer: fine) {
  .site-header a:hover { color: var(--blue); }
  .nav-links a:hover::before { opacity: 1; }
  .nav-contact:hover { background-color: #e2e8ef; }
  :is(.hero-biography, .news-list) a:hover, .hero-actions .text-link:hover { color: #004a99; }
  :is(.hero-biography, .news-list) a:hover { background-color: rgba(0, 102, 204, .07); }
  :is(.nav-contact, .hero-actions a, .text-link, .footer-link):hover > span[aria-hidden="true"] { transform: translate(var(--arrow-x, 3px), -3px); }
}
.hero-portrait { width: 100%; max-width: 300px; justify-self: end; margin-top: 8px; }
.hero-portrait img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 42%; border-radius: 10px; }
.hero-portrait figcaption { margin-top: 12px; color: var(--muted); font-size: .8125rem; line-height: 1.6; text-align: center; }
.section-heading h2 { font-size: 2rem; margin-top: 0; }
.news-section { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 48px 56px; }
.news-section h2 { font-size: 2rem; }
.news-list ul, .detail-list ul, .other-publications ul { padding: 0; margin: 0; list-style: none; }
.news-list li { position: relative; padding: 11px 0 11px 92px; line-height: 1.65; border-bottom: 1px solid var(--line); font-size: 1rem; }
.news-list li:first-child { padding-top: 0; }
.news-list li:last-child { border: 0; }
.news-list em { position: absolute; left: 0; font-style: normal; font-size: .8125rem; font-variant-numeric: tabular-nums; color: var(--muted); }
.research-section { background: var(--surface); padding-block: 64px; }
.research-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.research-heading > a { padding-bottom: 4px; }
.paper-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.paper-box { background: white; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.paper-box-image { position: relative; padding: 45px 32px 15px; display: flex; align-items: center; min-width: 0; }
.paper-box--lamo .paper-box-image, .paper-box--senna .paper-box-image { padding-top: 73px; }
.paper-box--vad .paper-box-image { padding-top: 61px; }
.paper-box-image > div { width: 100%; }
.paper-box-image img { width: 100%; height: 215px; object-fit: contain; }
.paper-box--lamo .paper-box-image img, .paper-box--senna .paper-box-image img { transform: translateY(10px) scale(1.1); transform-origin: center; }
.paper-box--vadv2 .paper-box-image img, .paper-box--vad .paper-box-image img { transform: translateY(10px); }
.badge { position: absolute; left: 28px; top: 22px; font-size: .75rem; line-height: 1.5; padding: 4px 10px; border-radius: 6px; background: #f1f2f4; color: #55555b; font-weight: 600; }
.paper-box-text { padding: 27px 32px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.paper-box-text .eyebrow { font-size: .75rem; letter-spacing: .025em; }
.paper-title { font-size: 1.25rem; line-height: 1.4; font-weight: 550; letter-spacing: -.018em; margin-top: 15px; }
.paper-title + p { color: var(--muted); font-size: .8125rem; line-height: 1.65; margin-top: 17px; }
.paper-title + p strong { color: #414146; font-weight: 600; }
.paper-title + p + p { color: var(--muted); font-size: .75rem; line-height: 1.6; margin-top: 8px; }
.paper-title + p + p strong { font-weight: 400; }
.paper-title + p + p + p { margin-top: 17px; font-size: .875rem; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: #c5c5c9; }
.paper-box-text a strong { font-weight: 500; }
.paper-link {
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}
.paper-link:hover, .paper-link:focus-visible { color: #004a99; text-decoration: none; }
.paper-link:focus-visible { background-color: rgba(0, 102, 204, .07); }
@media (hover: hover) and (pointer: fine) {
  .paper-link:hover { background-color: rgba(0, 102, 204, .07); }
}
.paper-box-text a img { display: inline-block; width: auto; max-width: 105px; vertical-align: middle; }
.paper-box-text > p:last-child { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-top: 17px; }
.other-publications { margin-top: 44px; }
.other-publications h3 { font-size: 1.6rem; margin-bottom: 24px; }
.other-publications li { font-size: .875rem; line-height: 1.75; color: var(--muted); padding-block: 20px; border-top: 1px solid #d9d9de; }
.publication-title { font-size: 1rem; font-weight: 550; line-height: 1.6; margin-bottom: 6px; }
.publication-title a { color: var(--ink); transition: color 180ms ease; }
.publication-title a:hover, .publication-title a:focus-visible { color: var(--blue); text-decoration: none; }
.publication-authors { font-size: .875rem; line-height: 1.75; }
.publication-venue { font-size: .8125rem; line-height: 1.7; margin-top: 5px; }
.other-publications strong { font-weight: 550; }
.detail-section { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 48px; border-bottom: 1px solid var(--line); }
#invited-talks { border-bottom: 0; }
.detail-section h2 { font-size: 2rem; }
.detail-list li { font-size: 1rem; color: #55555b; padding-block: 18px; line-height: 1.8; border-bottom: 1px solid var(--line); }
.detail-list li:first-child { padding-top: 0; }
.detail-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.detail-list em { display: block; font-size: .8125rem; font-style: normal; color: var(--muted); margin-bottom: 5px; font-variant-numeric: tabular-nums; }
.detail-list strong { color: var(--ink); font-weight: 500; }
.talk-title { font-size: 1rem; font-weight: 500; line-height: 1.6; letter-spacing: normal; color: var(--ink); }
.talk-meta { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-top: 6px; }
.education-school, .internship-company { font-size: 1.0625rem; font-weight: 600; line-height: 1.5; letter-spacing: -.015em; color: var(--ink); }
.education-school a, .internship-company a { color: var(--ink); transition: color 180ms ease; }
.education-school a:hover, .education-school a:focus-visible, .internship-company a:hover, .internship-company a:focus-visible { color: var(--blue); text-decoration: none; }
.education-details, .internship-details { margin-top: 4px; font-size: 1rem; line-height: 1.75; }
.timeline-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 6px 24px; }
.timeline-meta { text-align: right; font-size: inherit; font-variant-numeric: tabular-nums; }
.talk-date { font-variant-numeric: tabular-nums; white-space: nowrap; }
.site-footer { margin-top: 48px; padding-top: 40px; background: #ededf0; }
.footer-top { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 35px; }
.footer-top h2 { font-size: 1.75rem; margin: 0; }
.footer-email { font-size: 1.125rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding-block: 25px; border-top: 1px solid #d4d4d9; font-size: .8125rem; color: var(--muted); }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-bottom a { color: #55555b; }
.footer-link { text-decoration: none; transition: color 180ms ease; }
.footer-link:hover, .footer-link:focus-visible { color: var(--blue); text-decoration: none; }
.footer-link--top { --arrow-x: 0px; }
@media (min-width: 1500px) { .hero { padding-top: 64px; } }
@media (max-width: 1000px) {
  .section-shell { width: calc(100% - 64px); }
  .hero-main { gap: 35px; grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr); }
  .hero-actions { gap: 16px; }
  .paper-box-text { padding-inline: 25px; }
}
@media (max-width: 700px) {
  .timeline-row { grid-template-columns: minmax(0, 1fr); }
  .timeline-meta { text-align: left; }
  html { scroll-padding-top: 116px; }
  .section-shell { width: calc(100% - 40px); }
  .navigation { height: auto; min-height: 90px; flex-wrap: wrap; gap: 0 16px; padding-block: 12px 10px; }
  .wordmark { font-size: 1.25rem; }
  .nav-contact { margin-left: auto; font-size: .8125rem; padding: 5px 12px; }
  .nav-links { order: 3; width: 100%; justify-content: space-between; gap: 16px; padding-top: 10px; }
  .nav-links a { font-size: .8125rem; }
  .hero { padding-top: 36px; padding-bottom: 32px; }
  .hero-main { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(2.5rem, 9vw, 3rem); margin-left: -3px; margin-top: 0; }
  .hero-actions { gap: 21px; margin-top: 25px; }
  .button-primary { padding: 11px 18px; gap: 5px; }
  .text-link { font-size: .875rem; }
  .hero-portrait { max-width: 260px; justify-self: center; margin-top: 0; }
  .hero-portrait img { object-position: center 41%; border-radius: 10px; }
  .news-section, .detail-section { gap: 24px; }
  .section-heading h2 { font-size: 2rem; margin-top: 0; }
  .news-section { padding-block: 32px 40px; }
  .news-list li { padding-left: 77px; font-size: 1rem; }
  .research-section { padding-block: 40px; }
  .research-heading { display: block; margin-bottom: 28px; }
  .research-heading > a { display: inline-block; margin-top: 18px; }
  .paper-grid { grid-template-columns: 1fr; gap: 20px; }
  .paper-box-image { padding: 54px 22px 8px; }
  .paper-box--lamo .paper-box-image, .paper-box--senna .paper-box-image { padding-top: 82px; }
  .paper-box--vad .paper-box-image { padding-top: 70px; }
  .paper-box-image img { height: 205px; }
  .paper-box-text { padding: 25px 24px 30px; }
  .other-publications { margin-top: 38px; }
  .detail-section { padding-block: 36px; }
  .site-footer { margin-top: 32px; padding-top: 36px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 26px; padding-bottom: 40px; }
  .footer-top h2 { font-size: 1.5rem; }
  .footer-email { font-size: 1rem; overflow-wrap: anywhere; }
  .footer-bottom { font-size: .75rem; }
  .footer-bottom div { gap: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .button-primary, :is(.nav-contact, .hero-actions a, .text-link, .footer-link) > span[aria-hidden="true"] { transform: none !important; }
}
@media print { .site-header, .hero-actions, .site-footer, .skip-link { display: none; } .section-shell { width: 100%; } .hero, .research-section, .detail-section, .news-section { padding-block: 20px; } .paper-box { break-inside: avoid; } body { background: white; } }
