/* ============================================================
   ANSHKOHLI.COM — "Cloud Dancer" Light Design System
   Warm off-white base · digital lavender/indigo accent
   · muted teal + peach touches · soft depth, easy on the eyes
   ============================================================ */

:root {
  --bg: #faf9f6;            /* cloud-dancer warm white */
  --bg-tint: #f3f2fa;       /* lavender-grey section wash */
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(99, 102, 241, 0.14);
  --line-soft: rgba(35, 40, 59, 0.08);
  --indigo: #6366f1;        /* primary accent — digital lavender family */
  --indigo-deep: #4f46e5;
  --teal: #0d9488;          /* muted teal, used sparingly */
  --peach: #f0997a;         /* warm highlight */
  --text: #23283b;          /* soft slate ink */
  --muted: #5d6478;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-soft: 0 10px 34px rgba(35, 40, 59, 0.08);
  --shadow-lift: 0 18px 44px rgba(35, 40, 59, 0.12), 0 2px 8px rgba(99, 102, 241, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* faint tech grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 40, 59, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 40, 59, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* soft aurora washes — muted lavender / mint / peach */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(640px 480px at 12% 14%, rgba(199, 195, 252, 0.4), transparent 65%),
    radial-gradient(560px 460px at 88% 10%, rgba(178, 231, 222, 0.35), transparent 65%),
    radial-gradient(720px 560px at 76% 92%, rgba(250, 216, 197, 0.32), transparent 65%),
    radial-gradient(520px 420px at 8% 88%, rgba(199, 195, 252, 0.25), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

::selection { background: rgba(99, 102, 241, 0.18); color: var(--text); }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #f1efe9; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--indigo), var(--teal));
  border-radius: 99px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
b { font-weight: 600; color: #16192b; }

/* accessibility: keyboard focus + skip link */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  transition: top 0.25s var(--ease);
}

.skip-link:focus { top: 0; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2.6rem;
}

.accent {
  background: linear-gradient(92deg, var(--indigo), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ LOADER ============ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s;
}

body.loaded #loader { opacity: 0; visibility: hidden; }

.loader-hex {
  width: 54px;
  height: 54px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  animation: hexspin 1.4s linear infinite;
}

@keyframes hexspin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(0.82); }
  100% { transform: rotate(360deg) scale(1); }
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--indigo);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(99, 102, 241, 0.14);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  border-radius: 99px;
  animation: loadslide 1.1s ease-in-out infinite;
}

@keyframes loadslide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(520%); }
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-halo {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 150;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px; height: 7px;
  background: var(--indigo);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

.cursor-halo {
  width: 38px; height: 38px;
  border: 1px solid rgba(99, 102, 241, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s, background 0.25s;
}

body.cursor-hover .cursor-halo {
  width: 62px; height: 62px;
  border-color: var(--teal);
  background: rgba(13, 148, 136, 0.07);
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-halo { display: none; }
}

/* ============ STARFIELD ============ */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============ NAV ============ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background 0.4s, border-color 0.4s, padding 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(35, 40, 59, 0.05);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  color: var(--indigo);
}

.nav-logo b { color: var(--teal); }
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
  padding: 4px 2px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--indigo-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(92deg, var(--indigo), #818cf8);
  padding: 8px 18px;
  border-radius: 99px;
  font-weight: 600;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { color: #fff; box-shadow: 0 8px 22px rgba(99, 102, 241, 0.35); }

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
  z-index: 110;
}

#nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--indigo);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============ HERO ============ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px clamp(20px, 7vw, 90px) 80px;
  max-width: 860px;
  pointer-events: none;
}

.hero-content a { pointer-events: auto; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-bottom: 14px;
  animation: fadeup 0.9s var(--ease) 0.15s backwards;
}

.hero-name {
  font-size: clamp(2.7rem, 9vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  animation: fadeup 0.9s var(--ease) 0.3s backwards;
}

.hero-roles {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2.4vw, 1.3rem);
  letter-spacing: 0.14em;
  color: var(--indigo-deep);
  min-height: 1.8em;
  margin: 14px 0 18px;
  animation: fadeup 0.9s var(--ease) 0.45s backwards;
}

.caret { animation: blink 0.9s steps(1) infinite; color: var(--teal); }

@keyframes blink { 50% { opacity: 0; } }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
  animation: fadeup 0.9s var(--ease) 0.6s backwards;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeup 0.9s var(--ease) 0.75s backwards; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 13px 30px;
  border-radius: 99px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-primary {
  background: linear-gradient(92deg, var(--indigo), #818cf8);
  color: #fff;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.28);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4); }

.btn-ghost {
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: var(--indigo-deep);
  background: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(99, 102, 241, 0.07);
  box-shadow: 0 8px 22px rgba(99, 102, 241, 0.18);
}

.btn-lg { font-size: 1rem; padding: 16px 38px; }

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.scroll-hint:hover { opacity: 1; }

.mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--indigo);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.wheel {
  width: 3px; height: 8px;
  background: var(--indigo);
  border-radius: 99px;
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--muted);
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 12vh, 140px) 24px;
}

.section-center { text-align: center; }

.container { max-width: 1100px; margin: 0 auto; }

.sec-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  color: var(--teal);
  margin-bottom: 12px;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}

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

/* glass panel */
.glass {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-text p { margin-bottom: 18px; color: var(--muted); }
.about-text p:last-child { margin-bottom: 0; }

/* terminal — kept dark for cozy code-block contrast */
.terminal {
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: #22273b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.terminal-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.terminal-bar span:nth-child(1) { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: #febc2e; }
.terminal-bar span:nth-child(3) { background: #28c840; }

.terminal-bar p {
  margin-left: auto;
  font-size: 0.7rem;
  color: #8b93ab;
  letter-spacing: 0.08em;
}

.terminal-body { padding: 20px 22px; line-height: 2.05; color: #e8eaf2; }

.prompt { color: #a5b4fc; margin-right: 8px; }
.out { color: #9aa3bb; padding-left: 18px; }
.out.ok { color: #5eead4; }
.blink { animation: blink 0.9s steps(1) infinite; }

/* ============ SKILLS ============ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.skill-card { padding: 26px 24px; }

.skill-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: var(--shadow-lift);
}

.skill-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.skill-icon { font-size: 1.45rem; filter: drop-shadow(0 4px 10px rgba(99, 102, 241, 0.25)); }

.skill-head h3 { font-size: 0.92rem; font-weight: 700; letter-spacing: 0.02em; }

.skill-pct {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--indigo-deep);
}

.skill-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }

.bar {
  height: 7px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  transition: width 1.3s var(--ease) 0.35s;
}

.reveal.visible .fill { width: var(--level); }

/* ============ PROJECTS ============ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.project-card {
  padding: 32px 30px;
  transform-style: preserve-3d;
  will-change: transform;
}

.project-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--shadow-lift);
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.3);
  background: rgba(13, 148, 136, 0.06);
  padding: 5px 12px;
  border-radius: 99px;
}

.project-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(93, 100, 120, 0.5);
  letter-spacing: 0.2em;
}

.project-card h3 {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--text);
}

.project-card > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chips li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--indigo-deep);
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.22);
  padding: 5px 12px;
  border-radius: 99px;
}

/* ============ BEYOND ============ */
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.beyond-card { padding: 34px 28px; text-align: center; }

.beyond-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: var(--shadow-lift);
}

.beyond-icon {
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(240, 153, 122, 0.35));
}

.beyond-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 10px; }
.beyond-card p { font-size: 0.88rem; color: var(--muted); }

/* ============ VISION ============ */
.discipline-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.discipline-chips span {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.7vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 10px 20px;
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.discipline-chips span:hover {
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--indigo-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.discipline-chips i {
  font-style: normal;
  color: var(--peach);
  font-family: var(--font-mono);
}

.vision-text {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

/* ============ FAQ ============ */
.faq-container { max-width: 760px; }

.faq-list { display: grid; gap: 14px; }

.faq-item { padding: 0; overflow: hidden; }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--indigo);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary { color: var(--indigo-deep); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--indigo-deep); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item p a { color: var(--indigo-deep); font-weight: 500; text-decoration: underline; }

/* ============ CONTACT ============ */
.contact-text { max-width: 560px; margin: 0 auto 34px; color: var(--muted); }

.contact-actions { margin-bottom: 34px; }

.socials { display: flex; justify-content: center; gap: 16px; }

.socials a {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.socials a:hover {
  color: var(--indigo-deep);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* ============ FOOTER ============ */
#footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-soft);
  padding: 30px 24px;
  text-align: center;
}

#footer p {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .beyond-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  #nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(250, 249, 246, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  #nav.open .nav-links { opacity: 1; visibility: visible; }

  #nav.open #nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav.open #nav-toggle span:nth-child(2) { opacity: 0; }
  #nav.open #nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links a { font-size: 1rem; }

  .projects-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }

  .hero-content { padding-top: 100px; }
  .scroll-hint { display: none; }
}

/* ============ REDUCED MOTION ============ */
@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; }
  .reveal .fill { width: var(--level); }
}
