:root {
  color-scheme: light;
  --ink: #17212f;
  --muted: #607086;
  --line: rgba(20, 31, 46, 0.13);
  --paper: rgba(255, 255, 255, 0.76);
  --white: #ffffff;
  --accent: #0d7c86;
  --accent-strong: #064e56;
  --coral: #c85a3c;
  --gold: #b88a27;
  --green: #557c42;
  --shadow: 0 22px 70px rgba(27, 40, 57, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(120deg, rgba(13, 124, 134, 0.14), transparent 30%),
    linear-gradient(235deg, rgba(200, 90, 60, 0.12), transparent 34%),
    linear-gradient(135deg, #f7fbfa 0%, #f3f4ee 44%, #f8faf7 100%);
  line-height: 1.6;
}

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

body::before {
  opacity: 0.58;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(13, 124, 134, 0.16) 26%, transparent 42%),
    linear-gradient(295deg, transparent 0 22%, rgba(184, 138, 39, 0.12) 35%, transparent 54%),
    linear-gradient(18deg, transparent 0 38%, rgba(200, 90, 60, 0.12) 48%, transparent 68%);
  filter: blur(16px);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(6, 78, 86, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 78, 86, 0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

body.menu-open {
  overflow: hidden;
}

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

#research-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral), var(--gold));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 250, 248, 0.78);
  border-bottom: 1px solid rgba(21, 31, 46, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-strong), var(--coral));
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(13, 124, 134, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a,
.site-footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.nav-cta {
  padding: 10px 18px;
  color: var(--accent-strong);
  font-weight: 800;
  border: 1px solid rgba(13, 124, 134, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 116px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 7vw, 80px);
  min-height: calc(100vh - 76px);
  padding-top: clamp(48px, 7vw, 80px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.2rem, 11vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: #37465a;
  font-size: clamp(1.06rem, 2vw, 1.38rem);
}

.hero-advisor {
  max-width: 720px;
  margin-top: 24px;
}

.hero-advisor span {
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(13, 124, 134, 0.62), rgba(200, 90, 60, 0.24), transparent);
}

.hero-advisor h2 {
  position: relative;
  width: fit-content;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: clamp(1.18rem, 1.7vw, 1.34rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-advisor h2::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0.72;
}

.hero-advisor p {
  margin: 0;
  color: #4f5d6f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-advisor a {
  color: var(--accent-strong);
  font-weight: 800;
}

.hero-advisor a:hover {
  color: var(--coral);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 800;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--accent-strong);
  box-shadow: 0 18px 40px rgba(6, 78, 86, 0.22);
}

.button.secondary {
  color: var(--accent-strong);
  border: 1px solid rgba(6, 78, 86, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.signal-panel {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.profile-photo {
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  place-items: center;
  padding: 8px;
  border-radius: 50%;
  background:
    conic-gradient(from var(--angle), rgba(13, 124, 134, 0.84), rgba(200, 90, 60, 0.8), rgba(184, 138, 39, 0.74), rgba(13, 124, 134, 0.84));
  animation: spin 12s linear infinite;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  border: 6px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.04) rotate(-1deg);
  }

  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.08) rotate(1deg);
  }
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading .eyebrow,
.skill-block > .eyebrow,
.award-block > .eyebrow,
.contact > .eyebrow {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 2.4vw, 2.05rem);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: none;
}

.section-heading h2,
.skill-block h2,
.award-block h2,
.contact h2 {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  font-weight: 600;
  line-height: 1.42;
}

.research-grid,
.education-grid,
.skills-awards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.research-card,
.education-card,
.news-item,
.publication,
.timeline-item,
.skill-block,
.award-block {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(21, 31, 46, 0.08);
  backdrop-filter: blur(14px);
}

.research-card,
.education-card {
  padding: 22px;
}

.education-card {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 194px;
}

.education-logo {
  display: grid;
  width: 166px;
  height: 154px;
  place-items: center;
}

.education-logo img {
  display: block;
  object-fit: contain;
}

.education-logo-circle img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
}

.education-logo-ncepu img,
.education-logo-gdpu img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}

.education-logo-uh img {
  width: auto;
  max-width: 104px;
  height: 104px;
  border-radius: var(--radius);
}

.education-logo-aberdeen img {
  width: 116px;
  height: 116px;
  border-radius: 0;
}

.education-logo-shield img {
  width: auto;
  max-width: 148px;
  height: 112px;
  border-radius: var(--radius);
}

.research-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--coral);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 800;
}

.research-card p,
.education-card p,
.news-item p,
.publication p,
.timeline-item p,
.contact h2 {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.filter {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.filter.active {
  color: #fff;
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.publication-list,
.news-list,
.timeline {
  display: grid;
  gap: 14px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 124, 134, 0.42) transparent;
}

.publication-list {
  --scroll-item-height: 176px;
  max-height: calc((var(--scroll-item-height) * 5) + (14px * 4));
}

.news-list {
  max-height: calc((118px * 5) + (14px * 4));
}

.timeline {
  --scroll-item-height: 166px;
  max-height: calc((var(--scroll-item-height) * 5) + (14px * 4));
}

.publication-list::-webkit-scrollbar,
.news-list::-webkit-scrollbar,
.timeline::-webkit-scrollbar {
  width: 7px;
}

.publication-list::-webkit-scrollbar-track,
.news-list::-webkit-scrollbar-track,
.timeline::-webkit-scrollbar-track {
  background: transparent;
}

.publication-list::-webkit-scrollbar-thumb,
.news-list::-webkit-scrollbar-thumb,
.timeline::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(13, 124, 134, 0.34);
}

.publication-list.has-scroll-after,
.news-list.has-scroll-after,
.timeline.has-scroll-after {
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 88px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 88px), transparent 100%);
}

.publication-list.has-scroll-before,
.news-list.has-scroll-before,
.timeline.has-scroll-before {
  mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 100%);
}

.publication-list.has-scroll-before.has-scroll-after,
.news-list.has-scroll-before.has-scroll-after,
.timeline.has-scroll-before.has-scroll-after {
  mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 calc(100% - 88px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 calc(100% - 88px), transparent 100%);
}

.news-item {
  position: relative;
  min-height: 118px;
  padding: 22px 24px 22px 30px;
  overflow: hidden;
}

.news-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.news-item p {
  margin: 0;
  font-weight: 650;
  line-height: 1.55;
}

.news-item strong {
  color: var(--ink);
  font-weight: 800;
}

.publication,
.timeline-item {
  position: relative;
  min-height: var(--scroll-item-height);
  padding: 22px 24px 22px 30px;
  overflow: hidden;
}

.timeline-item {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.timeline-item > time {
  grid-column: 2;
}

.publication {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: start;
  overflow: visible;
}

.publication-ccf-a {
  border-color: rgba(184, 138, 39, 0.42);
  background: linear-gradient(90deg, rgba(184, 138, 39, 0.14), rgba(255, 255, 255, 0.78) 34%);
}

.publication-ccf-a::before {
  background: linear-gradient(180deg, var(--gold), var(--coral));
}

.publication time,
.publication-heading,
.publication > p {
  grid-column: 1;
}

.abstract-panel {
  grid-column: 1 / -1;
}

.publication-heading {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  margin-top: 2px;
}

.publication-heading h3 {
  min-width: 0;
  margin: 0;
}

.publication > p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.publication > p::before {
  content: "";
}

.pub-venue-label {
  display: inline-flex;
  width: fit-content;
  min-width: 58px;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 4px 9px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  border-radius: 4px;
  background: linear-gradient(135deg, #168b9c, var(--accent-strong));
  box-shadow: 0 6px 14px rgba(6, 78, 86, 0.18);
}

.ccf-venue {
  display: inline;
  color: #6f4d04;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 -0.42em 0 rgba(184, 138, 39, 0.22);
}

.publication-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: center;
}

.paper-link,
.abstract-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  font-family: inherit;
  line-height: 1;
  border: 1px solid rgba(13, 124, 134, 0.24);
  border-radius: var(--radius);
  background: rgba(245, 252, 251, 0.78);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.paper-link:hover,
.abstract-toggle:hover,
.abstract-toggle[aria-expanded="true"] {
  color: #fff;
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.abstract-panel {
  margin-top: 18px;
  padding-top: 16px;
}

.abstract-panel::before {
  display: block;
  width: min(100%, 560px);
  height: 1px;
  margin-bottom: 14px;
  content: "";
  background: linear-gradient(90deg, rgba(13, 124, 134, 0.58), rgba(200, 90, 60, 0.22), transparent);
}

.abstract-panel p {
  max-width: 840px;
  margin: 0;
  color: #4f5d6f;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.58;
}

.publication::before,
.timeline-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--coral));
}

.company-heading {
  display: contents;
}

.timeline-item > p {
  grid-column: 2;
  margin: 12px 0 0;
}

.company-logo {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: grid;
  width: 148px;
  height: 76px;
  place-items: center;
  padding: 8px;
}

.company-heading > div {
  grid-column: 2;
}

.company-logo img {
  display: block;
  max-width: 132px;
  max-height: 60px;
  object-fit: contain;
}

.company-logo-circle img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.company-logo-shield img {
  width: auto;
  height: 54px;
  border-radius: var(--radius);
}

.company-logo-uh img {
  width: auto;
  height: 82px;
  max-height: 82px;
  border-radius: var(--radius);
}

.company-logo-aberdeen img {
  width: 88px;
  height: 88px;
  max-height: 88px;
  border-radius: 0;
}

.company-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.company-link:hover {
  color: var(--coral);
}

time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.skills-awards {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.skill-block,
.award-block {
  padding: 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  padding: 9px 12px;
  color: var(--accent-strong);
  font-weight: 800;
  border: 1px solid rgba(13, 124, 134, 0.24);
  border-radius: var(--radius);
  background: rgba(245, 252, 251, 0.76);
}

.award-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.award-list li {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
}

.contact {
  padding: clamp(48px, 7vw, 76px);
  margin-bottom: clamp(52px, 8vw, 94px);
  background: linear-gradient(135deg, rgba(6, 78, 86, 0.94), rgba(42, 75, 63, 0.9));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact .eyebrow,
.contact h2 {
  color: #fff;
}

.contact .button.primary {
  color: var(--accent-strong);
  background: #fff;
}

.contact .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.publication.hidden {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .skills-awards {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .company-heading {
    display: contents;
  }

  .timeline-item {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 16px;
  }

  .timeline-item > p {
    margin-left: 0;
  }

  .company-logo {
    width: 104px;
    height: 82px;
    justify-content: center;
    padding: 6px;
  }

  .company-logo img {
    max-width: 88px;
    max-height: 56px;
  }

  .company-logo-uh img {
    height: 78px;
    max-height: 78px;
  }

  .company-logo-aberdeen img {
    width: 78px;
    height: 78px;
    max-height: 78px;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

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

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

  .education-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    min-height: 148px;
  }

  .education-logo {
    width: 104px;
    height: 96px;
  }

  .education-logo-circle img {
    width: 92px;
    height: 92px;
  }

  .education-logo-ncepu img,
  .education-logo-gdpu img {
    width: 82px;
    height: 82px;
  }

  .education-logo-uh img {
    max-width: 86px;
    height: 82px;
  }

  .education-logo-aberdeen img {
    width: 92px;
    height: 92px;
  }

  .education-logo-shield img {
    max-width: 104px;
    height: 88px;
  }

  .contact {
    padding: 32px 20px;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }

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

  .publication-heading {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .publication > p {
    display: block;
  }

  .publication-actions {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-self: start;
    margin-top: 4px;
  }

  .publication-actions .paper-link,
  .publication-actions .abstract-toggle {
    min-width: 92px;
  }

}

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

  #research-canvas {
    display: none;
  }

  body::before {
    animation: none;
  }
}
