/* ===== Suwaiat — brand site ===== */
:root {
  --purple: #7C3AED;
  --purple-2: #A855F7;
  --pink: #EC4899;
  --bg: #0A0612;
  --bg-2: #0D0920;
  --card: #130D24;
  --card-2: #1A1030;
  --border: #2D1F4E;
  --text: #F0EEFF;
  --muted: #8B7AB8;
  --success: #10B981;
  --grad: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,58,237,.14), rgba(236,72,153,.10));
  --shadow: 0 20px 60px -20px rgba(124, 58, 237, .45);
  --radius: 20px;
  --font-ar: 'Tajawal', -apple-system, 'Segoe UI', Tahoma, sans-serif;
  --font-en: 'Poppins', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(124,58,237,.25), transparent 60%),
              radial-gradient(900px 500px at 0% 10%, rgba(236,72,153,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
html[lang="en"] body { font-family: var(--font-en); line-height: 1.65; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92vw); margin-inline: auto; }
section { padding: 88px 0; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 6, 18, .72);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; }
.brand img { width: 38px; height: 38px; filter: drop-shadow(0 4px 10px rgba(236,72,153,.4)); }
.brand span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 12px; color: var(--muted);
  font-weight: 600; font-size: .95rem; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--card-2); }
.lang-btn {
  border: 1px solid var(--border); background: var(--card);
  color: var(--text); padding: 8px 14px; border-radius: 12px;
  font-weight: 700; cursor: pointer; font-size: .9rem; transition: .2s;
  font-family: inherit;
}
.lang-btn:hover { border-color: var(--purple); background: var(--card-2); }
.hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }
.hamburger svg { width: 26px; height: 26px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 14px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; font-family: inherit; transition: transform .18s, box-shadow .18s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 70px -18px rgba(236,72,153,.6); }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple); transform: translateY(-2px); }
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid #2a2a35; color: #fff;
  padding: 12px 22px; border-radius: 14px; transition: transform .18s, border-color .18s;
}
.btn-store:hover { transform: translateY(-2px); border-color: var(--purple); }
.btn-store svg { width: 26px; height: 26px; }
.btn-store .s1 { font-size: .68rem; color: #b9b9c4; line-height: 1; }
.btn-store .s2 { font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.btn-store .store-txt { display: flex; flex-direction: column; text-align: start; }

/* ===== Hero ===== */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-soft); border: 1px solid var(--border);
  color: var(--purple-2); padding: 7px 15px; border-radius: 999px;
  font-weight: 700; font-size: .85rem; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.2; font-weight: 800; letter-spacing: -.5px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: var(--muted); font-size: 1.18rem; margin: 20px 0 32px; max-width: 34ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* phone mockup */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::before {
  content: ""; position: absolute; inset: -10% -6%;
  background: radial-gradient(closest-side, rgba(124,58,237,.35), transparent 70%);
  filter: blur(20px); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: 280px; aspect-ratio: 9 / 19; border-radius: 42px;
  background: linear-gradient(160deg, #1A1030, #0D0920);
  border: 2px solid var(--border); padding: 14px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), inset 0 0 0 6px #000;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, rgba(124,58,237,.35), transparent 60%), #0A0612;
  display: flex; flex-direction: column; align-items: center; padding: 30px 18px; gap: 16px;
}
.phone-screen img.mascot { width: 120px; height: 120px; margin-top: 14px; filter: drop-shadow(0 10px 22px rgba(236,72,153,.45)); }
.phone-screen .app-title { font-weight: 800; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.phone-screen .app-sub { color: var(--muted); font-size: .8rem; text-align: center; }
.mini-card {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 11px 13px; display: flex; align-items: center; gap: 10px;
  font-size: .78rem; color: var(--text);
}
.mini-card .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 1rem; flex: none; }

/* ===== Section headings ===== */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sec-head .eyebrow { color: var(--pink); font-weight: 700; letter-spacing: 1px; font-size: .82rem; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin: 10px 0 12px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Feature cards ===== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--purple); }
.card .ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 18px;
}
.card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--grad); border-radius: 28px; padding: 56px 40px; text-align: center;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 12px 0 26px; font-size: 1.1rem; }
.cta-band .btn-store { background: rgba(0,0,0,.35); border-color: rgba(255,255,255,.25); }

/* ===== Prose (privacy / about) ===== */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; }
.prose .updated { color: var(--muted); font-size: .95rem; margin-bottom: 30px; }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 34px 0 12px; color: var(--purple-2); }
.prose p, .prose li { color: #C9BEE6; font-size: 1.02rem; }
.prose ul { margin: 12px 0; padding-inline-start: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--pink); font-weight: 600; }
.prose .box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px; margin: 20px 0;
}

/* ===== Contact ===== */
.contact-card {
  max-width: 560px; margin-inline: auto; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 34px; text-align: center;
}
.contact-row { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 1.15rem; font-weight: 600; margin-top: 18px; }
.contact-row a { color: var(--pink); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .brand { font-size: 1.1rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .95rem; }
.footer-links a:hover { color: var(--text); }
.footer .copy { color: var(--muted); font-size: .88rem; width: 100%; text-align: center; margin-top: 8px; }
.footer .copy a { color: var(--purple-2); font-weight: 600; }
.footer .copy a:hover { color: var(--pink); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  .phone-wrap { order: -1; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 12px 6vw 20px;
    gap: 4px; margin: 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .lang-btn { margin-inline-start: auto; }
  .hamburger { display: block; }
  section { padding: 60px 0; }
}
