
:root {
  --navy-950: #071827;
  --navy-900: #0b2239;
  --navy-800: #123a5a;
  --navy-700: #1b4c70;
  --blue-600: #2e6f9e;
  --blue-500: #4b8fbd;
  --blue-200: #bdd9eb;
  --gold-muted: #c5a45d;
  --slate-800: #334552;
  --slate-700: #4e5f6b;
  --slate-500: #73818c;
  --slate-300: #cbd5dc;
  --slate-200: #e3e9ed;
  --slate-100: #f4f7f9;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 24, 39, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 24, 39, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy-950);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--slate-100);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 780px;
  color: var(--slate-700);
  font-size: clamp(1rem, 2vw, 1.17rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(203, 213, 220, 0.68);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 8px 24px rgba(18, 58, 90, 0.22);
  font-size: 0.9rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--slate-700);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--navy-900);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 820;
}

.language-switch a {
  min-width: 29px;
  padding: 4px 7px;
  border-radius: 999px;
  text-align: center;
}

.language-switch a.current {
  color: var(--white);
  background: var(--navy-900);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(75, 143, 189, 0.26), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 57%, var(--navy-800) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 58px;
  align-items: center;
  padding: 86px 0;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #aed3eb;
  font-size: 0.83rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-name {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero-tagline {
  max-width: 790px;
  margin-bottom: 0;
  color: #a8cee7;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 610;
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.hero-accent-line {
  width: 72px;
  height: 3px;
  margin: 23px 0 25px;
  border-radius: 999px;
  background: var(--gold-muted);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}


.hero-portrait {
  width: min(100%, 292px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-placeholder {
  width: min(100%, 292px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.hero-meta {
  display: grid;
  gap: 14px;
}

.hero-meta div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.115);
}

.hero-meta strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}


/* Credentials strip */
.credentials {
  position: relative;
  margin-top: -34px;
  z-index: 2;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credential-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.credential-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 5px;
}

.credential-card strong {
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.25;
}

.credential-year {
  color: var(--gold-muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.credential-card > span {
  color: var(--slate-700);
  font-size: 0.92rem;
}


/* Professional languages */
.languages-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.languages-title {
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.language-skill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.87rem;
  white-space: nowrap;
}

.language-skill strong {
  color: var(--navy-900);
  font-weight: 780;
}

.language-skill span {
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 720;
}

/* Beyond technology */
.beyond-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.beyond-copy {
  color: var(--slate-700);
  font-size: 1.07rem;
}

.beyond-copy::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--gold-muted);
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-content: center;
}

.interest-tag {
  padding: 10px 14px;
  border: 1px solid rgba(46, 111, 158, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-800);
  box-shadow: 0 8px 22px rgba(7, 24, 39, 0.05);
  font-size: 0.9rem;
  font-weight: 720;
}

/* About */
.about-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 48px;
  align-items: start;
}

.prose {
  display: grid;
  gap: 20px;
  color: var(--slate-700);
  font-size: 1.07rem;
}

.positioning-card {
  padding: 29px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.positioning-card p {
  font-size: 1.31rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.positioning-card small {
  display: block;
  margin-top: 18px;
  color: #acd0e8;
}

/* Expertise */
.cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.card {
  min-height: 226px;
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #b8cbd7;
  box-shadow: var(--shadow-sm);
}

.card-index {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border-radius: 10px;
  color: var(--blue-600);
  background: var(--slate-100);
  font-weight: 850;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.25;
}

.card p {
  color: var(--slate-700);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 29px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--blue-600), var(--slate-300));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 0 0 41px 18px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600);
}

.timeline-period {
  color: var(--blue-600);
  font-weight: 820;
}

.timeline-content h3 {
  margin-bottom: 5px;
  font-size: 1.23rem;
}

.timeline-content p {
  max-width: 790px;
  color: var(--slate-700);
}


/* Innovation ecosystem */
.innovation-card {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.innovation-meta {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.innovation-meta strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.18rem;
}

.innovation-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.innovation-content h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.22;
}

.innovation-content p {
  color: var(--slate-700);
}

.innovation-points {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.innovation-points span {
  position: relative;
  padding-left: 18px;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.innovation-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(7, 24, 39, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-800);
}

/* Selected experiences — deliberately static */
.experience-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
}

.experience-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px;
  border: 1px solid rgba(46, 111, 158, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(18, 58, 90, 0.035), rgba(46, 111, 158, 0.08)),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.experience-card .tag {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-600);
  background: rgba(46, 111, 158, 0.09);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 31px 0 12px;
  font-size: 1.46rem;
  line-height: 1.2;
}

.experience-card p {
  color: var(--slate-700);
}

.experience-card small {
  margin-top: 25px;
  color: var(--blue-600);
  font-weight: 730;
}

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 42px;
  padding: 45px;
  border-radius: 28px;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.contact-box p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.73);
}

.contact-links {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-links a {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-links a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-links .pending {
  color: rgba(255, 255, 255, 0.56);
  cursor: default;
}

.contact-links .pending:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.055);
}

/* Footer */
.site-footer {
  padding: 27px 0;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-500);
  font-size: 0.9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Landing page */
.language-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(75, 143, 189, 0.25), transparent 29%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, var(--navy-800));
}

.language-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.language-panel {
  position: relative;
  width: min(calc(100% - 34px), 820px);
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.language-logo {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 15px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 880;
}

.language-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.language-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
}

.language-options {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.language-option {
  display: block;
  padding: 23px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.language-option:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.11);
}

.language-option strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.08rem;
}

.language-option span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.language-domain {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 74px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--slate-200);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 11px;
  }

  .nav-right {
    gap: 9px;
  }

  .hero-grid,
  .about-grid,
  .contact-box,
  .innovation-card,
  .beyond-grid {
    grid-template-columns: 1fr;
  }

  .languages-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card {
    max-width: 520px;
  }

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

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .innovation-card {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .hero-name {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
  }

  .hero-tagline {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .cards,
  .experience-grid,
  .innovation-points,
  .language-options,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 29px 23px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .language-panel {
    padding: 40px 23px;
  }

  .languages-panel {
    padding: 18px;
  }

  .language-skills {
    gap: 8px;
  }

  .language-skill {
    white-space: normal;
  }
}

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

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