:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F8F8FF;
  --surface-3: #F1F1F8;
  --line: #E6E6F0;
  --line-2: #EFEFF5;

  --ink: #0F0F1F;
  --ink-2: #3C3C56;
  --muted: #6E6E86;
  --muted-2: #9B9BAC;

  --indigo-50: #EEF0FF;
  --indigo-100: #E0E2FF;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --teal-500: #0D9488;
  --teal-400: #14B8A6;
  --emerald-500: #10B981;
  --amber-500: #F59E0B;

  --d-bg: #0B0B14;
  --d-surface: #14141F;
  --d-surface-2: #1C1C2A;
  --d-line: rgba(255,255,255,.08);
  --d-text: #EDEDF5;
  --d-muted: #9A9AB0;
  --glow-indigo: rgba(99,102,241,.45);
  --glow-teal: rgba(20,184,166,.40);

  --grad: linear-gradient(135deg, #4F46E5 0%, #6366F1 45%, #0D9488 100%);
  --grad-soft: linear-gradient(135deg, #EEF0FF 0%, #F0FBF9 100%);
  --grad-band: linear-gradient(135deg, #4F46E5 0%, #5B53EB 30%, #0B7268 100%);

  --badge-bg: #0F0F1F;
  --badge-fg: #FFFFFF;

  --shadow-xs: 0 1px 2px rgba(15,15,31,.04);
  --shadow-sm: 0 2px 6px rgba(15,15,31,.06), 0 1px 2px rgba(15,15,31,.04);
  --shadow-md: 0 10px 26px rgba(15,15,31,.08), 0 2px 6px rgba(15,15,31,.05);
  --shadow-lg: 0 26px 60px rgba(15,15,31,.12), 0 6px 16px rgba(15,15,31,.06);
  --shadow-glow: 0 18px 40px rgba(79,70,229,.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --space: clamp(64px, 9vw, 128px);
  --gutter: clamp(20px, 4vw, 36px);

  --ease: cubic-bezier(.22,1,.36,1);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ar: 'Tajawal', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-ar-display: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;

  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0B0B14;
  --surface: #14141F;
  --surface-2: #101019;
  --surface-3: #1C1C2A;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.06);

  --ink: #EDEDF5;
  --ink-2: #C8C8D8;
  --muted: #9A9AB0;
  --muted-2: #74748C;

  --indigo-50: rgba(99,102,241,.16);
  --indigo-100: rgba(99,102,241,.30);
  --indigo-500: #818CF8;
  --indigo-600: #818CF8;
  --indigo-700: #A5B4FC;

  --badge-bg: #F4F4FA;
  --badge-fg: #0B0B14;

  --grad-soft: linear-gradient(135deg, #171730 0%, #10201E 100%);

  --shadow-xs: 0 1px 2px rgba(0,0,0,.45);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 12px 30px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.4);
  --shadow-lg: 0 28px 64px rgba(0,0,0,.62), 0 8px 18px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--indigo-100); color: var(--indigo-700); }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
html[lang="ar"] { font-family: var(--font-ar); }
html[lang="en"] { font-family: var(--font); }
body {
  background: var(--bg); color: var(--ink); font-family: inherit;
  line-height: 1.65; font-size: 17px;
  min-height: 100vh; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  transition: background .3s var(--ease), color .3s var(--ease);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px; padding: 10px 16px;
  background: var(--ink); color: var(--bg); border-radius: 10px; z-index: 10000; transition: top .2s;
}
.skip-link:focus { top: 12px; }
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--indigo-500); outline-offset: 3px; border-radius: 6px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .15s var(--ease), box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 22px 48px rgba(79,70,229,.34); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: var(--indigo-50); color: var(--indigo-700);
  border: 1px solid var(--indigo-100); box-shadow: var(--shadow-xs);
}
.eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--surface-3); color: var(--muted);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
:root[data-theme="light"] .eyebrow { color: #5E5E75; }
.eyebrow--on-dark { background: rgba(255,255,255,.08); color: var(--d-muted); border: 1px solid var(--d-line); }
html[lang="ar"] .eyebrow { text-transform: none; letter-spacing: 0; font-size: .82rem; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: var(--shadow-xs); }
:root[data-theme="dark"] .nav { background: rgba(11,11,20,.7); }
:root[data-theme="dark"] .nav.is-scrolled { background: rgba(11,11,20,.9); border-bottom-color: var(--d-line); box-shadow: 0 1px 0 rgba(255,255,255,.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); flex: none; }
.brand__wordmark { height: 22px; width: auto; display: block; }
.brand__wordmark--dark {
  display: none; height: auto; font-family: var(--font); font-weight: 800;
  font-size: 1.2rem; letter-spacing: -.02em; color: var(--ink); direction: ltr;
}
:root[data-theme="dark"] .brand__wordmark--light { display: none; }
:root[data-theme="dark"] .brand__wordmark--dark { display: inline-block; }
.footer__brand .brand__logo { width: 32px; height: 32px; }
.footer__brand .brand__wordmark { height: 20px; }
.footer__brand .brand__wordmark--dark { font-size: 1.1rem; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; color: var(--ink-2); font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: var(--indigo-600); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.icon-toggle {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2);
  transition: background .2s, color .2s, transform .15s var(--ease);
}
.icon-toggle:hover { background: var(--surface-3); transform: translateY(-1px); }
.icon-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .icon-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .icon-toggle .icon-moon { display: block; }
.lang-toggle {
  padding: 8px 14px; border-radius: 999px; background: var(--surface-2);
  border: 1px solid var(--line); font-weight: 700; font-size: .85rem; color: var(--ink-2);
  font-family: var(--font); transition: background .2s, transform .15s var(--ease);
}
html[lang="ar"] .lang-toggle { font-family: var(--font-ar); }
.lang-toggle:hover { background: var(--surface-3); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 4px; width: 36px; height: 36px; padding: 8px; }
.nav__burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu { display: none; padding: 16px var(--gutter) 22px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; color: var(--ink-2); }
.mobile-menu .btn { width: 100%; margin-top: 10px; }

.scroll-progress { position: relative; height: 2px; background: transparent; }
.scroll-progress__bar { position: absolute; inset-block: 0; inset-inline-start: 0; width: 0; background: var(--grad); box-shadow: 0 0 12px rgba(79,70,229,.5); }

.stage { position: relative; overflow: hidden; }
.stage > .container { position: relative; z-index: 2; }
.stage--dark { background: #0A0A12; color: var(--d-text); }
.stage--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(99,102,241,.16), transparent 60%),
    radial-gradient(50% 45% at 90% 100%, rgba(20,184,166,.13), transparent 60%);
}
.stage__spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(99,102,241,.16), transparent 65%);
}
.stage.is-lit .stage__spot { opacity: 1; }
.stage--grad { background: var(--grad-band); color: #fff; }
.stage--grad::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 30% 20%, rgba(255,255,255,.16), transparent 70%);
}

.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 116px) clamp(48px, 7vw, 88px); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 42% at 18% 22%, rgba(79,70,229,.20), transparent 62%),
    radial-gradient(34% 40% at 82% 18%, rgba(13,148,136,.16), transparent 60%),
    radial-gradient(40% 44% at 70% 88%, rgba(99,102,241,.14), transparent 62%);
  animation: heroMesh 18s ease-in-out infinite alternate;
}
:root[data-theme="dark"] .hero__mesh {
  background:
    radial-gradient(40% 44% at 18% 22%, rgba(99,102,241,.30), transparent 62%),
    radial-gradient(36% 42% at 82% 18%, rgba(20,184,166,.22), transparent 60%),
    radial-gradient(42% 46% at 70% 88%, rgba(79,70,229,.22), transparent 62%);
}
@keyframes heroMesh { from { transform: translate3d(-1.5%, -1%, 0) scale(1); } to { transform: translate3d(2%, 1.5%, 0) scale(1.06); } }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero__blob--a { width: 520px; height: 520px; inset-block-start: -140px; inset-inline-end: -120px;
  background: radial-gradient(circle, rgba(79,70,229,.4), transparent 70%); }
.hero__blob--b { width: 440px; height: 440px; inset-block-end: -120px; inset-inline-start: -110px;
  background: radial-gradient(circle, rgba(13,148,136,.3), transparent 70%); }
.hero__grid {
  position: absolute; inset: 0; opacity: .22;
  background-image:
    linear-gradient(rgba(79,70,229,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 26%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 26%, #000 0%, transparent 70%);
}
:root[data-theme="dark"] .hero__grid { opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 22px; max-width: 620px; }
.hero__title {
  font-size: clamp(1.75rem, 3.7vw, 2.9rem); font-weight: 800; line-height: 1.14;
  letter-spacing: -0.02em; color: var(--ink); margin-block-start: 4px; text-wrap: balance;
}
.hero__title > span { display: block; }
.hero__title .grad-text { display: inline; }
.hero__sub { font-size: clamp(1.04rem, 1.4vw, 1.16rem); color: var(--ink-2); max-width: 48ch; line-height: 1.65; }
.hero__phantoms { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; }
.hero__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-block-start: 4px; }
.hero__under { color: var(--muted); font-size: .92rem; font-weight: 600; margin-block-start: -6px; }
.hero__trust { color: var(--muted); font-size: .9rem; }
.hero__visual { position: relative; display: grid; place-items: center; min-height: 560px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 22px; border-radius: 14px;
  background: var(--badge-bg); color: var(--badge-fg);
  box-shadow: var(--shadow-md); transition: transform .18s var(--ease), box-shadow .2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-badge svg { color: var(--badge-fg); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.05; align-items: flex-start; }
.store-badge small { font-size: .68rem; opacity: .82; font-weight: 500; }
.store-badge strong { font-size: 1.1rem; font-weight: 700; }
.store-badge--sm { padding: 10px 16px; border-radius: 12px; }
.store-badge--sm strong { font-size: .96rem; }
.store-badge--on-grad { background: #fff; color: #0B0B14; }
.store-badge--on-grad svg { color: #0B0B14; }
.js-magnetic { transition: transform .2s var(--ease), box-shadow .2s ease; will-change: transform; }

.device { position: relative; width: 320px; max-width: 100%; }
.device__glow {
  position: absolute; inset: -14% -10%; z-index: 0; filter: blur(40px); opacity: .0;
  background: radial-gradient(60% 55% at 50% 45%, var(--glow-indigo), transparent 70%);
  transition: opacity .4s ease;
}
.stage--dark .device__glow, .device--hero .device__glow { opacity: .85; }
.device__frame {
  position: relative; z-index: 1; aspect-ratio: 320 / 650; border-radius: 44px; padding: 12px;
  background: linear-gradient(180deg, #1B1B2B, #0C0C16);
  box-shadow: 0 44px 80px rgba(15,15,31,.28), 0 14px 26px rgba(15,15,31,.14), inset 0 0 0 2px rgba(255,255,255,.05);
}
.device__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 112px; height: 24px; background: #0C0C16; border-radius: 12px; z-index: 3;
}
.device__screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%);
}
.device--hero { width: min(340px, 82vw); }
.device--card { width: min(300px, 80vw); }
.device--card .device__frame { aspect-ratio: 300 / 400; border-radius: 34px; padding: 10px; }
.device--card .device__screen { border-radius: 26px; }
.device--sticky { width: min(320px, 78vw); }
.js-tilt { transition: transform .3s var(--ease); transform-style: preserve-3d; will-change: transform; }

.app { display: flex; flex-direction: column; gap: 12px; padding: 58px 16px 18px; height: 100%; }
.app__top { display: flex; align-items: center; justify-content: space-between; }
.app__icon { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-xs); }
.app__bell { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: #F1F1F8; font-size: 18px; }
.app__summary { background: var(--grad); color: #fff; border-radius: var(--radius); padding: 14px 16px; box-shadow: 0 12px 24px rgba(79,70,229,.3); }
.app__summary-label { font-size: .8rem; opacity: .85; }
.app__summary-value { font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; direction: ltr; }
.app__summary-sub { font-size: .76rem; opacity: .9; margin-top: 2px; }
.app__section { font-size: .78rem; color: #6E6E86; font-weight: 700; }
.app__list { display: flex; flex-direction: column; gap: 8px; }
.sub-row {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center;
  background: #fff; border: 1px solid #EFEFF5; border-radius: 12px; padding: 9px 10px;
}
.sub-row__logo { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .72rem; }
.sub-row__meta { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.sub-row__meta strong { font-size: .88rem; color: #0F0F1F; }
.sub-row__meta small { font-size: .72rem; color: #6E6E86; }
.sub-row__amt { font-weight: 700; color: #10B981; font-size: .88rem; font-variant-numeric: tabular-nums; direction: ltr; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px; z-index: 4;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 13px; box-shadow: var(--shadow-md);
}
.float-card span { font-size: 22px; }
.float-card div { display: flex; flex-direction: column; line-height: 1.15; }
.float-card strong { font-size: .82rem; color: var(--ink); }
.float-card small { font-size: .7rem; color: var(--muted); }
.float-card--bell { inset-block-start: 12%; inset-inline-end: -18px; }

.trust { padding-block: clamp(28px, 4vw, 44px); border-block-end: 1px solid var(--line-2); }
.trust__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2);
  font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-xs);
}
.trust-chip__ic { font-size: .95rem; line-height: 1; color: var(--indigo-600); }

.hook { padding-block: var(--space); }
.hook__inner { position: relative; max-width: 960px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; gap: 22px; align-items: center; }
.hook__q { font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.16; letter-spacing: -.02em; color: var(--d-text); max-width: 22ch; }
.hook__a { color: var(--d-muted); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 56ch; line-height: 1.75; }
.hook__phantoms { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; }
.phantom {
  font-family: var(--font); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #6366F1; opacity: .1; letter-spacing: -.01em; direction: ltr; unicode-bidi: isolate; justify-self: center;
  will-change: transform;
}
.phantom { transform: translate3d(0, calc(var(--y, 0px) + var(--drift, 0px)), 0); }
.phantom:nth-child(1) { --y: -74px; }
.phantom:nth-child(2) { --y: 62px; color: #14B8A6; }
.phantom:nth-child(3) { --y: -48px; }
.phantom:nth-child(4) { --y: 80px; color: #F59E0B; opacity: .12; }
.phantom:nth-child(5) { --y: -86px; }
.phantom:nth-child(6) { --y: 54px; color: #14B8A6; }

.section-head { text-align: center; max-width: 780px; margin-inline: auto; margin-block-end: clamp(36px, 5vw, 60px); display: flex; flex-direction: column; gap: 14px; align-items: center; }
.section-head--start { text-align: start; align-items: flex-start; }
.section-title { font-size: clamp(1.85rem, 3.6vw, 2.8rem); font-weight: 800; line-height: 1.16; letter-spacing: -.02em; color: var(--ink); }
.section-title--on-dark { color: var(--d-text); }
.section-sub { font-size: 1.06rem; color: var(--muted); max-width: 60ch; line-height: 1.7; }
.section-sub--on-dark { color: var(--d-muted); }
html[lang="ar"] .section-title .grad-text, html[lang="ar"] .hero__title .grad-text { padding-block: .06em; }

.marquee { padding-block: var(--space); }
.marquee__head { text-align: center; max-width: 760px; margin-inline: auto; margin-block-end: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 12px; }
.marquee__title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.marquee__sub { color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.marquee__viewport {
  overflow: hidden; padding-block: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__viewport + .marquee__viewport { margin-block-start: 14px; }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: mq 42s linear infinite; }
.marquee__viewport--rev .marquee__track { animation-duration: 52s; animation-direction: reverse; }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }
html[dir="rtl"] .marquee__viewport--rev .marquee__track { animation-direction: normal; }
.marquee__viewport:hover .marquee__track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }
.brand-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font); font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  direction: ltr; white-space: nowrap; box-shadow: var(--shadow-xs);
}
.brand-chip::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--bc, #6366F1); flex: none; }
.marquee__note { text-align: center; color: var(--muted); font-size: .95rem; margin-block-start: clamp(24px, 3vw, 36px); }

.scrolly { padding-block: var(--space); background: var(--surface-2); border-block: 1px solid var(--line-2); }
.scrolly__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.scrolly__media { position: sticky; top: clamp(88px, 14vh, 140px); display: grid; place-items: center; }
.scrolly__screens { position: relative; width: 100%; height: 100%; }
.scrolly__screen { position: absolute; inset: 0; display: grid; place-items: center; padding: 22px; }
.scrolly__screen:not(.is-active) { display: none; }
html.js .scrolly__screen { display: grid; opacity: 0; transform: scale(.98); transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.js .scrolly__screen.is-active { opacity: 1; transform: none; }
.scrolly__steps { display: flex; flex-direction: column; gap: 16px; padding-block: clamp(20px, 10vh, 120px); }
.scrolly__step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; border-radius: var(--radius-lg);
  border: 1px solid transparent; opacity: .5;
  transition: opacity .35s var(--ease), background .35s, border-color .35s, transform .35s var(--ease);
}
.scrolly__step.is-active { opacity: 1; background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.scrolly__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; flex: none;
  font-weight: 800; font-size: 1.3rem; font-variant-numeric: tabular-nums;
  background: var(--surface-3); color: var(--muted); transition: background .35s, color .35s;
}
.scrolly__step.is-active .scrolly__num { background: var(--grad); color: #fff; box-shadow: 0 10px 22px rgba(79,70,229,.28); }
.scrolly__step h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; margin-block-end: 6px; color: var(--ink); }
.scrolly__step p { color: var(--ink-2); line-height: 1.7; }

.mini-app {
  width: 100%; max-width: 240px; aspect-ratio: 240 / 380; border-radius: 24px; padding: 20px;
  background: linear-gradient(180deg, #fff 0%, #F8F9FF 100%); border: 1px solid #EFEFF5;
  display: flex; flex-direction: column; gap: 14px; box-shadow: 0 14px 30px rgba(15,15,31,.1);
}
.mini-app--flat { max-width: none; width: 100%; aspect-ratio: auto; height: 100%; border: 0; box-shadow: none; background: linear-gradient(180deg, #fff, #F5F7FF); border-radius: 26px; justify-content: flex-start; padding: 22px 18px; }
.mini-app__title { font-size: 1rem; font-weight: 700; color: #0F0F1F; }
.mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; font-size: .72rem; }
.mini-cal > span { color: #9B9BAC; font-weight: 700; text-align: center; }
.mini-cal > i { display: grid; place-items: center; height: 26px; border-radius: 8px; background: #F1F1F8; color: #3C3C56; font-style: normal; font-weight: 600; }
.mini-cal > i.dot { background: #EEF0FF; color: #4338CA; }
.mini-cal > i.dot--t { background: rgba(13,148,136,.18); color: #0D9488; }
.mini-cal > i.dot--e { background: rgba(16,185,129,.16); color: #047857; }

.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pick { display: grid; place-items: center; aspect-ratio: 1; border-radius: 12px; color: #fff; font-weight: 800; font-size: .82rem; background: var(--bc, #6366F1); opacity: .55; }
.pick--on { opacity: 1; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--bc); }
.pick-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #EFEFF5; border-radius: 12px; padding: 10px 12px; }
.pick-row__meta { display: flex; flex-direction: column; line-height: 1.2; }
.pick-row__meta strong { font-size: .9rem; color: #0F0F1F; }
.pick-row__meta small { font-size: .74rem; color: #6E6E86; }
.pick-row__amt { font-weight: 700; color: #10B981; font-variant-numeric: tabular-nums; direction: ltr; }

.alert-toast { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #E6E6F0; border-radius: 16px; padding: 14px 12px; box-shadow: 0 8px 20px rgba(15,15,31,.08); }
.alert-toast span { font-size: 22px; }
.alert-toast div { display: flex; flex-direction: column; line-height: 1.2; }
.alert-toast strong { font-size: .92rem; color: #0F0F1F; }
.alert-toast small { font-size: .76rem; color: #6E6E86; }
.alert-actions { display: flex; gap: 8px; }
.chip { flex: 1; padding: 10px 14px; border-radius: 12px; text-align: center; font-weight: 700; font-size: .88rem; }
.chip--ghost { background: #F1F1F8; color: #3C3C56; }
.chip--solid { background: var(--grad); color: #fff; }
.chip--full { flex: none; display: block; }

.lock-note { background: #fff; border: 1px solid #E6E6F0; border-radius: 16px; padding: 14px; box-shadow: 0 8px 20px rgba(15,15,31,.08); display: flex; flex-direction: column; gap: 6px; }
.lock-note__top { display: flex; align-items: center; gap: 8px; }
.lock-note__top img { border-radius: 6px; }
.lock-note__top span { font-weight: 700; font-size: .8rem; color: #0F0F1F; }
.lock-note__top small { margin-inline-start: auto; font-size: .72rem; color: #9B9BAC; }
.lock-note strong { font-size: .92rem; color: #0F0F1F; }
.lock-note p { font-size: .8rem; color: #3C3C56; line-height: 1.5; }

.mini-app--stats, .mini-app--fx { gap: 10px; }
.stats-big { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; color: #0F0F1F; font-variant-numeric: tabular-nums; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; margin-block-start: auto; }
.bars > span { flex: 1; height: var(--h, 40%); border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #6366F1, #4F46E5); opacity: .85; }
.bars > span.bars--hot { background: linear-gradient(180deg, #14B8A6, #0D9488); opacity: 1; }
.fx-list { display: flex; flex-direction: column; gap: 8px; margin-block-start: 4px; }
.fx-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #EFEFF5; border-radius: 12px; padding: 10px 12px; }
.fx-row small { color: #6E6E86; font-size: .8rem; }
.fx-row b { color: #0F0F1F; font-size: .86rem; font-variant-numeric: tabular-nums; }

.features { padding-block: var(--space); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-block-end: clamp(48px, 7vw, 96px); }
.feature-row:last-child { margin-block-end: 0; }
.feature-row--rev .feature-row__copy { order: 2; }
.feature-row--rev .feature-row__media { order: 1; }
.feature-row__copy { display: flex; flex-direction: column; gap: 14px; max-width: 46ch; }
.feature-row__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; font-size: 24px; background: rgba(255,255,255,.06); border: 1px solid var(--d-line); }
.feature-row__copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: var(--d-text); }
.feature-row__copy p { color: var(--d-muted); line-height: 1.75; font-size: 1.04rem; }
.feature-row__media { display: grid; place-items: center; }

.promise { padding-block: clamp(72px, 9vw, 120px); }
.promise__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.promise__lock { position: absolute; inset-inline-end: -2%; inset-block-start: 50%; transform: translateY(-50%); font-size: clamp(180px, 30vw, 420px); opacity: .06; filter: grayscale(1) brightness(3); }
.promise__inner { position: relative; z-index: 2; text-align: center; max-width: 940px; margin-inline: auto; display: flex; flex-direction: column; gap: 18px; align-items: center; color: #fff; }
.promise__kicker { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24); font-size: .82rem; font-weight: 700; }
.promise__line { font-size: clamp(1.7rem, 3.8vw, 2.9rem); font-weight: 800; line-height: 1.24; letter-spacing: -.02em; max-width: 22ch; }
.promise__elab { color: #fff; font-size: 1.06rem; max-width: 56ch; line-height: 1.75; }

.compare { padding-block: var(--space); }
.compare__table { max-width: 860px; margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface); }
.compare__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: stretch; border-block-end: 1px solid var(--line-2); }
.compare__row:last-child { border-block-end: 0; }
.compare__cell { display: flex; align-items: center; gap: 8px; padding: 16px 18px; font-size: .96rem; }
.compare__cell--label { font-weight: 700; color: var(--ink); }
.compare__cell--them { color: var(--muted); }
.compare__cell--us { background: var(--indigo-50); color: var(--ink); font-weight: 700; border-inline: 1px solid var(--indigo-100); }
.compare__row--head .compare__cell { padding-block: 18px; font-weight: 800; }
.compare__row--head .compare__cell--us { color: var(--indigo-700); }
.compare__row--head .compare__cell--them { color: var(--muted); font-weight: 700; }
.tick { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; font-size: .8rem; font-weight: 800; flex: none; }
.tick--good { background: rgba(16,185,129,.16); color: #059669; }
.tick--bad { background: rgba(244,63,94,.14); color: #E11D48; }

.stats { padding-block: var(--space); }
.stats__title { text-align: center; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: var(--d-text); margin-block-end: clamp(32px, 5vw, 56px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 28px); }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius-lg); background: rgba(255,255,255,.04); border: 1px solid var(--d-line); }
.stat__num {
  display: block; font-family: var(--font); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; direction: ltr;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { display: block; margin-block-start: 12px; color: var(--d-muted); font-size: .96rem; font-weight: 600; }

.tst { padding-block: var(--space); }
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 28px); }
.tst-card { padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.tst-card__stars { color: #F59E0B; letter-spacing: 3px; font-size: 1rem; opacity: .5; }
.tst-card__lines { display: flex; flex-direction: column; gap: 10px; }
.tst-card__lines span { height: 11px; border-radius: 6px; background: var(--surface-3); }
.tst-card__lines span:nth-child(1) { width: 100%; }
.tst-card__lines span:nth-child(2) { width: 92%; }
.tst-card__lines span:nth-child(3) { width: 68%; }
.tst-card__who { display: flex; align-items: center; gap: 10px; margin-block-start: auto; }
.tst-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line); flex: none; }
.tst-card__soon { color: var(--muted); font-weight: 600; font-size: .9rem; }

.faq { padding-block: var(--space); }
.faq__inner { max-width: 840px; margin-inline: auto; }
.qa-list { display: flex; flex-direction: column; }
.qa { border-block-end: 1px solid var(--line); }
.qa:first-child { border-block-start: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); font-weight: 700; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--surface-3); color: var(--indigo-600); font-style: normal; font-size: 1.1rem; transition: transform .25s, background .2s; }
.qa[open] summary i { transform: rotate(45deg); background: var(--indigo-50); }
.qa p { padding-block-end: 22px; color: var(--ink-2); line-height: 1.8; max-width: 64ch; }

.cta { padding-block: clamp(76px, 10vw, 128px); }
.cta__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cta__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta__glow--a { width: 460px; height: 460px; inset-block-start: -160px; inset-inline-end: -140px; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 70%); }
.cta__glow--b { width: 380px; height: 380px; inset-block-end: -140px; inset-inline-start: -140px; background: radial-gradient(circle, rgba(20,184,166,.4), transparent 70%); }
.cta__inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; color: #fff; }
.cta__title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.14; max-width: 18ch; }
.cta__sub { color: #fff; font-size: 1.1rem; max-width: 50ch; }
.cta__row { margin-block-start: 18px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.footer { padding-block: clamp(48px, 6vw, 72px) 28px; background: var(--surface); border-block-start: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: clamp(28px, 5vw, 56px); align-items: start; padding-block-end: 32px; border-block-end: 1px solid var(--line); }
.footer__brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer__brand p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.footer__cta { display: flex; flex-direction: column; gap: 12px; }
.footer__cta-line { font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: var(--ink-2); font-weight: 600; font-size: .94rem; }
.footer__links a:hover { color: var(--indigo-600); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block-start: 24px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; }
.footer__credit { display: inline-flex; align-items: center; gap: 8px; }
.footer__credit a { display: inline-flex; align-items: center; gap: 6px; color: var(--indigo-600); font-weight: 600; }
.footer__credit a:hover { text-decoration: underline; }

.legal { padding-block: clamp(40px, 6vw, 72px) var(--space); }
.legal__wrap { max-width: 800px; margin-inline: auto; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--indigo-600); margin-bottom: 26px; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal .updated { color: var(--muted-2); font-size: .92rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-inline-start: 26px; margin-bottom: 16px; display: grid; gap: 8px; }
.legal a { color: var(--indigo-600); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }

.reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(20px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.zk-in .anim { opacity: 0; animation: rise .7s var(--ease) both; }
html.zk-in .anim-1 { animation-delay: .46s; }
html.zk-in .anim-2 { animation-delay: .54s; }
html.zk-in .anim-3 { animation-delay: .62s; }
html.zk-in .anim-4 { animation-delay: .70s; }
html.zk-in .anim-5 { animation-delay: .78s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
html.zk-in .js-slide-in { opacity: 0; animation: slideIn .6s var(--ease) 1s both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; gap: 22px; grid-auto-rows: max-content; align-content: center; background: radial-gradient(120% 80% at 50% 0%, #EEF0FF 0%, #FFFFFF 55%, #F5FBF8 100%); transition: opacity .55s ease, visibility 0s linear .55s; }
:root[data-theme="dark"] .preloader { background: radial-gradient(120% 80% at 50% 0%, #161628 0%, #0B0B14 60%, #0B0B14 100%); }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__stage { position: relative; width: 104px; height: 104px; display: grid; place-items: center; }
.preloader__ring { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(79,70,229,0) 0deg, #6366F1 70deg, #4F46E5 140deg, #0D9488 220deg, rgba(13,148,136,0) 300deg); -webkit-mask: radial-gradient(circle, transparent 42px, #000 44px, #000 50px, transparent 51px); mask: radial-gradient(circle, transparent 42px, #000 44px, #000 50px, transparent 51px); animation: zk-spin 1.4s linear infinite; filter: drop-shadow(0 8px 18px rgba(79,70,229,.25)); }
.preloader__logo { width: 72px; height: 72px; border-radius: 18px; box-shadow: 0 12px 32px rgba(79,70,229,.32), 0 2px 6px rgba(13,148,136,.18); animation: zk-pulse 1.8s ease-in-out infinite; background: #fff; position: relative; z-index: 1; }
.preloader__word { display: inline-flex; gap: 1px; font-family: var(--font); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; direction: ltr; unicode-bidi: isolate; }
.preloader__char { display: inline-block; background: linear-gradient(135deg, #4F46E5 0%, #6366F1 45%, #0D9488 100%); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .22; animation: zk-wave 1.4s ease-in-out infinite; }
.preloader__char:nth-child(1) { animation-delay: .00s; }
.preloader__char:nth-child(2) { animation-delay: .08s; }
.preloader__char:nth-child(3) { animation-delay: .16s; }
.preloader__char:nth-child(4) { animation-delay: .24s; }
.preloader__char:nth-child(5) { animation-delay: .32s; }
.preloader__char:nth-child(6) { animation-delay: .40s; }
.preloader__char:nth-child(7) { animation-delay: .48s; }
.preloader__bar { position: relative; width: 132px; height: 3px; border-radius: 999px; background: rgba(79,70,229,.12); overflow: hidden; }
.preloader__bar::after { content: ""; position: absolute; inset: 0; width: 42%; border-radius: inherit; background: linear-gradient(90deg, #4F46E5 0%, #0D9488 100%); animation: zk-slide 1.2s ease-in-out infinite; }
@keyframes zk-spin { to { transform: rotate(360deg); } }
@keyframes zk-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes zk-wave { 0%, 100% { opacity: .22; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes zk-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(260%); } }

html[lang="ar"] .hero__title,
html[lang="ar"] .section-title,
html[lang="ar"] .marquee__title,
html[lang="ar"] .hook__q,
html[lang="ar"] .promise__line,
html[lang="ar"] .cta__title,
html[lang="ar"] .stats__title,
html[lang="ar"] .feature-row__copy h3,
html[lang="ar"] .footer__cta-line { font-family: var(--font-ar-display); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.5; }
html[lang="ar"] .hero__title { line-height: 1.45; padding-block: .08em; }
html[lang="ar"] .hero__title .grad-text { line-height: 1.6; padding-block: .06em; }
html[lang="ar"] .section-title { line-height: 1.5; padding-block: .04em; }
html[lang="ar"] .hook__q { line-height: 1.55; padding-block: .04em; }
html[lang="ar"] .promise__line { line-height: 1.55; padding-block: .04em; }
html[lang="ar"] .cta__title { line-height: 1.5; padding-block: .04em; }
html[lang="ar"] .feature-row__copy h3 { line-height: 1.5; }
html[lang="ar"] body { line-height: 1.8; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__copy { max-width: 100%; align-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { min-height: 0; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .mobile-menu { display: block; }
  .nav__actions .btn--primary { display: none; }
  .scrolly__grid { grid-template-columns: 1fr; gap: 32px; }
  .scrolly__media { position: static; }
  .scrolly__steps { padding-block: 0; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--rev .feature-row__copy { order: 1; }
  .feature-row--rev .feature-row__media { order: 2; }
  .feature-row__copy { max-width: 100%; align-items: flex-start; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hero__title { font-size: clamp(1.55rem, 6.4vw, 2.1rem); }
  .device--hero { width: min(300px, 86vw); }
  .float-card--bell { inset-block-start: 6%; inset-inline-end: -6px; }
  .tst__grid { grid-template-columns: 1fr; }
  .compare__cell { padding: 13px 12px; font-size: .88rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .stats__grid { grid-template-columns: 1fr; }
  .compare__cell { gap: 5px; padding: 12px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .anim, .js-slide-in { opacity: 1; }
  .marquee__track { animation: none !important; }
  .scrolly__screen { opacity: 1; }
  .scrolly__screen:not(.is-active) { display: none; }
  .preloader__ring, .preloader__logo, .preloader__char, .preloader__bar::after { animation: none !important; }
  .preloader__char { opacity: 1; }
  .hero__mesh { animation: none !important; }
}
