:root {
  color-scheme: dark;
  --bg: #050816;
  --bg-alt: #091126;
  --panel: rgba(11, 18, 36, 0.68);
  --panel-strong: rgba(12, 20, 41, 0.9);
  --line: rgba(129, 196, 255, 0.12);
  --text: #e8f3ff;
  --muted: #95a9c7;
  --cyan: #50e3ff;
  --cyan-soft: rgba(80, 227, 255, 0.16);
  --purple: #9b7bff;
  --purple-soft: rgba(155, 123, 255, 0.18);
  --accent-gradient: linear-gradient(135deg, #42e6ff 0%, #4a8fff 44%, #8c67ff 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(66, 230, 255, 0.14), rgba(74, 143, 255, 0.12), rgba(140, 103, 255, 0.14));
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(80, 227, 255, 0.1), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(155, 123, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 72%, rgba(74, 143, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #04050d 0%, #050816 42%, #060a18 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.bg-grid,
.glow,
.orb {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(130, 200, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(130, 200, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
  opacity: 0.34;
}

.glow,
.orb {
  z-index: -3;
  filter: blur(10px);
}

.glow-cyan {
  background: radial-gradient(circle, rgba(80, 227, 255, 0.15), transparent 38%);
  top: 4rem;
  left: -9rem;
  width: 36rem;
  height: 36rem;
}

.glow-purple {
  background: radial-gradient(circle, rgba(155, 123, 255, 0.14), transparent 42%);
  top: 18rem;
  right: -10rem;
  width: 40rem;
  height: 40rem;
}

.orb {
  border-radius: 999px;
  opacity: 0.72;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-one {
  top: 12rem;
  right: 18%;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(80, 227, 255, 0.12) 38%, transparent 70%);
}

.orb-two {
  top: 44rem;
  left: 12%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(155, 123, 255, 0.12) 38%, transparent 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.topbar,
.section,
.footer {
  width: min(var(--max), calc(100% - 1.4rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 0.9rem;
  padding: 0.78rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border: 1px solid rgba(145, 205, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(14, 20, 40, 0.8), rgba(8, 12, 24, 0.7));
  backdrop-filter: blur(20px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.topbar:hover,
.topbar:focus-within {
  border-color: rgba(80, 227, 255, 0.2);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(80, 227, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(66, 230, 255, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(145, 205, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(66, 230, 255, 0.12);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong,
.section-heading h2,
.hero-copy h1,
.join-card h2,
.footer strong,
.project-tag,
.founder-name {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.53rem 0.78rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  bottom: 0.34rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66, 230, 255, 0), rgba(66, 230, 255, 0.92), rgba(140, 103, 255, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: linear-gradient(135deg, rgba(66, 230, 255, 0.11), rgba(140, 103, 255, 0.09));
  box-shadow:
    0 0 0 1px rgba(80, 227, 255, 0.1) inset,
    0 8px 18px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  padding: clamp(2.4rem, 4vw, 3.8rem) 0;
}

.hero {
  min-height: min(74vh, 45rem);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  padding-top: clamp(2rem, 4.5vw, 3.8rem);
  padding-bottom: clamp(1.2rem, 2.8vw, 2.2rem);
}

.hero-copy {
  max-width: 38rem;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-brandmark {
  position: relative;
  width: 4.35rem;
  height: 4.35rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 1.12rem;
  background:
    radial-gradient(circle at 30% 18%, rgba(66, 230, 255, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(145, 205, 255, 0.14);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.26),
    0 0 30px rgba(80, 227, 255, 0.12),
    0 0 52px rgba(155, 123, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.hero-brandmark::before {
  content: "";
  position: absolute;
  inset: -28%;
  background: radial-gradient(circle, rgba(80, 227, 255, 0.2), transparent 56%);
  filter: blur(18px);
  opacity: 0.75;
  z-index: -1;
  animation: pulse 4.2s ease-in-out infinite;
}

.hero-brandmark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}

.hero-kicker {
  display: grid;
  gap: 0.18rem;
}

.hero-kicker p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.1rem 0 1rem;
  font-size: clamp(2.7rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 7.4ch;
}

.lede,
.section-copy,
.founder-card p,
.join-card p,
.project-card p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.68;
}

.hero-copy .lede {
  max-width: 44ch;
  margin-bottom: 1.45rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.83rem 1.16rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  color: #07111c;
  background: var(--accent-gradient);
  box-shadow:
    0 12px 28px rgba(80, 227, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 18px 36px rgba(155, 123, 255, 0.16),
    0 0 34px rgba(66, 230, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(145, 205, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(80, 227, 255, 0.28);
  background: var(--accent-gradient-soft);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.18),
    0 0 24px rgba(80, 227, 255, 0.08);
}

.btn-inline {
  width: fit-content;
  margin-top: auto;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points span,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 205, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #d8e8ff;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.glass-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02) 34%),
    rgba(10, 16, 32, 0.68);
  border: 1px solid rgba(145, 205, 255, 0.1);
  border-radius: var(--radius);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(80, 227, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(155, 123, 255, 0.12), transparent 34%);
  opacity: 0.22;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover,
.project-card:hover,
.info-card:hover,
.benefit-card:hover,
.founder-card:hover,
.join-card:hover {
  border-color: rgba(80, 227, 255, 0.2);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(80, 227, 255, 0.06),
    0 0 0 1px rgba(80, 227, 255, 0.05);
  transform: translateY(-3px);
}

.glass-card:hover::before {
  opacity: 0.4;
}

.hero-visual-panel {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.hero-visual-panel::before {
  opacity: 0.28;
}

.hero-visual-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding: 0.15rem 0.2rem 0;
}

.hero-visual-topline span {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-topline strong {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blueprint {
  position: relative;
  min-height: 26rem;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(80, 227, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(80, 227, 255, 0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(155, 123, 255, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(4, 8, 18, 0.96), rgba(9, 14, 28, 0.92));
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(110, 200, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(110, 200, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.3;
}

.scan-line {
  position: absolute;
  inset-inline: 0;
  top: -18%;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(80, 227, 255, 0.12), transparent);
  animation: scan 5.8s linear infinite;
}

.wireframe {
  position: absolute;
  border: 1px solid rgba(80, 227, 255, 0.38);
  border-radius: 0.95rem;
  box-shadow:
    0 0 0 1px rgba(155, 123, 255, 0.12),
    0 0 20px rgba(80, 227, 255, 0.1);
}

.wireframe-a {
  width: 46%;
  height: 28%;
  left: 10%;
  top: 16%;
  transform: rotate(-7deg);
}

.wireframe-b {
  width: 34%;
  height: 22%;
  right: 10%;
  top: 26%;
  transform: rotate(8deg);
}

.wireframe-c {
  width: 56%;
  height: 29%;
  left: 19%;
  bottom: 12%;
  transform: rotate(4deg);
}

.nodes span {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #9fefff;
  box-shadow: 0 0 20px rgba(80, 227, 255, 0.75);
  animation: pulse 2.8s ease-in-out infinite;
}

.nodes span:nth-child(1) {
  top: 18%;
  left: 14%;
}

.nodes span:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.35s;
}

.nodes span:nth-child(3) {
  bottom: 24%;
  left: 30%;
  animation-delay: 0.7s;
}

.nodes span:nth-child(4) {
  bottom: 16%;
  right: 16%;
  animation-delay: 1s;
}

.visual-caption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0 0.15rem 0.05rem;
}

.section-heading {
  margin-bottom: 0.95rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.65rem, 2.8vw, 2.28rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.section-heading .eyebrow::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66, 230, 255, 0.85), rgba(140, 103, 255, 0.85));
}

.section-copy {
  max-width: 62ch;
  margin: 0;
}

.chip-grid,
.project-grid,
.info-grid,
.benefit-grid {
  display: grid;
  gap: 0.85rem;
}

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

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

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

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

.project-card,
.info-card,
.benefit-card,
.founder-card,
.join-card {
  padding: 1rem;
}

.project-card {
  min-height: 16.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
}

.project-topline {
  display: grid;
  gap: 0.3rem;
}

.project-tag {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.project-subtitle {
  color: var(--cyan);
  font-size: 0.9rem;
}

.info-grid .info-card {
  display: grid;
  gap: 0.3rem;
}

.info-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  min-height: 5.7rem;
  color: #dce9ff;
  font-weight: 600;
}

.founder-card {
  max-width: 68rem;
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 1.05rem;
  align-items: center;
}

.founder-portrait {
  position: relative;
  aspect-ratio: 1 / 1.12;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(145, 205, 255, 0.14);
  background:
    radial-gradient(circle at 30% 20%, rgba(80, 227, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.3);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-copy {
  display: grid;
  gap: 0.72rem;
}

.founder-name {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.28rem, 1.9vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.join-section {
  padding-bottom: 3.4rem;
}

.join-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
}

.join-card h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.join-card p {
  max-width: 58ch;
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 1.75rem;
  border-top: 1px solid rgba(145, 205, 255, 0.1);
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 0.2rem;
}

.footer strong {
  color: var(--text);
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.glass-card,
.chip,
.btn,
.nav a {
  will-change: transform;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -24px, 0) scale(1.05);
  }
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(460%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .join-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .chip-grid,
  .project-grid,
  .info-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 1.35rem;
    padding: 0.8rem 0.86rem;
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.05rem;
    gap: 0.26rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .nav a {
    flex: 0 0 auto;
    font-size: 0.82rem;
    padding: 0.48rem 0.7rem;
  }

  .hero {
    gap: 1.25rem;
    padding-top: 1.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    max-width: 10ch;
  }

  .hero-brandline {
    gap: 0.8rem;
  }

  .hero-brandmark {
    width: 3.9rem;
    height: 3.9rem;
  }

  .blueprint {
    min-height: 20.5rem;
  }

  .chip-grid,
  .project-grid,
  .info-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .join-card {
    gap: 1rem;
  }

  .project-card,
  .info-card,
  .benefit-card,
  .founder-card,
  .join-card {
    padding: 1rem;
  }

  .footer {
    flex-direction: column;
  }
}

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