/* =========================================================================
   Sefim vitrin (statik landing) — koyu espresso + sıcak amber.
   Palet, Flutter tarafıyla aynı: lib/app/theme.dart → SefimColors.
   Harici istek yok: font, ikon, script hepsi yerel.
   ========================================================================= */

:root {
  --espresso-deep: #120c0a;
  --espresso: #1d1512;
  --espresso-soft: #2b201a;
  --amber: #f2a03d;
  --amber-bright: #ffc470;
  --amber-deep: #a55f0f;
  --cream: #f8f1e8;
  --cream-dim: #b9a899;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --glass: rgba(255, 255, 255, .04);
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-pad: 24px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--espresso-deep);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* z-index: 0 -> kendi yigin baglamini kurar; arka plan katmanlari (-1) icerigin
   ALTINDA kalir. Aksi halde position'suz basliklar/butonlar .bg-glow'un opak
   gradyaninin altinda kaybolur.
   overflow-x: clip -> dekoratif tasmalar (isik halkalari) sayfayi yatayda
   genisletemez. `hidden` degil `clip`: kaydirma kabi olusturmaz, yapiskan
   ust bar calismaya devam eder. */
#landing { position: relative; z-index: 0; overflow-x: clip; }

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.022em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- arka plan katmanları ---------- */
.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 38% at 12% -4%, rgba(242, 160, 61, .20), transparent 70%),
    radial-gradient(40% 34% at 92% 8%, rgba(184, 107, 18, .16), transparent 72%),
    radial-gradient(60% 45% at 50% 108%, rgba(242, 160, 61, .08), transparent 70%),
    linear-gradient(180deg, var(--espresso) 0%, var(--espresso-deep) 55%, #0b0706 100%);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 650; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-primary {
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  color: #2a1a06;
  box-shadow: 0 10px 30px -10px rgba(242, 160, 61, .65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(242, 160, 61, .8); }
.btn-primary svg { transition: transform .18s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--glass); border-color: var(--line-strong); color: var(--cream); }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); transform: translateY(-2px); }

/* ---------- üst bar ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 28px;
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--nav-pad);
  transition: background .25s var(--ease), border-color .25s var(--ease), backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(18, 12, 10, .78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  max-width: none;
  padding-left: max(var(--nav-pad), calc(50vw - var(--maxw) / 2));
  padding-right: max(var(--nav-pad), calc(50vw - var(--maxw) / 2));
}
.brand { display: flex; align-items: center; gap: 11px; padding: 4px 0; }
.brand-mark { border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.brand-sub { font-size: 8.5px; letter-spacing: .22em; color: var(--cream-dim); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14px; color: var(--cream-dim); }
.nav-links a { position: relative; padding: 4px 0; transition: color .18s var(--ease); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--amber); transition: right .22s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 64px 24px 90px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: rgba(242, 160, 61, .10); border: 1px solid rgba(242, 160, 61, .28);
  font-size: 12.5px; color: var(--amber-bright); letter-spacing: -.005em;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 0 rgba(242, 160, 61, .7); animation: ping 2.4s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(242, 160, 61, .6); }
  70% { box-shadow: 0 0 0 8px rgba(242, 160, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 160, 61, 0); }
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5.6vw, 66px); line-height: 1.03; letter-spacing: -.035em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--amber-bright), var(--amber) 45%, var(--amber-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(15.5px, 1.35vw, 18px); line-height: 1.62; color: var(--cream-dim); max-width: 33em; }
.lede strong { color: var(--cream); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px 34px; }
.hero-facts li { display: flex; flex-direction: column; gap: 3px; position: relative; padding-left: 15px; }
.hero-facts li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 3px; height: calc(100% - 10px);
  border-radius: 2px; background: linear-gradient(var(--amber), transparent);
}
.hero-facts strong { font-size: 13.5px; font-weight: 650; }
.hero-facts span { font-size: 12.5px; color: var(--cream-dim); }

/* ---------- kasa maketi ---------- */
.hero-demo { position: relative; }
/* Yatayda tasmaz: eskiden -10% idi ve dar ekranda sayfayi genisletip
   kendini besleyen bir dongu yaratiyordu (390px ekranda icerik 586px oluyordu). */
.demo-halo {
  position: absolute; inset: -14% 0 -22%;
  background: radial-gradient(50% 50% at 50% 45%, rgba(242, 160, 61, .22), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.pos {
  position: relative;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(170deg, rgba(43, 32, 26, .96), rgba(18, 12, 10, .98));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .5s var(--ease);
}
.pos:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-4px); }
.pos-top {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  font-size: 11.5px; color: var(--cream-dim);
}
.pos-dots { display: flex; gap: 5px; }
.pos-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.pos-title { letter-spacing: .01em; }
.pos-live { margin-left: auto; display: flex; align-items: center; gap: 6px; color: #7fd39b; }
.pos-live .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #7fd39b; animation: ping2 1.8s infinite;
}
@keyframes ping2 { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

.pos-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 12px; padding: 14px; }
.pos-tables { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; align-content: start; }
.tbl {
  aspect-ratio: 1 / .82; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: rgba(255, 255, 255, .035); border: 1px solid var(--line);
  font-size: 11px; color: var(--cream-dim);
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), transform .3s var(--ease);
}
.tbl b { font-size: 12.5px; font-weight: 650; color: var(--cream); }
.tbl .tbl-sub { font-size: 9.5px; letter-spacing: .04em; }
.tbl.is-busy {
  background: rgba(242, 160, 61, .16); border-color: rgba(242, 160, 61, .5); color: var(--amber-bright);
}
.tbl.is-paid {
  background: rgba(127, 211, 155, .14); border-color: rgba(127, 211, 155, .42); color: #9fe0b5;
}
.tbl.is-hot { transform: scale(1.06); }

.pos-ticket {
  border-radius: 12px; padding: 12px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 0;
}
.ticket-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ticket-name { font-size: 13px; font-weight: 650; }
.ticket-tag {
  font-size: 8.5px; letter-spacing: .12em; padding: 3px 7px; border-radius: 5px;
  background: rgba(242, 160, 61, .16); color: var(--amber-bright);
}
.ticket-lines { margin: 10px 0; flex: 1; display: flex; flex-direction: column; gap: 7px; min-height: 118px; }
.ticket-lines li {
  display: flex; justify-content: space-between; gap: 8px; font-size: 11.5px; color: var(--cream-dim);
  animation: lineIn .35s var(--ease) both;
}
.ticket-lines li span:first-child { color: var(--cream); }
.ticket-lines li em { font-style: normal; color: var(--amber); margin-right: 5px; }
@keyframes lineIn { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: none } }
.ticket-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 10px; border-top: 1px dashed var(--line-strong);
  font-size: 11.5px; color: var(--cream-dim);
}
.ticket-total b { font-size: 19px; color: var(--amber-bright); font-variant-numeric: tabular-nums; }

.pos-kds {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px 12px; border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .22);
}
.kds-label { font-size: 9px; letter-spacing: .18em; color: var(--cream-dim); flex-shrink: 0; }
.kds-track { display: flex; gap: 7px; overflow: hidden; }
.kds-chip {
  flex-shrink: 0; padding: 5px 9px; border-radius: 7px; font-size: 10.5px; white-space: nowrap;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--cream-dim);
  animation: chipIn .4s var(--ease) both;
}
.kds-chip.is-cooking { border-color: rgba(242, 160, 61, .45); color: var(--amber-bright); }
.kds-chip.is-ready { border-color: rgba(127, 211, 155, .45); color: #9fe0b5; }
@keyframes chipIn { from { opacity: 0; transform: translateX(14px) } to { opacity: 1; transform: none } }

/* ---------- güven şeridi ---------- */
.strip {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 24px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.strip-item { display: flex; flex-direction: column; gap: 4px; }
.strip-item b { font-size: 20px; letter-spacing: -.02em; color: var(--amber-bright); }
.strip-item span { font-size: 12.5px; color: var(--cream-dim); }

/* ---------- bölümler ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 24px; }
.section-head { max-width: 660px; margin-bottom: 44px; }
.eyebrow {
  display: inline-block; font-size: 10.5px; letter-spacing: .2em; color: var(--amber);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.12; }
.section-head p { margin-top: 14px; font-size: 15.5px; line-height: 1.62; color: var(--cream-dim); }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: 24px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px); border-color: rgba(242, 160, 61, .34);
  background: rgba(255, 255, 255, .06);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(242, 160, 61, .12); color: var(--amber-bright);
}
.card-icon svg { width: 21px; height: 21px; }
.card h3 { font-size: 16.5px; margin-bottom: 8px; }
.card p { font-size: 13.8px; line-height: 1.62; color: var(--cream-dim); }

/* ---------- akış şeması ---------- */
.flow {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.1fr) auto minmax(0, 1fr); gap: 14px; align-items: center;
  padding: 30px; border-radius: 22px;
  background: var(--glass); border: 1px solid var(--line);
}
.flow-col { display: flex; flex-direction: column; gap: 10px; }
.flow-tag { font-size: 9.5px; letter-spacing: .18em; color: var(--cream-dim); }
.flow-box {
  padding: 13px 15px; border-radius: 12px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 3px;
}
.flow-box b { font-size: 14px; }
.flow-box span { font-size: 11.5px; color: var(--cream-dim); }
.flow-box em { font-style: normal; font-size: 11px; color: var(--amber); margin-top: 4px; }
.flow-box-lg {
  padding: 22px 20px; background: rgba(242, 160, 61, .10);
  border-color: rgba(242, 160, 61, .32);
  box-shadow: 0 0 50px -18px rgba(242, 160, 61, .6);
}
.flow-link { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.flow-pipe {
  width: 46px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  background-size: 200% 100%; animation: flowMove 2.6s linear infinite;
}
@keyframes flowMove { from { background-position: 100% 0 } to { background-position: -100% 0 } }
.flow-note { font-size: 9.5px; color: var(--cream-dim); letter-spacing: .06em; }

/* ---------- roller ---------- */
.role {
  display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.role:hover { transform: translateY(-4px); border-color: rgba(242, 160, 61, .45); background: rgba(255, 255, 255, .065); }
.role-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(242, 160, 61, .13); color: var(--amber-bright);
}
.role-icon svg { width: 23px; height: 23px; }
.role h3 { font-size: 19px; margin-bottom: 8px; }
.role p { font-size: 13.8px; line-height: 1.6; color: var(--cream-dim); flex: 1; }
.role-go { margin-top: 18px; font-size: 13px; font-weight: 650; color: var(--amber); }
.role:hover .role-go { color: var(--amber-bright); }

/* ---------- yol haritası ---------- */
.road { display: grid; gap: 14px; }
.road-item {
  position: relative; padding: 24px 26px 24px 30px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line); overflow: hidden;
}
.road-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--line-strong);
}
.road-item.is-done::before { background: #7fd39b; }
.road-item.is-now::before { background: linear-gradient(180deg, var(--amber-bright), var(--amber-deep)); }
.road-badge {
  display: inline-block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px; margin-bottom: 11px;
  background: rgba(255, 255, 255, .06); color: var(--cream-dim); border: 1px solid var(--line);
}
.is-done .road-badge { background: rgba(127, 211, 155, .14); color: #9fe0b5; border-color: rgba(127, 211, 155, .3); }
.is-now .road-badge { background: rgba(242, 160, 61, .16); color: var(--amber-bright); border-color: rgba(242, 160, 61, .38); }
.road-item h3 { font-size: 17px; margin-bottom: 8px; }
.road-item p { font-size: 13.8px; line-height: 1.62; color: var(--cream-dim); max-width: 72ch; }

/* ---------- CTA + footer ---------- */
.cta {
  max-width: var(--maxw); margin: 0 auto 20px; padding: 66px 24px; text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 { font-size: clamp(24px, 3vw, 36px); }
.cta p { margin: 14px auto 28px; max-width: 46ch; color: var(--cream-dim); font-size: 15px; line-height: 1.6; }
.foot {
  max-width: var(--maxw); margin: 0 auto; padding: 34px 24px 48px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.foot-brand { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; letter-spacing: -.03em; }
.foot-brand img { border-radius: 7px; }
.foot p { font-size: 13px; color: var(--cream-dim); }
.foot-dim { color: rgba(185, 168, 153, .55) !important; font-size: 12px !important; }

/* ---------- scroll reveal ---------- */
/* Gizleme yalnizca .has-js altinda: script gelmezse icerik oldugu gibi durur. */
.has-js [data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal] { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.has-js [data-reveal].is-in { opacity: 1; transform: none; }
.grid [data-reveal]:nth-child(2), .road [data-reveal]:nth-child(2) { transition-delay: .07s; }
.grid [data-reveal]:nth-child(3), .road [data-reveal]:nth-child(3) { transition-delay: .14s; }
.grid [data-reveal]:nth-child(4) { transition-delay: .07s; }
.grid [data-reveal]:nth-child(5) { transition-delay: .14s; }
.grid [data-reveal]:nth-child(6) { transition-delay: .21s; }

/* ---------- duyarlı ---------- */
@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 44px; padding-top: 40px; }
  .pos { transform: none; }
  .pos:hover { transform: translateY(-3px); }
  .grid, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: minmax(0, 1fr); }
  .flow-link { flex-direction: row; gap: 10px; }
  .flow-pipe { width: 2px; height: 34px; background: linear-gradient(180deg, transparent, var(--amber), transparent); background-size: 100% 200%; }
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}
@media (max-width: 720px) {
  :root { --nav-pad: 18px; }
  .nav { gap: 12px; padding-top: 12px; padding-bottom: 10px; flex-wrap: wrap; }
  .nav-cta { margin-left: auto; padding: 11px 18px; }

  /* Bolum baglantilari ikinci satirda, yatay kaydirilabilir. Sayfa kaydirilinca
     (is-stuck) gizlenir → yapiskan bar telefonda yer kaplamaz. */
  .nav-links {
    order: 3; width: 100%; margin-left: 0; gap: 20px; font-size: 13.5px;
    overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; padding: 7px 0; }
  .nav.is-stuck { padding-bottom: 12px; }
  .nav.is-stuck .nav-links { display: none; }

  .hero { padding: 26px 18px 56px; gap: 34px; }
  .hero h1 { margin: 18px 0 14px; }
  .hero-cta { margin: 24px 0 26px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-facts { gap: 12px 20px; }

  .section { padding: 56px 18px; }
  .section-head { margin-bottom: 28px; }
  .grid, .grid-3 { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .card, .role { padding: 20px; }
  .card-icon { margin-bottom: 13px; }
  .road-item { padding: 20px 20px 20px 26px; }

  /* Kasa maketi: telefonda daha derli toplu */
  .pos-body { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 12px; }
  .pos-tables { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .ticket-lines { min-height: 92px; }
  .flow { padding: 20px; }

  .strip { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 22px 18px; gap: 18px; }
  .cta { padding: 48px 18px; }
  .foot { padding: 30px 18px 40px; }
}

/* Dokunma hedefleri en az ~44px */
@media (hover: none) and (pointer: coarse) {
  .nav-links a { padding: 13px 0; }
  .nav-cta { padding: 12px 18px; }
  .brand { padding: 6px 0; }
  .role-go { padding: 6px 0; }
}

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