:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-elevated: rgba(255, 255, 255, 0.72);
  --bg-solid: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --primary: #155eef;
  --primary-strong: #0f4bcc;
  --accent: #06b6d4;
  --accent-soft: rgba(21, 94, 239, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 28px 90px rgba(15, 23, 42, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1200px;
  --body-font: "Manrope", sans-serif;
  --heading-font: "Sora", sans-serif;
  --step--1: clamp(0.92rem, 0.88rem + 0.1vw, 0.98rem);
  --step-0: clamp(1rem, 0.96rem + 0.16vw, 1.08rem);
  --step-1: clamp(1.12rem, 1.04rem + 0.3vw, 1.3rem);
  --step-2: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.4rem + 1.6vw, 3rem);
  --step-4: clamp(3.2rem, 2.1rem + 3vw, 5.8rem);
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #09111f;
  --bg-elevated: rgba(10, 19, 37, 0.7);
  --bg-solid: #08101d;
  --text: #ebf1ff;
  --muted: #a6b1c7;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.24);
  --primary: #7aa2ff;
  --primary-strong: #a7f3ff;
  --accent: #22d3ee;
  --accent-soft: rgba(122, 162, 255, 0.16);
  --shadow: 0 26px 80px rgba(2, 6, 23, 0.45);
  --shadow-strong: 0 32px 100px rgba(2, 6, 23, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 94, 239, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 25%),
    linear-gradient(180deg, var(--bg-solid) 0%, var(--bg) 60%, var(--bg-solid) 100%);
  transition: background-color 300ms ease, color 300ms ease;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.network-canvas,
.cursor-glow,
.scroll-progress,
.site-header,
.page-shell {
  position: relative;
  z-index: 1;
}

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.15), rgba(21, 94, 239, 0));
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 0.75;
}

body[data-theme="dark"] .cursor-glow {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0));
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 20;
  background: transparent;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 22px rgba(21, 94, 239, 0.34);
}

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

.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  margin-bottom: 12px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand__mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(21, 94, 239, 0.35);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(18px);
}

body[data-theme="dark"] .site-nav {
  background: rgba(8, 16, 29, 0.58);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: var(--step--1);
  transition: color 220ms ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--text);
  transition: transform 220ms ease;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

body[data-theme="dark"] .theme-toggle {
  background: rgba(8, 16, 29, 0.6);
}

.theme-toggle__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(21, 94, 239, 0.34);
}

.section {
  padding: 56px 0;
}

.section--hero {
  padding-top: 30px;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 48px;
}

.eyebrow,
.micro-label {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before,
.micro-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero h1,
.page-title {
  font-size: var(--step-4);
  line-height: 0.96;
}

.hero-title {
  max-width: 11.5ch;
  font-size: clamp(2.35rem, 1.7rem + 2vw, 4.1rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.07em;
}

.hero-title__line {
  display: block;
}

.hero-title__line--accent {
  color: color-mix(in srgb, var(--text) 72%, var(--primary) 28%);
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  font-size: var(--step-3);
  line-height: 1.04;
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
}

.hero-text,
.section-text,
.feature-card p,
.publication-card p,
.timeline-card p,
.project-card p,
.detail-card p,
.cv-entry p,
.cv-sidebar p {
  margin: 0;
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin-top: 24px;
  font-size: var(--step-1);
}

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

.hero-actions--compact {
  margin-top: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: var(--step--1);
}

.hero-meta span,
.hero-meta a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

body[data-theme="dark"] .hero-meta span,
body[data-theme="dark"] .hero-meta a {
  background: rgba(8, 16, 29, 0.45);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--step--1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 36px rgba(21, 94, 239, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line-strong);
  backdrop-filter: blur(14px);
}

body[data-theme="dark"] .button-secondary {
  background: rgba(8, 16, 29, 0.56);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--step--1);
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%);
  pointer-events: none;
}

body[data-theme="dark"] .glass-card::before {
  background: linear-gradient(135deg, rgba(122, 162, 255, 0.12), transparent 40%);
}

.hero-panel {
  min-height: 620px;
  display: grid;
  gap: 22px;
  padding: 26px;
}

.hero-visual--photo-a,
.hero-visual--photo-b {
  position: relative;
}

.hero-visual--photo-a {
  display: grid;
  grid-template-columns: minmax(210px, 232px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 24px;
}

.hero-visual--photo-a .hero-panel {
  min-width: 0;
  margin-left: 0;
}

.hero-visual--photo-b {
  display: grid;
  gap: 18px;
}

.hero-visual--photo-b .hero-panel {
  min-height: 520px;
}

.portrait-card {
  position: relative;
  z-index: 2;
  padding: 14px;
  border-radius: 28px;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -16% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.16), transparent 72%);
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

body[data-theme="dark"] .portrait-card::after {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 72%);
}

.portrait-card--floating {
  position: relative;
  top: 22px;
  left: 0;
  width: 100%;
}

.portrait-card--top {
  justify-self: end;
}

.portrait-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-theme="dark"] .portrait-card__label {
  background: rgba(8, 16, 29, 0.62);
}

.portrait-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.64));
}

body[data-theme="dark"] .portrait-card__image-wrap {
  background: linear-gradient(180deg, rgba(10, 19, 37, 0.9), rgba(8, 16, 29, 0.72));
}

.portrait-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.portrait-card__caption {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.compare-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.compare-switch .button {
  min-height: 44px;
}

.hero-panel__glow,
.hero-panel__scan {
  position: absolute;
  pointer-events: none;
}

.hero-panel__glow {
  inset: -20% auto auto 48%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.2), rgba(21, 94, 239, 0));
  filter: blur(24px);
  animation: glow-drift 10s ease-in-out infinite alternate;
}

body[data-theme="dark"] .hero-panel__glow {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.24), rgba(34, 211, 238, 0));
}

.hero-panel__scan {
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(21, 94, 239, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 52%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: scan-sweep 7s ease-in-out infinite;
}

body[data-theme="dark"] .hero-panel__scan {
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(34, 211, 238, 0.16) 50%,
    rgba(255, 255, 255, 0.02) 52%,
    transparent 58%,
    transparent 100%
  );
}

.hero-panel__topline,
.hero-panel__metrics {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}

.hero-panel__topline {
  color: var(--muted);
  font-size: var(--step--1);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(21, 94, 239, 0.14);
  opacity: 0.9;
}

body[data-theme="dark"] .hero-orbit {
  border-color: rgba(122, 162, 255, 0.18);
}

.hero-orbit--large {
  width: 420px;
  height: 420px;
  right: -110px;
  top: 38px;
  animation: orbit-spin 18s linear infinite;
}

.hero-orbit--small {
  width: 240px;
  height: 240px;
  right: 22px;
  top: 122px;
  animation: orbit-spin 12s linear infinite reverse;
}

.hero-panel__core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  margin-top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.66));
}

body[data-theme="dark"] .hero-panel__core {
  background: linear-gradient(180deg, rgba(10, 19, 37, 0.88), rgba(8, 16, 29, 0.66));
}

.signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step-0);
}

.signal-list li:last-child {
  border-bottom: 0;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row {
  padding-top: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-panel__metrics article {
  display: grid;
  gap: 5px;
  align-content: start;
  min-height: 94px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
}

body[data-theme="dark"] .hero-panel__metrics article {
  background: rgba(8, 16, 29, 0.38);
}

.hero-panel__metrics strong {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 1rem + 0.8vw, 2rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero-panel__metrics span,
.publication-card__meta,
.detail-card__authors,
.timeline-card__date,
.cv-entry span,
.detail-card__meta {
  color: var(--muted);
  font-size: var(--step--1);
}

.feature-grid,
.publication-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.feature-grid--three,
.publication-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.publication-card,
.project-card,
.timeline-card,
.detail-card,
.cv-sidebar,
.cv-section,
.cta-card {
  padding: 28px;
}

.feature-card h3,
.publication-card h3,
.project-card h3,
.timeline-card h3,
.detail-card h2,
.cv-section h2,
.cv-entry h3,
.cv-sidebar h2 {
  font-size: var(--step-2);
  line-height: 1.1;
}

.feature-card__lead {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text);
}

.publication-card,
.project-card {
  display: grid;
  gap: 14px;
}

.publication-card__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
}

.project-card ul,
.outcome-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.project-card li,
.outcome-list li {
  margin-top: 8px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: start;
}

.section--cta {
  padding-bottom: 72px;
}

.cta-card {
  text-align: center;
  padding: 42px 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: var(--step--1);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  padding-top: 26px;
}

.detail-list {
  display: grid;
  gap: 20px;
}

.detail-card {
  display: grid;
  gap: 16px;
}

.detail-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.detail-card__meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

body[data-theme="dark"] .detail-card__meta span {
  background: rgba(8, 16, 29, 0.44);
}

.cv-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 20px;
}

.cv-sidebar {
  position: sticky;
  top: 108px;
  height: fit-content;
  display: grid;
  gap: 18px;
}

.cv-sidebar__group {
  display: grid;
  gap: 6px;
}

.cv-sidebar__group span {
  color: var(--muted);
  font-size: var(--step--1);
  font-weight: 700;
}

.cv-content {
  display: grid;
  gap: 18px;
}

.cv-section {
  display: grid;
  gap: 18px;
}

.cv-entry {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cv-entry:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan-sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes glow-drift {
  0% {
    transform: translate3d(-18px, -10px, 0) scale(0.95);
  }
  100% {
    transform: translate3d(18px, 16px, 0) scale(1.08);
  }
}

@media (max-width: 1100px) {
  .hero,
  .feature-grid--three,
  .publication-grid,
  .cv-layout {
    grid-template-columns: 1fr;
  }

  .timeline-card,
  .feature-grid--two,
  .section-heading--row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cv-sidebar {
    position: relative;
    top: auto;
  }

  .hero-panel {
    min-height: 560px;
  }

  .hero-visual--photo-a {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    padding-top: 16px;
  }

  .hero-visual--photo-a .hero-panel {
    margin-left: 0;
  }

  .portrait-card--floating {
    top: 12px;
    left: 0;
  }
}

@media (max-width: 840px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    position: relative;
    inset: auto;
    display: grid;
  }

  .hero-panel {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-panel__core {
    margin-top: 104px;
  }

  .hero-panel__metrics {
    grid-template-columns: 1fr;
  }
}

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

  .hero-actions,
  .hero-meta,
  .tag-row,
  .chip-row {
    gap: 10px;
  }

  .timeline-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .portrait-card,
  .portrait-card--top {
    width: 100%;
    justify-self: stretch;
  }

  .hero-visual--photo-a {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 8px;
  }

  .hero-visual--photo-a .hero-panel {
    margin-left: 0;
  }

  .portrait-card--floating {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 18px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 1.6rem + 2.4vw, 3.05rem) !important;
  }

  .cursor-glow {
    display: none;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-panel__scan,
  .hero-panel__glow {
    display: none;
  }
}
