/* ============================================================
   Orbuculum — deep-tech observatory theme
   ============================================================ */
@font-face {
  font-family: "Arca Majora 3";
  src: url("../assets/fonts/ArcaMajora3-Bold.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Arca Majora 3";
  src: url("../assets/fonts/ArcaMajora3-Heavy.otf") format("opentype");
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --bg: #06070f;
  --bg-raise: #0b0d1a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text: #eef0ff;
  --text-dim: #9aa0bd;
  --accent: #7c6cff;
  --accent-2: #35d0ff;
  --accent-3: #b96cff;
  --grad: linear-gradient(100deg, var(--accent-2), var(--accent) 45%, var(--accent-3));
  --font-display: "Arca Majora 3", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --radius: 18px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; letter-spacing: 0.01em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- ambient background ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }

.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}

/* static soft gradients only — no blur filter, no animation; these sit in a
   fixed fullscreen layer and any continuous work here taxes the compositor */
.bg-orb {
  position: absolute; border-radius: 50%; opacity: 0.45;
}
.bg-orb--1 {
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  top: -20%; right: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(124,108,255,0.5), rgba(53,208,255,0.14) 45%, transparent 68%);
}
.bg-orb--2 {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  bottom: -18%; left: -10%;
  background: radial-gradient(circle at 60% 40%, rgba(185,108,255,0.35), rgba(124,108,255,0.1) 45%, transparent 68%);
}

/* ---------- nav ---------- */
/* no backdrop-filter — it forces a live blur of everything scrolling under
   the nav and is a known white-screen trigger on macOS GPUs */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(6, 7, 15, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1160px; margin: 0 auto; height: var(--nav-h);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  text-decoration: none; letter-spacing: -0.01em;
}
.nav__wordmark {
  height: 30px; width: auto; display: block;
  filter: drop-shadow(0 0 10px rgba(124,108,255,0.35));
}
.footer__lockup { width: 250px; height: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) {
  text-decoration: none; color: var(--text-dim);
  font-size: 0.95rem; font-weight: 500;
  transition: color .2s ease;
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 28px rgba(124,108,255,0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(124,108,255,0.55); }
.btn--ghost {
  border-color: var(--surface-border); color: var(--text);
  background: var(--surface);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--sm { padding: 9px 20px; font-size: 0.9rem; }
.btn--lg { padding: 18px 40px; font-size: 1.15rem; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: grid; align-content: center;
  position: relative;
  padding: calc(var(--nav-h) + 48px) 24px 96px;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -2;
}

.hero__grid {
  max-width: 1160px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__inner { max-width: 1160px; width: 100%; margin: 0 auto; }

.hero__visual {
  aspect-ratio: 1; max-height: 560px; align-self: center;
  display: grid; place-items: center;
}

/* CSS-only living orb — phones/tablets, and any machine where WebGL bowed
   out. Only transform/opacity animate, so it stays on the compositor. */
.orb-css {
  position: relative;
  width: min(100%, 300px); aspect-ratio: 1;
  display: none;
  border-radius: 50%;
  border: 1px solid rgba(159, 216, 255, 0.3);
  box-shadow:
    0 0 70px rgba(124, 108, 255, 0.35),
    0 0 24px rgba(53, 208, 255, 0.2),
    inset 0 0 46px rgba(53, 208, 255, 0.12);
  overflow: hidden;
  animation: breathe 7s ease-in-out infinite;
}
.orb-css__nebula {
  position: absolute; inset: 4%;
  width: 92%; height: 92%;
  animation: orb-spin 70s linear infinite;
}
.orb-css__spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(159, 216, 255, 0.8);
  animation: twinkle 3.2s ease-in-out infinite;
}
.orb-css__spark--1 { top: 28%; left: 34%; }
.orb-css__spark--2 { top: 58%; left: 66%; animation-delay: -1.1s; }
.orb-css__spark--3 { top: 42%; left: 55%; animation-delay: -2.2s; }

@keyframes orb-spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%, 100% { opacity: 0.15; } 50% { opacity: 1; } }

/* WebGL retired itself (or never started) — the CSS orb steps in */
.no-hero3d .orb-css { display: block; }
.no-hero3d .hero__canvas { display: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(53,208,255,0.25);
  background: rgba(53,208,255,0.06);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 26px;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-dim);
  max-width: 560px; margin: 0 0 40px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border); border-radius: var(--radius);
  overflow: hidden; margin: 72px auto 0; max-width: 960px;
}
.hero__stats > div {
  background: rgba(11,13,26,0.75); padding: 22px 24px; text-align: left;
}
.hero__stats dt {
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  margin-bottom: 4px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stats dd { color: var(--text-dim); font-size: 0.9rem; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; translate: -50% 0;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; translate: -50% 0;
  width: 4px; height: 8px; border-radius: 4px; background: var(--accent-2);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--surface-border);
  background: rgba(255,255,255,0.02);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: 0.5rem; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 110px 24px; position: relative; }
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(124,108,255,0.045) 18% 82%, transparent);
}
.section__inner { max-width: 1160px; margin: 0 auto; }
.section__title {
  font-size: clamp(1.45rem, 3.3vw, 2.4rem);
  font-weight: 800; margin: 18px 0 18px;
}
.section__lead { color: var(--text-dim); max-width: 620px; font-size: 1.1rem; margin-bottom: 56px; }

.section-placeholder { min-height: 340px; display: grid; place-items: center; }
.loader {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(124,108,255,0.2); border-top-color: var(--accent);
  animation: spin-loader 0.9s linear infinite;
}
@keyframes spin-loader { to { transform: rotate(360deg); } }

/* ---------- capability cards ---------- */
.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  padding: 30px 28px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%),
    rgba(124,108,255,0.16), transparent 60%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(124,108,255,0.45); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(53,208,255,0.12), rgba(124,108,255,0.14));
  border: 1px solid rgba(124,108,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 24px rgba(124,108,255,0.35);
}
.card h3 { font-size: 1.08rem; letter-spacing: 0.02em; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- domains ---------- */
.domains {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.domain {
  display: grid; grid-template-columns: auto 1fr; column-gap: 20px;
  padding: 26px 26px 26px 22px;
  border-left: 2px solid rgba(124,108,255,0.35);
  border-radius: 4px var(--radius) var(--radius) 4px;
  background: rgba(255,255,255,0.025);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.domain:hover { background: rgba(124,108,255,0.07); border-left-color: var(--accent-2); transform: translateX(6px); }
.domain__num {
  grid-row: 1 / 3;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--accent-2); opacity: 0.85; padding-top: 4px;
}
.domain h3 { font-size: 1.02rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.domain p { color: var(--text-dim); font-size: 0.95rem; grid-column: 2; }

.clients {
  margin-top: 56px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.clients__label {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.clients ul { display: flex; gap: 12px; flex-wrap: wrap; list-style: none; }
.clients li {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--surface-border); background: var(--surface);
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
}

/* ---------- approach steps ---------- */
.steps { list-style: none; display: grid; gap: 14px; max-width: 780px; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--surface-border); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: rgba(53,208,255,0.4); transform: translateX(8px); }
.step__num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 18px rgba(124,108,255,0.45);
}
.step h3 { font-size: 1.02rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- manifesto ---------- */
.manifesto {
  margin-top: 90px; text-align: center;
  padding: clamp(44px, 7vw, 72px) clamp(24px, 5vw, 64px);
  border: 1px solid rgba(124,108,255,0.28);
  border-radius: 28px; position: relative; overflow: hidden;
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(124,108,255,0.14), transparent 70%),
    rgba(255,255,255,0.02);
}
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/aurora.png") center / cover no-repeat;
  opacity: 0.5; pointer-events: none;
}
.manifesto > * { position: relative; }
.manifesto__quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2.7vw, 1.75rem); line-height: 1.5;
  letter-spacing: 0.015em;
  max-width: 820px; margin: 22px auto 48px;
}
.manifesto__pillars {
  list-style: none; display: grid; gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface-border);
  border: 1px solid var(--surface-border); border-radius: var(--radius);
  overflow: hidden; text-align: left;
}
.manifesto__pillars li { background: rgba(11,13,26,0.8); padding: 26px 26px; }
.manifesto__pillars h3 {
  font-size: 0.98rem; letter-spacing: 0.02em; margin-bottom: 8px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.manifesto__pillars p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- team ---------- */
.team { display: grid; gap: 22px; grid-template-columns: 1.2fr 1fr; align-items: stretch; }
.team__lead {
  display: flex; gap: 26px; align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--surface-border); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(124,108,255,0.1), rgba(255,255,255,0.02));
}
.team__avatar {
  flex: 0 0 auto; width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 28px rgba(124,108,255,0.5);
}
.team__lead h3 { font-size: 1.22rem; letter-spacing: 0.02em; }
.team__role { color: var(--accent-2); font-weight: 500; font-size: 0.95rem; margin: 4px 0 12px; }
.team__lead p:last-child { color: var(--text-dim); font-size: 0.98rem; }

.team__network {
  padding: 34px;
  border: 1px solid var(--surface-border); border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
}
.team__network h3 { font-size: 1.02rem; letter-spacing: 0.02em; margin-bottom: 12px; }
.team__network p { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 20px; }
.team__tags { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.team__tags li {
  padding: 7px 16px; border-radius: 999px; font-size: 0.85rem;
  border: 1px solid rgba(53,208,255,0.3); color: var(--accent-2);
  background: rgba(53,208,255,0.06);
  font-family: var(--font-display); font-weight: 500;
}

/* ---------- contact ---------- */
.section--contact { padding-bottom: 140px; }
.contact {
  position: relative; text-align: center;
  padding: clamp(48px, 8vw, 90px) 32px;
  border: 1px solid rgba(124,108,255,0.35);
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(180deg, #fdfdff, #eef0ff);
  box-shadow: 0 30px 90px rgba(124,108,255,0.18);
}
.contact__orb {
  position: absolute; left: 50%; top: -170px; translate: -50% 0;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 50% 65%, rgba(53,208,255,0.28), rgba(124,108,255,0.16) 55%, transparent 75%);
  filter: blur(40px); pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
.contact__lockup {
  width: min(400px, 82%); height: auto;
  display: block; margin: 0 auto 30px; position: relative;
  mix-blend-mode: multiply; /* dissolves the jpg's white ground into the card */
}
.contact .eyebrow {
  color: #2531e0; border-color: rgba(37, 49, 224, 0.3); background: rgba(37, 49, 224, 0.06);
}
.contact .section__title { color: #0a0d2e; }
.contact .section__lead { margin: 0 auto 40px; color: #4a4f6e; }
.contact__note { margin-top: 22px; color: #6a6f8e; font-size: 0.9rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--surface-border); padding: 56px 24px; }
.footer__inner { max-width: 1160px; margin: 0 auto; display: grid; gap: 10px; justify-items: start; }
.footer p { color: var(--text-dim); font-size: 0.95rem; }
.footer a { color: var(--accent-2); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__fine { font-size: 0.82rem; opacity: 0.7; margin-top: 12px; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease var(--d, 0s), transform .7s cubic-bezier(.2,.7,.2,1) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* htmx swap-in */
.htmx-added .reveal { opacity: 0; }
.htmx-settling .reveal { opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .team { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { display: grid; justify-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; width: min(58vw, 250px); margin-inline: auto; max-height: 250px; }
  .hero__canvas { display: none; }
  .orb-css { display: block; }
  .hero__stats { grid-template-columns: 1fr; max-width: 480px; }
  .manifesto__pillars { grid-template-columns: 1fr; }
  .nav__wordmark { height: 25px; }
  .footer__lockup { width: 210px; }
  .hero__stats > div { text-align: center; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6,7,15,0.97);
    border-bottom: 1px solid var(--surface-border);
    padding: 12px 24px 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links .btn { margin-top: 16px; justify-content: center; }

  .section { padding: 80px 20px; }
  .hero { padding-bottom: 72px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .team__lead { flex-direction: column; }
  .step { gap: 16px; padding: 22px; }
  .domain { grid-template-columns: 1fr; }
  .domain__num { grid-row: auto; margin-bottom: 6px; }
  .domain p { grid-column: 1; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
