/* ============================================================
   CODE RAFT — كود رفت | حلول رقمية متكاملة
   Dark navy + glowing teal. RTL, Arabic-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #0A1222;
  --bg-2:      #0D1A2B;
  --ink:       #F8FAFC;
  --muted:     #94A3B8;
  --muted-dim: #64748B;

  --teal:      #2DD4BF;
  --emerald:   #10B981;
  --glow:      #5EEAD4;

  --border:    rgba(255, 255, 255, 0.08);
  --border-hi: rgba(45, 212, 191, 0.45);
  --card:      rgba(255, 255, 255, 0.03);
  --card-hi:   rgba(255, 255, 255, 0.05);

  --radius:    20px;
  --radius-sm: 14px;
  --maxw:      1160px;

  --shadow:    0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-teal: 0 0 0 1px var(--border-hi), 0 20px 50px -18px rgba(16, 185, 129, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Tajawal", system-ui, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* mono accent helper */
.mono { font-family: "Space Mono", ui-monospace, monospace; }

/* Skip link */
.skip-link {
  position: fixed; top: -100px; inset-inline-start: 16px; z-index: 200;
  background: var(--teal); color: #06231f; padding: 10px 16px;
  border-radius: 10px; font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 2px solid var(--glow); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   Ambient background
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, var(--bg-2), var(--bg) 55%); }

.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow-a {
  width: 620px; height: 620px; top: -220px; inset-inline-start: -160px;
  background: radial-gradient(circle, rgba(45,212,191,.30), transparent 65%);
  animation: pulse 9s ease-in-out infinite;
}
.glow-b {
  width: 520px; height: 520px; bottom: -180px; inset-inline-end: -140px;
  background: radial-gradient(circle, rgba(16,185,129,.18), transparent 65%);
  animation: pulse 11s ease-in-out infinite reverse;
}
.grid-tex {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(148,163,184,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
@keyframes pulse { 0%,100% { opacity:.4; transform: scale(1); } 50% { opacity:.7; transform: scale(1.08); } }

/* ============================================================
   Brand / logo
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.badge {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  font-family: "Space Mono", monospace; font-weight: 700; font-size: 17px;
  color: #06231f;
  background: linear-gradient(145deg, var(--glow), var(--emerald));
  box-shadow: 0 8px 22px -6px rgba(16,185,129,.65), inset 0 1px 0 rgba(255,255,255,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-ar { font-weight: 800; font-size: 19px; color: var(--ink); }
.brand-en { font-family: "Space Mono", monospace; font-size: 9.5px; letter-spacing: .32em; color: var(--teal); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 17px; }

.btn-primary {
  color: #052e23;
  background: linear-gradient(140deg, var(--glow), var(--emerald));
  box-shadow: 0 12px 30px -10px rgba(16,185,129,.7), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(45,212,191,.85), inset 0 1px 0 rgba(255,255,255,.45); }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.02);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--border-hi); background: rgba(45,212,191,.06); color: var(--glow); }

/* WhatsApp glyph (white) used inside buttons */
.wa-ico {
  width: 20px; height: 20px; flex: none; display: inline-block;
  background: currentColor;
  -webkit-mask: var(--wa) center / contain no-repeat;
          mask: var(--wa) center / contain no-repeat;
}
.wa-ico-sm { width: 16px; height: 16px; }
:root {
  --wa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.46 1.32 4.97L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 1.67c2.2 0 4.27.86 5.82 2.42a8.2 8.2 0 0 1 2.41 5.82c0 4.54-3.7 8.23-8.24 8.23a8.2 8.2 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.18 8.18 0 0 1-1.26-4.37c0-4.54 3.7-8.24 8.24-8.24zm-4.7 4.43c-.16 0-.42.06-.64.31-.22.25-.85.83-.85 2.03s.87 2.36 1 2.52c.12.16 1.7 2.6 4.13 3.64.58.25 1.03.4 1.38.51.58.18 1.11.16 1.53.1.47-.07 1.43-.59 1.63-1.15.2-.56.2-1.05.14-1.15-.06-.1-.22-.16-.46-.28-.25-.12-1.43-.71-1.65-.79-.22-.08-.38-.12-.55.12-.16.25-.62.79-.77.95-.14.16-.28.18-.52.06-.25-.12-1.04-.38-1.97-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.25-.02-.38.1-.5.11-.11.25-.28.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.55-1.33-.76-1.82-.2-.48-.4-.41-.55-.42-.14-.01-.3-.01-.46-.01z'/%3E%3C/svg%3E");
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,18,34,.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.btn) {
  color: var(--muted); font-weight: 600; font-size: 15.5px; position: relative; transition: color .2s var(--ease);
}
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -7px; height: 2px;
  background: var(--teal); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links > a:not(.btn):hover { color: var(--ink); }
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }

.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  background: rgba(255,255,255,.03); border-radius: 12px; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.menu-btn span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  flex-direction: column; gap: 6px;
  padding: 14px 22px 24px;
  background: rgba(10,18,34,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
/* only render when JS opens it (removes [hidden]); respects the hidden attribute */
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu > a:not(.btn) { padding: 13px 6px; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 70px 0 110px; }
.hero-inner { display: flex; flex-direction: column; align-items: flex-start; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(45,212,191,.08); border: 1px solid var(--border-hi);
  color: var(--glow); font-weight: 700; font-size: 14px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); animation: pulse 2.4s ease-in-out infinite; }

.hero-title {
  font-size: clamp(64px, 14vw, 168px); font-weight: 900; letter-spacing: -0.04em;
  margin-top: 26px; line-height: 1.18; padding-bottom: 0.08em;
  background: linear-gradient(180deg, #ffffff, #cde9e2 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .accent { color: var(--teal); -webkit-text-fill-color: var(--teal); }
.hero-kicker {
  font-family: "Space Mono", monospace; letter-spacing: .42em;
  color: var(--teal); font-size: clamp(13px, 2vw, 18px); margin-top: 10px;
}

/* Offer block */
.offer { display: flex; align-items: center; gap: 26px; margin-top: 46px; flex-wrap: wrap; }
.offer-zero {
  font-weight: 900; font-size: clamp(72px, 13vw, 150px); line-height: .85;
  color: var(--glow);
  text-shadow: 0 0 40px rgba(45,212,191,.55), 0 0 80px rgba(16,185,129,.35);
  letter-spacing: -0.03em;
}
.offer-copy { display: flex; flex-direction: column; gap: 6px; }
.offer-main { font-size: clamp(20px, 3.2vw, 30px); font-weight: 800; color: var(--ink); }
.offer-main strong { color: var(--glow); }
.offer-sub { color: var(--muted); font-size: clamp(14px, 2vw, 17px); }
.offer-sub .ok { color: var(--teal); font-weight: 800; }

.mono-label {
  font-family: "Space Mono", monospace; color: var(--muted-dim);
  letter-spacing: .28em; font-size: 13px; margin-top: 30px;
}

.hero-cta { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

.hero-wave { position: absolute; bottom: 0; inset-inline: 0; width: 100%; height: 120px; opacity: .9; }

/* ============================================================
   Sections shared
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: "Space Mono", monospace; font-size: 13px;
  letter-spacing: .26em; color: var(--teal); text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; }
.section-lead { color: var(--muted); font-size: clamp(15px, 2.2vw, 18px); margin-top: 14px; }

/* Grids */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Glass cards */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  backdrop-filter: blur(8px);
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(120% 80% at 50% 0%, rgba(45,212,191,.14), transparent 60%);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: var(--shadow-teal); background: var(--card-hi); }
.card:hover::before { opacity: 1; }

.ic {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  color: var(--teal); margin-bottom: 18px;
  background: rgba(45,212,191,.10); border: 1px solid var(--border-hi);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ic svg { width: 26px; height: 26px; }
.card:hover .ic { transform: scale(1.08); box-shadow: 0 0 24px -4px rgba(45,212,191,.6); }

.service h3, .why h3 { font-size: 20px; margin-bottom: 8px; }
.service p, .why p { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   Process / steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 30px 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--border-hi); }
.step-num {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  font-family: "Space Mono", monospace; font-weight: 700; font-size: 22px; color: #052e23;
  background: linear-gradient(140deg, var(--glow), var(--emerald));
  box-shadow: 0 10px 24px -8px rgba(16,185,129,.6); margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }
/* connector line */
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 55px; inset-inline-start: -22px; width: 22px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-hi));
}

/* ============================================================
   Work / portfolio
   ============================================================ */
.card.work { display: block; padding: 0; cursor: pointer; }
.work-thumb {
  height: 200px; position: relative; overflow: hidden;
  background: var(--bg-2);
}
.work-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform .45s var(--ease), filter .45s var(--ease);
}
.work-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,18,34,.65) 100%);
  pointer-events: none;
}
.card.work:hover .work-thumb img, .card.work:focus-visible .work-thumb img {
  transform: scale(1.07); filter: brightness(.8);
}
.work-open {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,18,34,.6); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 16px; line-height: 1;
  opacity: 0; transform: translateY(-4px) scale(.9);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.card.work:hover .work-open, .card.work:focus-visible .work-open { opacity: 1; transform: translateY(0) scale(1); }
.work-meta { padding: 22px 24px 26px; }
.work-cat { font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .12em; color: var(--teal); }
.work-meta h3 { font-size: 19px; margin-top: 8px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-card {
  display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 48px; align-items: center;
  background: linear-gradient(150deg, rgba(45,212,191,.07), rgba(16,185,129,.03));
  border: 1px solid var(--border-hi); border-radius: 28px;
  padding: 52px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.22), transparent 65%);
  top: -140px; inset-inline-end: -100px; filter: blur(50px); pointer-events: none;
}
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { font-size: clamp(30px, 5vw, 46px); margin-top: 4px; }
.contact-copy .section-lead { margin-bottom: 28px; }
.btn-wa { box-shadow: 0 14px 36px -8px rgba(16,185,129,.85), inset 0 1px 0 rgba(255,255,255,.4); }

.phone-row { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; }
.ic-phone { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--teal); background: rgba(45,212,191,.10); border: 1px solid var(--border-hi); }
.ic-phone svg { width: 20px; height: 20px; }
.phone-num { font-family: "Space Mono", monospace; font-size: 22px; font-weight: 700; color: var(--ink); }
.phone-num:hover { color: var(--glow); }
.phone-ar { font-size: 26px; font-weight: 800; color: var(--glow); margin-top: 10px; letter-spacing: .04em; }

/* QR */
.qr-block { display: flex; flex-direction: column; align-items: center; gap: 18px; position: relative; z-index: 1; }
.qr-frame {
  background: #fff; padding: 18px; border-radius: 20px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.1);
}
.qr { width: 196px; height: 196px; }
.qr-label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14.5px; font-weight: 600; }
.qr-label .wa-ico { color: var(--teal); }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: rgba(7,13,24,.6); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-tag { color: var(--muted); margin-top: 14px; font-size: 15px; }
.footer h4 { font-size: 15px; color: var(--ink); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--muted); font-size: 15px; transition: color .2s var(--ease); width: fit-content; }
.footer-links a:hover { color: var(--teal); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; }
.footer-wa:hover { color: var(--glow); }
.footer-phone { font-family: "Space Mono", monospace; color: var(--ink); font-weight: 700; }
.footer-phone-ar { color: var(--muted); font-size: 17px; font-weight: 700; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; text-align: center; }
.footer-bottom p { color: var(--muted-dim); font-size: 14px; }

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.fab-wa {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, #25d366, #128c4f);
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.8), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab-wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.6); animation: ring 2.4s ease-out infinite;
}
.fab-wa .wa-ico { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 44px -8px rgba(37,211,102,.95); }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* stagger children inside grids */
.grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }
.grid .reveal:nth-child(5) { transition-delay: .32s; }
.grid .reveal:nth-child(6) { transition-delay: .40s; }

/* ============================================================
   Responsive
   ============================================================ */
/* Desktop: the burger + dropdown belong only to small screens */
@media (min-width: 721px) {
  .menu-btn { display: none !important; }
  .mobile-menu { display: none !important; }
}

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:not(:last-child)::after { display: none; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .qr-block { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav.menu-open { background: rgba(10,18,34,.96); backdrop-filter: blur(14px); }
  .hero { padding: 48px 0 90px; }
  .offer { gap: 18px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .contact-card { padding: 30px 22px; }
  .hero-cta .btn { flex: 1 1 100%; }
}

@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .badge { width: 42px; height: 42px; }
  .offer-zero { font-size: 76px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
