:root {
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --teal-500: #14B8A6;
  --teal-600: #0D9488;
  --teal-700: #0F766E;

  --gold-300: #FCD34D;
  --gold-400: #FBBF24;
  --gold-500: #C8A951;
  --gold-600: #B8922E;

  --bg-0: #070B14;
  --bg-1: #0A0F1C;
  --bg-2: #0F172A;
  --bg-3: #1E293B;
  --bg-glass: rgba(30, 41, 59, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text-1: #F8FAFC;
  --text-2: #B4C0D3;
  --text-3: #7E8BA3;

  --glow-teal: 0 0 60px rgba(20, 184, 166, 0.35);
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --radius: 20px;
  --radius-sm: 14px;
  --maxw: 1180px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(20, 184, 166, 0.16), transparent 60%),
    radial-gradient(800px 600px at 95% 5%, rgba(200, 169, 81, 0.12), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(13, 148, 136, 0.14), transparent 60%),
    var(--bg-1);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

[dir="rtl"] body { font-family: "Noto Naskh Arabic", "Geeza Pro", var(--font); }
[dir="rtl"] .nav__links { flex-direction: row-reverse; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 15, 28, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10, 15, 28, 0.9); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.15rem; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--glow-teal);
  color: #fff;
}
.brand__mark svg { width: 22px; height: 22px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--text-2); font-size: 0.94rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--text-1); }

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-glass);
  color: var(--text-1);
  font-size: 0.86rem; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang__btn:hover { border-color: var(--teal-500); }
.lang__btn svg { width: 15px; height: 15px; opacity: 0.8; }
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 160px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 6px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px;
  background: none; border: none; cursor: pointer;
  color: var(--text-2); font-size: 0.9rem; font-weight: 500;
  border-radius: 9px; text-align: start;
  transition: background 0.15s, color 0.15s;
}
.lang__menu button:hover { background: rgba(255,255,255,0.05); color: var(--text-1); }
.lang__menu button.active { color: var(--teal-400); background: rgba(20,184,166,0.08); }
.lang__flag { font-size: 1.05rem; }

.nav__toggle { display: none; background: none; border: none; color: var(--text-1); cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: #04211d;
  box-shadow: 0 14px 34px -12px rgba(20, 184, 166, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(20, 184, 166, 0.85); }
.btn--ghost { background: var(--bg-glass); border-color: var(--border-strong); color: var(--text-1); }
.btn--ghost:hover { border-color: var(--teal-500); transform: translateY(-2px); }

.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  background: #000;
  border: 1px solid var(--border-strong);
  transition: transform 0.2s, border-color 0.2s;
  min-width: 188px;
}
.store-badge:hover { transform: translateY(-3px); border-color: var(--teal-500); }
.store-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-badge__txt { display: flex; flex-direction: column; line-height: 1.15; text-align: start; }
.store-badge__small { font-size: 0.68rem; color: var(--text-2); letter-spacing: 0.02em; }
.store-badge__big { font-size: 1.18rem; font-weight: 600; color: #fff; }

.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-glass);
  font-size: 0.82rem; font-weight: 600; color: var(--teal-300);
  margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 10px var(--teal-400); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(115deg, var(--teal-300), var(--gold-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.18rem; color: var(--text-2); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-direction: column; gap: 22px; }
.hero__rating { display: flex; align-items: center; gap: 10px; color: var(--text-3); font-size: 0.9rem; }
.hero__rating .stars { color: var(--gold-400); letter-spacing: 2px; }

.phone-stage { position: relative; display: grid; place-items: center; min-height: 540px; }
.phone-glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.45), transparent 65%);
  filter: blur(40px); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: 280px; height: 570px;
  border-radius: 44px;
  background: linear-gradient(160deg, #11182a, #060a14);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), inset 0 0 0 6px #05080f;
  padding: 14px;
  overflow: hidden;
}
.phone__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #05080f; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(140% 80% at 50% 0%, #123b39, transparent 60%),
    linear-gradient(180deg, #0c1322, #0a0f1c);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pp { padding: 46px 18px 18px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.pp__greet { font-size: 0.72rem; color: var(--gold-400); font-weight: 600; }
.pp__next { font-size: 1.5rem; font-weight: 800; }
.pp__sub { font-size: 0.7rem; color: var(--text-3); margin-top: -6px; }
.pp__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 14px;
}
.pp__row { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; padding: 7px 0; }
.pp__row + .pp__row { border-top: 1px solid var(--border); }
.pp__row .t { color: var(--text-2); }
.pp__row .v { color: var(--teal-300); font-weight: 700; }
.pp__row.active .t, .pp__row.active .v { color: var(--gold-300); }
.pp__bar { display: flex; gap: 7px; margin-top: auto; padding-top: 12px; }
.pp__chip { flex: 1; height: 46px; border-radius: 13px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: grid; place-items: center; font-size: 1.1rem; }
.pp__chip.on { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); border-color: transparent; }
.placeholder-note {
  position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-size: 0.6rem; color: rgba(255,255,255,0.25); letter-spacing: 0.04em;
}

.floaty {
  position: absolute; z-index: 2;
  background: var(--bg-glass);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600;
}
.floaty .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(20,184,166,0.18); color: var(--teal-300); }
.floaty--a { top: 60px; inset-inline-start: -6px; animation: float 6s ease-in-out infinite; }
.floaty--b { bottom: 110px; inset-inline-end: -10px; animation: float 7s ease-in-out infinite 1s; }
.floaty--c { bottom: 30px; inset-inline-start: 20px; animation: float 5.5s ease-in-out infinite 0.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

section { position: relative; }
.section { padding: 90px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head .eyebrow { margin-bottom: 18px; }
.section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 16px;
}
.section h2 .grad { background: linear-gradient(115deg, var(--teal-300), var(--gold-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section__head p { color: var(--text-2); font-size: 1.08rem; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: linear-gradient(180deg, rgba(30,41,59,0.6), rgba(15,23,42,0.35));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--teal-600); box-shadow: var(--shadow-card); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(20,184,166,0.22), rgba(200,169,81,0.12));
  border: 1px solid var(--border-strong);
  color: var(--teal-300);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 9px; font-weight: 700; }
.feature p { color: var(--text-2); font-size: 0.96rem; }

.shots { display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 24px; scroll-snap-type: x mandatory; }
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; }
.shot {
  flex: 0 0 auto; width: 240px; height: 500px;
  border-radius: 32px; scroll-snap-align: center;
  background: linear-gradient(165deg, #16233b, #0a0f1c);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--text-3); position: relative; overflow: hidden;
}
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(20,184,166,0.18), transparent 60%);
}
.shot .ph-ic { font-size: 2.4rem; }
.shot .ph-label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); z-index: 1; }
.shot .ph-hint { font-size: 0.68rem; z-index: 1; }

.privacy-band {
  background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(200,169,81,0.06));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
}
.privacy-band .grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 36px; }
.privacy-item { display: flex; gap: 14px; }
.privacy-item .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(20,184,166,0.16); color: var(--teal-300); }
.privacy-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.privacy-item p { color: var(--text-2); font-size: 0.9rem; }

.cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 64px 32px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, rgba(20,184,166,0.3), transparent 60%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { margin-bottom: 14px; }
.cta-card p { color: var(--text-2); max-width: 520px; margin: 0 auto 30px; }
.cta-card .stores { justify-content: center; }

.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__about { color: var(--text-2); font-size: 0.94rem; max-width: 340px; margin-top: 14px; }
.footer h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { color: var(--text-2); font-size: 0.94rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--teal-300); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-3); font-size: 0.86rem; }

.legal-hero { padding: 70px 0 30px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal-hero .updated { color: var(--text-3); font-size: 0.9rem; }
.legal-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 48px; padding-bottom: 100px; align-items: start; }
.legal-toc {
  position: sticky; top: 92px;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.legal-toc h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 14px; }
.legal-toc ul li { margin-bottom: 9px; }
.legal-toc a { color: var(--text-2); font-size: 0.9rem; transition: color 0.2s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--teal-300); }
.legal-body { max-width: 760px; }
.legal-body section { margin-bottom: 42px; scroll-margin-top: 90px; }
.legal-body h2 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-body h3 { font-size: 1.08rem; font-weight: 700; margin: 22px 0 8px; color: var(--text-1); }
.legal-body p { color: var(--text-2); margin-bottom: 14px; }
.legal-body ul.bullets { list-style: none; margin: 0 0 16px; padding: 0; }
.legal-body ul.bullets li { position: relative; padding-inline-start: 22px; margin-bottom: 10px; color: var(--text-2); }
.legal-body ul.bullets li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400);
}
.legal-body a.inline { color: var(--teal-300); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--text-1); }
.data-table {
  width: 100%; border-collapse: collapse; margin: 8px 0 18px;
  font-size: 0.92rem; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.data-table th, .data-table td { text-align: start; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.data-table th { background: rgba(255,255,255,0.04); color: var(--text-1); font-weight: 600; }
.data-table td { color: var(--text-2); }
.data-table tr:last-child td { border-bottom: none; }
.callout {
  background: rgba(20,184,166,0.08); border: 1px solid rgba(20,184,166,0.25);
  border-radius: 14px; padding: 16px 18px; margin: 0 0 18px;
  color: var(--text-2); font-size: 0.94rem;
}
.callout strong { color: var(--teal-300); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .phone-stage { order: -1; min-height: 480px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .privacy-band .grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 70px; inset-inline: 12px;
    background: var(--bg-3); border: 1px solid var(--border-strong);
    border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-card);
  }
  .nav__links.open a { padding: 10px; border-radius: 10px; }
  .nav__links.open a:hover { background: rgba(255,255,255,0.05); }
  .nav__toggle { display: grid; place-items: center; }
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .privacy-band, .cta-card { padding: 36px 22px; }
  .section { padding: 64px 0; }
  .store-badge { flex: 1; min-width: 0; }
}

.brand__mark { overflow: hidden; background: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.feature__icon svg, .privacy-item .ic svg, .floaty .ic svg, .pp__chip svg, .shot .ph-ic svg { stroke: currentColor; fill: none; }
.floaty .ic svg { width: 18px; height: 18px; }
.pp__chip svg { width: 22px; height: 22px; }
.pp__chip { color: var(--text-3); }
.pp__chip.on { color: #fff; }
.shot .ph-ic { color: var(--teal-300); }
.shot .ph-ic svg { width: 40px; height: 40px; }
.legal-body .updated { color: var(--text-3); font-size: 0.88rem; margin-bottom: 26px; }
