/* =========================================================
   Kurb — landing page styles
   Premium, brutally honest fitness-app feel.
   Mobile-first.
   ========================================================= */

:root {
  --bg: #FAFAFA;
  --bg-tint: #F2EFEA;
  --bg-dark: #0E0D0C;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --line: #E7E3DC;
  --line-2: #D9D4CB;
  --card: #FFFFFF;
  --orange: #F4591F;
  --orange-deep: #D9430E;
  --orange-soft: #FCE5DA;
  --green: #22A06B;
  --yellow: #E6B800;
  --red: #D9430E;
  --night: #1B1B1B;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,.04), 0 2px 8px rgba(10,10,10,.04);
  --shadow-md: 0 4px 12px rgba(10,10,10,.06), 0 24px 48px -16px rgba(10,10,10,.12);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --max: 1180px;
}

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

::selection { background: var(--orange); color: white; }

/* =========================================================
   Layout primitives
   ========================================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.ink   { color: var(--orange); }

.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--bg-dark); color: #F2EFEA; }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--light { color: #F2EFEA; }
.section__sub { color: var(--muted); font-size: 18px; margin-top: 16px; }
.section--dark .section__sub { color: #B5B0A6; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--orange); }

/* Type scale */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.h2--light { color: #F2EFEA; }
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.center .lede { margin-left: auto; margin-right: auto; }

/* Pills */
.pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  margin-bottom: 24px;
}
.pill--solid { background: var(--ink); color: white; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, border .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--small { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--orange); border-color: var(--orange); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,250,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav__links a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 80px 24px 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,89,31,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__cta.center { justify-content: center; }

.hero__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__proof li {
  display: flex;
  flex-direction: column;
}
.hero__proof strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__proof span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300/620;
  background: #0A0A0A;
  border-radius: 48px;
  padding: 14px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,.06);
  transform: rotate(-3deg);
  z-index: 2;
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FAFAFA 0%, #F2EFEA 100%);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.block-card {
  text-align: center;
  width: 100%;
}
.block-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--orange-soft);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.block-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.block-card__sub {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 4px;
}
.block-card__btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  border: 0;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.block-card__btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--line-2);
}

.hero__sticker {
  position: absolute;
  background: var(--ink);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.hero__sticker--1 {
  top: 18%;
  left: -8%;
  transform: rotate(-8deg);
  background: var(--orange);
}
.hero__sticker--2 {
  bottom: 14%;
  right: -4%;
  transform: rotate(6deg);
}
@media (max-width: 480px) {
  .hero__sticker--1 { left: 2%; }
  .hero__sticker--2 { right: 2%; }
}

/* =========================================================
   PROBLEM — stats
   ========================================================= */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stat-grid { grid-template-columns: 1fr; } }

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.callout {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-align: center;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

/* =========================================================
   HOW IT WORKS — layers
   ========================================================= */
.layer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .layer-grid { grid-template-columns: 1fr; } }

.layer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.layer__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.layer__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.layer__body {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}
.layer__body strong { color: var(--ink); }

.chat { display: flex; flex-direction: column; gap: 10px; }
.chat__bubble {
  background: var(--bg-tint);
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  max-width: 90%;
  line-height: 1.45;
}
.chat__bubble--me {
  align-self: flex-end;
  background: var(--ink);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat__bubble--ai {
  border-bottom-left-radius: 4px;
  position: relative;
}
.chat__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 8px;
  vertical-align: 2px;
}
.chat__tag--deny { background: var(--orange); color: white; }

.earn {
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--bg);
}
.earn__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.earn__row:last-child { border-bottom: 0; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--easy { background: var(--green); }
.dot--med  { background: var(--yellow); }
.dot--hard { background: var(--orange); }
.dot--night{ background: var(--night); }

/* =========================================================
   TIERS
   ========================================================= */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.tier__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.tier__badge--easy { background: rgba(34,160,107,.12); color: var(--green); }
.tier__badge--med  { background: rgba(230,184,0,.16); color: #8C6B00; }
.tier__badge--hard { background: var(--orange-soft); color: var(--orange-deep); }
.tier__badge--night{ background: var(--ink); color: white; }
.tier__icon { font-size: 32px; margin-bottom: 12px; }
.tier__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.tier p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* =========================================================
   MASCOT
   ========================================================= */
.mascot-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 980px) { .mascot-row { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
@media (max-width: 480px) { .mascot-row { grid-template-columns: repeat(2, 1fr); } }

.mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.mascot__art {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: filter .3s ease;
}
.mascot span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
}
.mascot--01 { background: linear-gradient(135deg, #FCE5DA, #FFF); }
.mascot--02 { background: linear-gradient(135deg, #FBE2D2, #FFF); }
.mascot--03 { background: linear-gradient(135deg, #F7DCC8, #FFF); }
.mascot--04 { background: linear-gradient(135deg, #F0D4BD, #FFF); }
.mascot--05 { background: linear-gradient(135deg, #E8C9AE, #FFF); }
.mascot--06 { background: linear-gradient(135deg, #D9B89C, #FFF); }
.mascot--07 { background: linear-gradient(135deg, #B89F87, #FFF); }
.mascot--08 { background: linear-gradient(135deg, #8E7C6A, #DDD); }
.mascot--09 { background: linear-gradient(135deg, #6B5E50, #BBB); filter: saturate(.7); }
.mascot--10 { background: linear-gradient(135deg, #2B2724, #777); filter: saturate(.4); color: #ddd; }

.mascot-axis {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.mascot-axis span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mascot-axis__bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0%, #B89F87 55%, #1B1B1B 100%);
}

/* =========================================================
   SOCIAL PROOF (dark)
   ========================================================= */
.section--dark .stat__num { color: #fff; }
.big-stat {
  text-align: center;
  margin-bottom: 64px;
}
.big-stat__num {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 168px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
}
.big-stat__label {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  color: #B5B0A6;
  letter-spacing: .04em;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

.quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.quote blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #F2EFEA;
}
.quote figcaption {
  font-size: 13px;
  color: #8E8A82;
  letter-spacing: .04em;
}

/* =========================================================
   PRICING
   ========================================================= */
.price-card {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}
@media (max-width: 480px) { .price-card { padding: 28px 24px; } }

.price-card__head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 18px 0 8px;
}
.price-card__amount span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.price-card__per {
  color: var(--muted);
  font-size: 14px;
}
.price-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.price-card__list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--ink-2);
}
.price-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.5l2 2L9 4' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-card__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  border-top: 1px solid var(--line-2);
}
.faq__item {
  border-bottom: 1px solid var(--line-2);
  padding: 22px 4px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.005em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--orange);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item div {
  padding-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 640px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,89,31,.10), transparent 60%), var(--bg);
}
.final .display { text-align: center; }

.waitlist {
  margin-top: 56px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist__head {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  text-align: center;
}
.waitlist__form {
  display: flex;
  gap: 8px;
}
.waitlist__form input {
  flex: 1;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  outline: none;
  transition: border-color .15s ease;
  min-width: 0;
}
.waitlist__form input:focus { border-color: var(--ink); }
.waitlist__msg {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  min-height: 18px;
}
.waitlist__msg.is-success { color: var(--green); }
.waitlist__msg.is-error { color: var(--orange-deep); }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-tint);
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.footer__brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
  justify-self: center;
}
.footer__links a:hover { color: var(--ink); }
.footer__legal {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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