:root {
  --bg: #091019;
  --bg-elevated: #101a25;
  --bg-soft: #0d1621;
  --surface: rgba(18, 29, 43, 0.88);
  --surface-strong: rgba(21, 34, 49, 0.96);
  --surface-soft: rgba(27, 42, 58, 0.76);
  --line: rgba(183, 204, 219, 0.12);
  --line-strong: rgba(183, 204, 219, 0.22);
  --text: #f2ede3;
  --muted: #9eaebb;
  --muted-strong: #c8d4dd;
  --accent: #7fa8b6;
  --accent-strong: #d19a68;
  --accent-soft: rgba(127, 168, 182, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --max-width: 1180px;
  --header-height: 84px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(95, 143, 160, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(190, 127, 82, 0.12), transparent 24%),
    radial-gradient(circle at bottom center, rgba(53, 85, 108, 0.16), transparent 34%),
    linear-gradient(180deg, #060c13 0%, #0a111a 40%, #0a1119 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 95%);
  z-index: -1;
}

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

a {
  color: inherit;
}

p,
li {
  line-height: 1.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--accent-strong);
  color: #071019;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: 110px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 20, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.6rem);
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-intro {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(6, 12, 19, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled {
  background: rgba(7, 13, 20, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(209, 154, 104, 0.14), rgba(127, 168, 182, 0.08)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

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

.brand-copy strong {
  color: var(--text);
  font-size: 0.96rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-button {
  min-width: 52px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lang-button:hover {
  color: var(--text);
}

.lang-button[aria-pressed="true"] {
  background: rgba(209, 154, 104, 0.16);
  color: var(--text);
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 64px) 0 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(127, 168, 182, 0.18), transparent 0 24%),
    radial-gradient(circle at 82% 26%, rgba(209, 154, 104, 0.13), transparent 0 24%),
    linear-gradient(180deg, rgba(6, 12, 18, 0.5), rgba(6, 12, 18, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 34px;
  align-items: center;
}

.hero-role {
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  font-weight: 600;
}

.hero-summary {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.07rem;
}

.hero-summary-secondary {
  color: var(--muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(180deg, transparent 70%, rgba(127, 168, 182, 0.03));
  pointer-events: none;
}

.panel-kicker {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.visual-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-diagram {
  width: 100%;
}

.diagram-frame {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.06);
}

.diagram-ring {
  fill: none;
  stroke: rgba(127, 168, 182, 0.22);
}

.ring-one {
  stroke-width: 1.2;
  stroke-dasharray: 8 12;
  animation: rotate-slow 18s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.ring-two {
  stroke: rgba(209, 154, 104, 0.22);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  animation: rotate-reverse 13s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.diagram-core-glow {
  fill: url(#coreGlow);
}

.diagram-core {
  fill: var(--accent-strong);
}

.diagram-link {
  fill: none;
  stroke: url(#beamStroke);
  stroke-width: 2.2;
  opacity: 0.78;
}

.diagram-wave {
  fill: none;
  stroke: rgba(127, 168, 182, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
  animation: wave-shift 4s linear infinite;
}

.wave-secondary {
  stroke: rgba(209, 154, 104, 0.64);
  stroke-width: 1.4;
  animation-duration: 3.3s;
}

.diagram-node circle {
  fill: rgba(15, 24, 35, 0.94);
  stroke: rgba(255, 255, 255, 0.08);
}

.diagram-node text {
  fill: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.node-c text {
  font-size: 12.5px;
}

.node-b circle,
.node-d circle {
  fill: rgba(17, 29, 41, 0.94);
}

.diagram-caption {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.visual-footer > div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
}

.visual-value {
  display: block;
  color: var(--text);
  font-weight: 800;
}

.visual-label {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.about-grid,
.research-grid,
.visuals-grid,
.papers-grid,
.highlights-grid,
.award-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.prose p {
  margin: 0;
  color: var(--muted-strong);
}

.prose p + p {
  margin-top: 18px;
}

.profile-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-panel h3,
.research-card h3,
.highlight-panel h3,
.award-card h3,
.contact-panel h3 {
  margin: 0;
  font-size: 1.18rem;
}

.monogram {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(209, 154, 104, 0.14), rgba(127, 168, 182, 0.14)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.focus-list,
.compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-list li,
.compact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
}

.focus-list li + li,
.compact-list li + li {
  margin-top: 12px;
}

.focus-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.contact-strip,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-strip a,
.contact-links a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.contact-strip a:hover,
.contact-links a:hover {
  text-decoration: underline;
}

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

.research-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(17, 28, 40, 0.86);
  box-shadow: var(--shadow-soft);
}

.research-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.topic-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.research-card p,
.highlight-panel p,
.contact-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.research-label {
  margin-top: 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-label + p {
  margin-top: 8px;
}

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

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

.visual-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.visual-art-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 16, 25, 0.92);
}

.visual-art-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(220px, 24vw, 320px);
}

.visual-card-body {
  display: grid;
  gap: 8px;
}

.visual-card-tall .visual-art-frame img {
  max-height: clamp(280px, 32vw, 420px);
}

.visual-card h3 {
  margin: 0;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
}

.visual-source {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(209, 154, 104, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.papers-panel {
  min-height: 100%;
}

.paper-list {
  margin: 0;
  padding-left: 22px;
}

.paper-list li + li {
  margin-top: 18px;
}

.paper-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.paper-title a {
  color: inherit;
  text-decoration: none;
}

.paper-title a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.paper-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.highlights-grid {
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
  align-items: stretch;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.highlight-panel-large {
  min-height: 100%;
}

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

.coverage-panel {
  margin-top: 22px;
}

.coverage-panel h3 {
  margin: 0;
  font-size: 1.18rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.coverage-link {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.coverage-link:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 154, 104, 0.24);
  background: rgba(209, 154, 104, 0.05);
}

.coverage-source {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-title {
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.coverage-year {
  color: var(--muted);
  font-size: 0.9rem;
}

.award-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(16, 26, 38, 0.88);
  box-shadow: var(--shadow-soft);
}

.award-year {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(209, 154, 104, 0.12);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(19, 31, 44, 0.92);
}

.contact-panel a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(209, 154, 104, 0.28);
  border-radius: 999px;
  background: rgba(209, 154, 104, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.email-button:hover {
  transform: translateY(-1px);
  background: rgba(209, 154, 104, 0.14);
  border-color: rgba(209, 154, 104, 0.42);
}

.contact-section {
  padding-bottom: 92px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes wave-shift {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 32;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .papers-grid,
  .highlights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .lang-switch {
    margin-right: 2px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(12, 19, 28, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 12px 2px;
  }

  .research-grid,
  .visuals-grid,
  .papers-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .brand-copy span {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-button {
    min-width: 46px;
    padding: 7px 10px;
  }

  .visual-header,
  .visual-footer,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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