/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
  --bg: #08080A;
  --bg-surface: #111115;
  --bg-elevated: #1A1A20;
  --text: #E8E4DD;
  --text-dim: #6B6777;
  --text-muted: #3D3A45;
  --accent: #FF6B4A;
  --accent-glow: rgba(255, 107, 74, 0.15);
  --accent-blue: #4A9EFF;
  --border: rgba(255, 255, 255, 0.06);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-h: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

body.no-scroll { overflow: hidden; }

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

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ===========================
   Custom Cursor
   =========================== */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              border-color 0.3s ease,
              background 0.3s ease,
              opacity 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor--hover {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 74, 0.08);
  border-color: var(--accent);
}

.cursor--hidden {
  opacity: 0;
  width: 0;
  height: 0;
}

/* ===========================
   Noise & Atmosphere
   =========================== */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

body:hover .glow-orb { opacity: 1; }

/* ===========================
   Navigation
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav--scrolled {
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.04em;
  position: relative;
  transition: color 0.3s ease;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav__logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__link .nav__idx {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--accent);
  margin-right: 0.375rem;
  font-weight: 400;
}

.nav__resume {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 74, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  background: transparent;
}

.nav__resume:hover {
  color: var(--bg);
  border-color: var(--accent);
  background: var(--accent);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
  border-radius: 1px;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-overlay__links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.mobile-overlay__links a:hover { color: var(--text); }

.mobile-overlay__links .nav__idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-right: 0.5rem;
}

/* ===========================
   Hero
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 2rem;
  overflow: hidden;
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(255, 255, 255, 0.015);
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span {
  display: inline-block;
}

.hero__title-line:nth-child(2) {
  color: var(--text-dim);
}

.hero__title-accent {
  color: var(--accent);
  position: relative;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-top: 3rem;
}

.hero__description {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 480px;
}

.hero__description a {
  color: var(--accent);
  font-weight: 500;
  position: relative;
}

.hero__description a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.hero__description a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

.hero__socials {
  display: flex;
  gap: 1rem;
}

.hero__socials a {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.hero__socials a:hover {
  color: var(--accent);
  border-color: rgba(255, 107, 74, 0.3);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollSlide 2s ease-in-out infinite;
}

@keyframes scrollSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===========================
   Magnetic Button
   =========================== */

.btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 74, 0.3);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn-magnetic:hover {
  color: var(--bg);
  border-color: var(--accent);
}

.btn-magnetic:hover::before {
  transform: scale(1);
}

.btn-magnetic svg {
  transition: transform 0.3s ease;
}

.btn-magnetic:hover svg {
  transform: translateX(4px);
}

/* ===========================
   Sections (shared)
   =========================== */

.section {
  padding: 8rem 2rem;
  position: relative;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.section__idx {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  max-width: 300px;
}

/* ===========================
   About
   =========================== */

.about__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about__text p {
  color: var(--text-dim);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__text strong {
  color: var(--text);
  font-weight: 500;
}

.about__skills-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.skills-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.skill-tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-tag:hover {
  color: var(--accent);
  border-color: rgba(255, 107, 74, 0.3);
}

.skill-tag:hover::before {
  opacity: 1;
}

/* ===========================
   Experience
   =========================== */

.experience__grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.exp-item {
  background: var(--bg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  transition: background 0.4s ease;
  position: relative;
}

.exp-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.4s ease;
}

.exp-item:hover {
  background: var(--bg-surface);
}

.exp-item:hover::before {
  background: var(--accent);
}

.exp-item__date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 0.25rem;
}

.exp-item__content {}

.exp-item__role {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.exp-item__company {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.exp-item__company a {
  color: var(--accent);
  position: relative;
}

.exp-item__company a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}

.exp-item__company a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.exp-item__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.exp-item__list li {
  font-size: 0.9375rem;
  color: var(--text-dim);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.exp-item__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
}

/* ===========================
   Apps — Horizontal Scroll
   =========================== */

.apps-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.apps-section .section__header {
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.apps__track-wrapper {
  position: relative;
  padding: 0 2rem;
}

.apps__track {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.apps__track:active {
  cursor: grabbing;
}

.apps__track::-webkit-scrollbar {
  display: none;
}

.app-card {
  flex: 0 0 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-out-expo);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.app-card:hover {
  border-color: rgba(255, 107, 74, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.app-card:hover::before {
  opacity: 1;
}

.app-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.app-card__category {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.app-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.app-card__subtitle {
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.app-card__desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.app-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.app-card__tags li {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.app-card:hover .app-card__tags li {
  color: var(--text-dim);
}

.app-card__store {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.app-card__store svg {
  transition: transform 0.3s ease;
}

.app-card:hover .app-card__store {
  color: var(--accent);
}

.app-card:hover .app-card__store svg {
  transform: scale(1.1);
}

/* Scroll hint arrows */
.apps__nav {
  display: flex;
  gap: 0.75rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 1rem auto 0;
  justify-content: flex-end;
}

.apps__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.apps__nav-btn:hover {
  border-color: rgba(255, 107, 74, 0.3);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ===========================
   Contact
   =========================== */

.contact {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
}

.contact__overline {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.contact__text {
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ===========================
   Footer
   =========================== */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__credit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  display: flex;
}

.footer__socials a:hover {
  color: var(--accent);
}

/* ===========================
   Reveal Animations
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}

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

.reveal-line {
  overflow: hidden;
}

.reveal-line span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}

.reveal-line.is-visible span {
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem;
  }

  .exp-item__date {
    padding-top: 0;
  }

  .app-card {
    flex: 0 0 85vw;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .apps-section {
    padding: 5rem 0;
  }

  .hero__bg-text {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
    padding: 0 1.25rem;
  }

  .hero__scroll { display: none; }

  .section {
    padding: 4rem 1.25rem;
  }

  .apps-section {
    padding: 4rem 0;
  }

  .apps-section .section__header {
    padding: 0 1.25rem;
  }

  .apps__track-wrapper {
    padding: 0 1.25rem;
  }

  .apps__nav {
    padding: 0 1.25rem;
  }

  .app-card {
    flex: 0 0 90vw;
    padding: 1.75rem;
  }

  .exp-item {
    padding: 1.5rem;
  }

  .contact {
    padding: 6rem 1.25rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Hide custom cursor on touch */
  .cursor { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

@media (hover: none) {
  .cursor { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* ===========================
   Reduced Motion
   =========================== */

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

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

  .reveal-line span {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
