/* =================================================================
   Nouveau Riche Software Holdings — site styles
   Design system: HyperGrade mockup language
   - dark base, cyan/magenta/gold gradient strokes
   - 11pt heavy tracking on section labels (Inter)
   - 22pt+ black on wordmark/headings (Space Grotesk)
   - 9-10pt regular on footnotes
   ================================================================= */

:root {
  --bg:           #06070a;
  --bg-2:         #0a0c12;
  --bg-3:         #0f1219;
  --ink:          #f3f5fa;
  --ink-2:        #c2c8d6;
  --ink-3:        #8089a0;
  --line:         #1b1f2a;
  --line-2:       #2a2f3d;
  --cyan:         #33e1ff;
  --magenta:      #a04bff;
  --gold:         #ffb000;
  --coral:        #ff6b6b;
  --grad:         linear-gradient(135deg, #33e1ff 0%, #7a5cff 50%, #ffb000 100%);
  --grad-soft:    linear-gradient(135deg, rgba(51,225,255,.12), rgba(160,75,255,.12), rgba(255,176,0,.12));
  --grad-stroke:  linear-gradient(135deg, #33e1ff, #7a5cff 50%, #ffb000);
  --shadow-1:     0 1px 0 rgba(255,255,255,.04) inset, 0 12px 40px rgba(0,0,0,.45);
  --radius:       18px;
  --radius-sm:    10px;
  --maxw:         1200px;
  --pad:          clamp(20px, 4vw, 40px);
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============== TOPBAR ============== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,7,10,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #0a0c12;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand-sub {
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--ink-3);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #06070a;
}
.nav-links .cta:hover { color: #06070a; transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-links a:not(.cta) { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 130px) 0 clamp(40px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.bg-aurora {
  position: absolute; inset: -10% -10% auto -10%;
  height: 80%;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 25%, rgba(51,225,255,.18), transparent 60%),
    radial-gradient(50% 40% at 85% 15%, rgba(160,75,255,.22), transparent 60%),
    radial-gradient(40% 30% at 65% 80%, rgba(255,176,0,.14), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
}
.bg-grid {
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 26px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  font-size: 11px; font-weight: 800; letter-spacing: .22em; color: var(--ink-2);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(51,225,255,.18);
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.hero-cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn.primary {
  background: var(--ink);
  color: #06070a;
  box-shadow: 0 10px 30px rgba(51,225,255,.12);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(51,225,255,.22); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn.ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }

.stat-strip {
  margin-top: clamp(50px, 8vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.stat {
  padding: 22px 22px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.stat:last-child { border-right: 0; }
.stat-n {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.stat-l {
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; color: var(--ink-3);
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .26em; color: var(--ink-3);
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--ink-3), transparent);
}
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ============== SECTION HEAD ============== */
.section-head { margin: 0 0 50px; }
.kicker {
  margin: 0 0 14px;
  font-size: 11px; font-weight: 800; letter-spacing: .26em; color: var(--ink-3);
  text-transform: uppercase;
}
.kicker.center { text-align: center; }
.h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.sub {
  max-width: 640px;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
}

/* ============== APPS ============== */
.apps { padding: clamp(70px, 9vw, 120px) 0; }
.grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-stroke);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .25;
  pointer-events: none;
  transition: opacity .2s ease;
}
.card:hover::before { opacity: .55; }

.card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 26px 0;
}
.card-id { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  background: rgba(255,255,255,.02);
}
.tag--live {
  border-color: rgba(51,225,255,.5);
  color: var(--cyan);
  background: rgba(51,225,255,.08);
}
.tag--live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(51,225,255,.2);
}
.tag--dev {
  border-color: rgba(255,176,0,.5);
  color: var(--gold);
  background: rgba(255,176,0,.08);
}
.tag--beta {
  border-color: rgba(255,176,0,.5);
  color: var(--gold);
  background: rgba(255,176,0,.08);
}
.tag--ios { color: var(--ink-3); }

.card-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #0a0c12;
  display: inline-flex; align-items: center; justify-content: center;
}

.card-hero {
  padding: 18px 26px 0;
}

/* ----- phone (HyperGrade) ----- */
.phone {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0c0e15, #0a0c12);
  border: 1px solid var(--line-2);
  padding: 18px 14px 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.phone-bar {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  padding: 0 4px 12px;
}
.phone-bars { display: inline-flex; gap: 3px; align-items: end; }
.phone-bars i { width: 3px; background: var(--ink-2); display: block; }
.phone-bars i:nth-child(1) { height: 5px; }
.phone-bars i:nth-child(2) { height: 8px; }
.phone-bars i:nth-child(3) { height: 11px; }
.phone-hg-mark {
  position: absolute; top: 14px; right: 14px; opacity: .95;
}
.phone-hint {
  margin: 0 0 8px;
  text-align: center;
  font-size: 9.5px; font-weight: 800; letter-spacing: .22em; color: var(--cyan);
}
.frame {
  position: relative;
  border: 1px solid rgba(51,225,255,.25);
  border-radius: 18px;
  padding: 14px;
  background: #06070a;
}
.corner {
  position: absolute; width: 14px; height: 14px;
  border-color: var(--cyan); border-style: solid; border-width: 0;
}
.corner.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 14px; }
.corner.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 14px; }
.corner.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 14px; }
.corner.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 14px; }

.card-art {
  position: relative;
  height: 220px;
  border-radius: 12px;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(51,225,255,.55), transparent 55%),
    radial-gradient(120% 80% at 80% 30%, rgba(160,75,255,.6), transparent 55%),
    radial-gradient(120% 80% at 50% 90%, rgba(255,176,0,.4), transparent 60%),
    linear-gradient(180deg, #16112b, #0a0617);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.art-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-30%);
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0% { transform: translateX(-30%); }
  60%, 100% { transform: translateX(120%); }
}
.art-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px; letter-spacing: .12em;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  position: relative; z-index: 1;
}
.art-sub {
  font-size: 8.5px; font-weight: 800; letter-spacing: .22em;
  opacity: .9;
  position: relative; z-index: 1;
}

.card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; margin-top: 12px;
}
.cs {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 4px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.cs-l {
  font-size: 8px; font-weight: 800; letter-spacing: .2em; color: var(--ink-3);
}
.cs-v {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink);
}

.scan-pill {
  margin-top: 12px;
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px;
  border: 0; border-radius: 12px;
  background: var(--grad);
  color: #06070a;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(51,225,255,.18);
}

.tabs {
  margin-top: 12px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
}
.tabs .t { text-align: center; padding: 4px 0; }
.tabs .t.active { color: var(--cyan); }

/* ----- BillRoulette roulette ----- */
.br-roulette {
  display: flex; align-items: center; justify-content: center;
  padding: 26px 0;
}
.br-ring {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      #1a1d27, #2a1f3a, #1a1d27, #1a2a30, #2a1f3a, #1a1d27, #1a2a30, #2a1f3a, #1a1d27);
  border: 2px solid rgba(51,225,255,.35);
  box-shadow:
    inset 0 0 30px rgba(51,225,255,.18),
    0 0 50px rgba(160,75,255,.25);
  animation: spin 12s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.br-pocket {
  position: absolute;
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  margin: -14px;
  border-radius: 50%;
  background: #0a0c12;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 12px; font-weight: 800;
  transform: rotate(calc(var(--i) * 45deg)) translateY(-86px) rotate(calc(var(--i) * -45deg));
  font-family: var(--font-display);
}
.br-ball {
  position: absolute;
  top: 12px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}
.br-center {
  position: absolute; inset: 22%;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 20px rgba(0,0,0,.5);
}

/* ----- card body ----- */
.card-body {
  padding: 22px 26px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.h3 {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.card-tag {
  margin: 0 0 12px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; color: var(--cyan);
  text-transform: uppercase;
}
.card--br .card-tag { color: var(--gold); }
.card-desc {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
}
.bullets {
  margin: 0 0 18px;
  padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.bullets li {
  position: relative; padding-left: 18px;
  color: var(--ink-2); font-size: 14px;
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
}
.muted { color: var(--ink-3); }
.small { font-size: 13px; }

.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px;
  background: #000;
  border: 1px solid #2a2f3d;
  border-radius: 12px;
  color: #fff;
  transition: transform .15s ease, border-color .15s ease;
}
.store-btn:hover { transform: translateY(-1px); border-color: #fff; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn small { font-size: 9px; font-weight: 500; opacity: .8; }
.store-btn strong { font-size: 16px; font-weight: 700; letter-spacing: -.005em; }

/* ============== ABOUT ============== */
.about {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
.prose {
  margin: 0 0 16px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}
.about-meta {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-meta > div {
  background: var(--bg-2);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.about-meta .lbl {
  font-size: 9.5px; font-weight: 800; letter-spacing: .2em; color: var(--ink-3);
  text-transform: uppercase;
}
.about-meta .val {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--ink);
}

.about-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
}
.principles {
  list-style: none; margin: 12px 0 0; padding: 0;
  counter-reset: p;
}
.principles li {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
.principles li:last-child { border-bottom: 0; }
.principles li span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  font-size: 14px;
  min-width: 28px;
}

/* ============== CONTACT ============== */
.contact {
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
}
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-inner .sub { text-align: center; margin-bottom: 36px; }
.contact-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}
.contact-grid .contact-pill { width: 100%; align-items: center; text-align: center; }
.contact-pill {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.contact-pill:hover {
  transform: translateY(-2px);
  border-color: var(--ink-3);
  background: var(--bg-3);
}
.cp-l {
  font-size: 9.5px; font-weight: 800; letter-spacing: .22em; color: var(--ink-3);
  text-transform: uppercase;
}
.cp-v {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--ink);
}

/* ============== FOOTER ============== */
.foot {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.foot-brand { display: flex; flex-direction: column; gap: 2px; }
.foot-name { color: var(--ink); font-weight: 600; font-size: 14px; }
.foot-sub { color: var(--ink-3); font-size: 12px; }
.foot-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-nav a {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.foot-nav a:hover { color: var(--ink); }

/* ============== REVEAL-ON-SCROLL ==============
   The .reveal class is added by script.js. The .reveal-in class
   is added by the IntersectionObserver when the element enters
   the viewport. We do NOT hide elements by default — the resting
   state is visible. This keeps the site readable with JS off,
   friendly to crawlers, and friendly to screenshot tools. */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.reveal:not(.reveal-in) { opacity: 0; transform: translateY(14px); }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

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