/* ============================================================
   MUDASSIR SIDDIQUI — PORTFOLIO
   Art direction: cinematic black, condensed display type (Anton),
   mono labels, film grain, editorial rows. Accent per page:
   neutral white (home), crimson (Esportra), yellow (SystemOptix).
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg2: #0e0e10;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #ececee;
  --muted: #85858e;
  --red: #ff3b5c;
  --yellow: #ffd94d;
  --accent: #ececee;
  --accent-ink: #0a0a0b;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

body.theme-esportra { --accent: var(--red); }
body.theme-optix { --accent: var(--yellow); }

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1280px, calc(100vw - clamp(2rem, 6vw, 6rem))); margin: 0 auto; }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* ---------- scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 300;
}

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  text-stroke: 1.5px var(--text);
}

.mono {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-logo { font-weight: 600; white-space: nowrap; }
.nav-logo .accent { color: var(--accent); }

.nav-links { display: flex; gap: 2.2rem; }

.nav-links a {
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a::before {
  content: "[ ";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: " ]";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::before, .nav-links a.active::after,
.nav-links a:hover::before, .nav-links a:hover::after { opacity: 1; color: var(--accent); }

.nav-status { color: var(--muted); display: flex; align-items: center; gap: 0.55rem; }

.nav-status .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  50% { opacity: 0.55; box-shadow: 0 0 0 7px transparent; }
}

/* ---------- hero (home) ---------- */
.hero {
  min-height: min(100vh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: end;
}

.hero-name {
  font-size: clamp(3.4rem, 11.5vw, 10.5rem);
  margin-bottom: 2rem;
}

.hero-name .row2 { display: block; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--accent); }

.hero-copy {
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 2.6rem;
}

.hero-copy strong { color: var(--text); font-weight: 600; }

.hero-portrait { position: relative; }

.hero-portrait img {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  filter: contrast(1.02);
}

.hero-portrait .caption {
  position: absolute;
  left: 0;
  bottom: 1.6rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 2;
}

.hero-portrait .caption b { color: var(--text); font-weight: 500; }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 0.95rem 0;
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: tick 28s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker span {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}

.ticker span i { color: var(--accent); font-style: normal; margin-right: 2.6rem; }

@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.sec-idx {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  flex-shrink: 0;
}

.sec-title { font-size: clamp(2rem, 5.5vw, 4.2rem); }

.sec-note {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  display: none;
}

@media (min-width: 720px) { .sec-note { display: block; } }

/* ---------- editorial 2-col ---------- */
.edit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.edit-grid .lede {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  font-weight: 500;
}

.edit-grid .lede em {
  font-style: normal;
  color: var(--accent);
}

.edit-side { color: var(--muted); font-size: 0.98rem; display: grid; gap: 1.2rem; }

/* ---------- stat rows ---------- */
.stat-rows { border-top: 1px solid var(--line); margin-top: 3rem; }

.stat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.stat-row .k {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-row .v {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

/* ---------- big stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip > div {
  padding: 2.6rem 1.6rem;
  border-right: 1px solid var(--line);
}

.stat-strip > div:last-child { border-right: none; }

.stat-strip .value {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1;
  color: var(--accent);
}

.stat-strip .label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}

/* ---------- venture rows (home) ---------- */
.rows { border-top: 1px solid var(--line); }

.vrow {
  display: block;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.vrow-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.5s ease, transform 1.2s ease;
  z-index: 0;
}

.vrow:hover .vrow-bg { opacity: 0.3; transform: scale(1); }

.vrow-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem) 0;
  transition: transform 0.35s ease;
}

.vrow:hover .vrow-inner { transform: translateX(clamp(0.6rem, 2vw, 1.6rem)); }

.vrow .idx {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.vrow .title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  text-transform: uppercase;
  line-height: 0.95;
  transition: color 0.3s ease;
}

.vrow .meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.8rem;
}

.vrow .arrow {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--muted);
  transition: color 0.3s ease, transform 0.35s ease;
}

.vrow:hover .arrow { transform: translateX(8px) rotate(-45deg); }
.vrow-red:hover .title, .vrow-red:hover .arrow { color: var(--red); }
.vrow-yellow:hover .title, .vrow-yellow:hover .arrow { color: var(--yellow); }

/* ---------- feature rows (numbered) ---------- */
.frow {
  display: grid;
  grid-template-columns: clamp(3rem, 8vw, 6rem) 1fr 1.2fr;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease;
}

.frow:hover { background: linear-gradient(90deg, var(--bg2), transparent); }

.frow .n {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding-top: 0.5rem;
}

.frow h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1;
}

.frow p { color: var(--muted); font-size: 0.97rem; }

/* ---------- media split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split .img-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 0.8rem;
}

.split .img-frame img { width: 100%; }

.split .img-frame .tag {
  position: absolute;
  top: -0.7rem;
  left: 1.4rem;
  background: var(--bg);
  padding: 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.split h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.split p { color: var(--muted); margin-bottom: 1.2rem; }

.split ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.split ul li {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}

.split ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---------- full-bleed image strip ---------- */
.strip {
  position: relative;
  height: clamp(300px, 52vw, 520px);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.strip img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 35%;
}

.strip .strip-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 5.5rem);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  white-space: nowrap;
}

/* ---------- roadmap ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.phase {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 1.5rem 2.2rem;
  transition: background 0.3s ease;
}

.phase:hover { background: var(--bg2); }

.phase .p-n {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 2.6rem;
}

.phase h4 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.05;
}

.phase p { color: var(--muted); font-size: 0.88rem; }

/* ---------- banner ---------- */
.mega {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 0.98;
}

.mega .hl { color: var(--accent); }

.mega-sub {
  color: var(--muted);
  max-width: 40rem;
  margin-top: 1.8rem;
  font-size: 1.02rem;
}

/* ---------- callout ---------- */
.approve {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  border: 1px solid var(--accent);
  padding: 1.8rem 2rem;
  position: relative;
}

.approve::before {
  content: "OFFICIAL";
  position: absolute;
  top: -0.7rem;
  left: 1.4rem;
  background: var(--bg);
  padding: 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.approve .mark-riot {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.approve p { color: var(--muted); font-size: 0.98rem; }
.approve p b { color: var(--text); }

/* ---------- terminal ---------- */
.term {
  background: #0c0c0e;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.term-bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.term-bar i:first-child { background: var(--accent); }

.term-bar .term-title {
  margin-left: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.term-body {
  padding: 1.4rem 1.2rem;
  min-height: 250px;
  color: var(--muted);
  white-space: pre-wrap;
  line-height: 1.9;
}

.term-body .ok { color: var(--accent); }
.term-body .caret {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: blink 0.9s steps(1) infinite;
}

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

/* ---------- buttons ---------- */
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  border: 1px solid var(--text);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { background: var(--text); color: var(--bg); }

.btn-accent { border-color: var(--accent); color: var(--accent); }
.btn-accent:hover { background: var(--accent); color: var(--accent-ink); }

/* ---------- page hero (venture pages) ---------- */
.phero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.phero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.phero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.72) 0%, rgba(10,10,11,0.15) 40%, rgba(10,10,11,0.9) 100%);
}

/* the Esportra deck cover has a centered logo — darken harder, especially
   behind the left-aligned headline, so the title doesn't mix with it */
.theme-esportra .phero-shade {
  background:
    radial-gradient(ellipse 26% 38% at 50% 46%, rgba(10,10,11,0.92) 40%, transparent 100%),
    linear-gradient(90deg, rgba(10,10,11,0.88) 0%, rgba(10,10,11,0.6) 52%, rgba(10,10,11,0.25) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.2) 45%, rgba(10,10,11,0.96) 80%, rgba(10,10,11,0.98) 100%);
}

.phero .case-tag { color: var(--accent); margin-bottom: 1.6rem; display: flex; align-items: center; gap: 1rem; }
.phero .case-tag::before { content: ""; width: 44px; height: 1px; background: var(--accent); }

.phero h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  max-width: 18ch;
  margin-bottom: 1.8rem;
}

.phero .phero-sub {
  color: #c9c9cf;
  max-width: 36rem;
  font-size: 1.05rem;
  margin-bottom: 2.4rem;
}

.phero .phero-sub strong { color: #fff; }

.phero-logo { height: clamp(60px, 9vw, 100px); width: auto; margin-bottom: 2rem; }
.phero-logo-wide { height: auto; width: clamp(260px, 36vw, 430px); }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
}

.foot .foot-kicker { color: var(--accent); margin-bottom: 2rem; }

.giant-link {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7.5vw, 7rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease;
  word-break: break-word;
}

.giant-link:hover {
  color: var(--accent);
  -webkit-text-stroke-color: var(--accent);
}

.foot-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* ---------- reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.d-1 { transition-delay: 0.07s; }
.d-2 { transition-delay: 0.14s; }
.d-3 { transition-delay: 0.21s; }
.d-4 { transition-delay: 0.28s; }

/* hero entrance */
.rise { overflow: hidden; }
.rise > * {
  display: block;
  transform: translateY(105%);
  animation: rise-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rise.r2 > * { animation-delay: 0.12s; }
.rise.r3 > * { animation-delay: 0.24s; }

@keyframes rise-up { to { transform: translateY(0); } }

/* ---------- dev: ?noanim ---------- */
.noanim .rise > * { animation: none !important; transform: none !important; }
.noanim .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
.noanim .grain, .noanim .ticker-track { animation: none !important; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 380px; }
  .hero { justify-content: center; padding-top: 7rem; }
  .edit-grid, .split { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 3rem 1fr; }
  .frow p { grid-column: 2; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip > div { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-strip > div:last-child { border-bottom: none; }
  .nav-status { display: none; }
}

@media (max-width: 560px) {
  .phases { grid-template-columns: 1fr; }
  .nav-inner { font-size: 0.62rem; }
  .nav-links { gap: 0.9rem; }
  .nav-links a::before, .nav-links a::after { content: none; }
  .vrow-inner { grid-template-columns: auto 1fr; }
  .vrow .arrow { display: none; }
  .strip .strip-label { white-space: normal; }
}

@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; }
  .rise > * { transform: none; }
  .fade-up { opacity: 1; transform: none; }
}
