:root {
  --green:    #58CC02;
  --green-2:  #46A302;
  --green-3:  #B0E97A;
  --orange:   #FF9600;
  --sky:      #1CB0F6;
  --purple:   #CE82FF;
  --red:      #FF4B4B;

  --bg-0:     #0E1A0C;
  --bg-1:     #14241A;
  --bg-2:     #1F2A1A;
  --bg-3:     #243524;
  --line:     rgba(255,255,255,.10);
  --line-2:   rgba(255,255,255,.06);

  --text:     #FFFFFF;
  --text-2:   rgba(255,255,255,.78);
  --text-3:   rgba(255,255,255,.55);
  --text-4:   rgba(255,255,255,.38);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-glow: 0 0 0 1px rgba(255,255,255,.04), 0 30px 80px -30px rgba(88,204,2,.25);

  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  margin: 0; padding: 0;
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}
@supports (overflow-x: clip) {
  html { overflow-x: clip; }
  body { overflow-x: clip; }
}
/* The skip-link's classic `left: -9999px` trick can extend the canvas in some
   mobile browsers when combined with RTL. Use clip-path instead. */
.skip-link {
  position: absolute; inset: 0 auto auto 0;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  white-space: nowrap; overflow: hidden;
}
.skip-link:focus {
  inset-inline-start: 16px; top: 16px;
  width: auto; height: auto;
  clip-path: none;
  z-index: 100;
  background: var(--green); color: #0E1A0C;
  padding: 10px 14px; border-radius: 8px;
  font-weight: 700;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-1);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
/* Prevent grid/flex children from blowing out their containers,
   which RTL Arabic + Kurdish without breakable spaces can trigger on mobile. */
.hero-grid > *,
.circle-grid > *,
.features-grid > *,
.steps > *,
.price-grid > *,
.foot > *,
.contact-grid > *,
.values-grid > *,
.stats > * { min-width: 0; }
h1, h2, h3, p, li, a { overflow-wrap: anywhere; word-break: break-word; }
html[lang="ar"] body, html[lang="ckb"] body { font-family: var(--font-ar); letter-spacing: 0; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Ambient background ===== */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 12% -10%, rgba(88,204,2,.18), transparent 60%),
    radial-gradient(700px 500px at 95% 20%, rgba(176,233,122,.10), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(88,204,2,.16), transparent 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
/* Disable the mask grid + simplify gradients on mobile — heavy paint on low-end phones */
@media (max-width: 720px) {
  body::after { display: none; }
  body::before {
    background:
      radial-gradient(700px 500px at 50% -10%, rgba(88,204,2,.14), transparent 60%),
      radial-gradient(600px 500px at 50% 110%, rgba(88,204,2,.12), transparent 60%);
  }
}

main, header, footer, section { position: relative; z-index: 1; }
/* Below-fold sections render lazily — huge mobile perf win */
section { content-visibility: auto; contain-intrinsic-size: 1px 800px; }
.hero, header.site, footer.site { content-visibility: visible; }

/* ===== Layout ===== */
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
section { padding-block: 96px; }
@media (max-width: 720px) { section { padding-block: 64px; } }
/* skip-link styles consolidated above to avoid the `left: -9999px` overflow trap. */

/* ===== Type ===== */
h1, h2, h3, h4 { color: var(--text); margin: 0; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(34px, 4.6vw, 58px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
p  { margin: 0; color: var(--text-2); text-wrap: pretty; }

html[lang="ar"] h1, html[lang="ckb"] h1,
html[lang="ar"] h2, html[lang="ckb"] h2,
html[lang="ar"] h3, html[lang="ckb"] h3 {
  letter-spacing: 0; line-height: 1.25;
}
html[lang="ar"] h4, html[lang="ckb"] h4 { letter-spacing: 0; text-transform: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: var(--green-3); text-transform: uppercase;
  background: rgba(88,204,2,.12);
  border: 1px solid rgba(88,204,2,.22);
  padding: 6px 12px; border-radius: 999px;
  max-width: 100%;
}
/* Long Arabic / Kurdish eyebrow text must wrap on mobile, otherwise it pushes the page wider than the viewport. */
@media (max-width: 720px) {
  .eyebrow { font-size: 11px; padding: 5px 10px; line-height: 1.4; }
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 0 rgba(88,204,2,.6);
  animation: ebpulse 2s ease-out infinite;
}
@keyframes ebpulse {
  0%   { box-shadow: 0 0 0 0 rgba(88,204,2,.6); }
  100% { box-shadow: 0 0 0 8px rgba(88,204,2,0); }
}
html[lang="ar"] .eyebrow, html[lang="ckb"] .eyebrow { letter-spacing: 0; text-transform: none; }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { margin-top: 16px; font-size: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 22px;
  border-radius: 14px; border: 0;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #0E1A0C;
  box-shadow: 0 0 0 1px rgba(88,204,2,.5), 0 12px 30px -8px rgba(88,204,2,.55);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,.07); }

.play-badge {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px 0 18px;
  background: #fff; color: #0E1A0C;
  border-radius: 14px;
  text-align: start;
  transition: transform .12s ease;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.35);
}
.play-badge:hover { transform: translateY(-1px); }
.play-badge .pb-mark { width: 32px; height: 32px; flex: 0 0 auto; object-fit: contain; }
.play-badge .pb-text { line-height: 1.1; }
.play-badge .pb-top { font-size: 11px; opacity: .65; letter-spacing: .04em; font-weight: 600; }
.play-badge .pb-store { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
html[dir="rtl"] .play-badge .pb-text { text-align: end; }

/* ===== Header ===== */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,26,12,.85);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  /* Force its own GPU layer — fixes RTL + sticky + backdrop-filter glitches in iOS Safari */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
/* Disable backdrop-filter on small screens for paint perf */
@media (max-width: 640px) {
  header.site {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14,26,12,.96);
  }
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; position: relative; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav .links {
  display: flex; gap: 28px; margin-inline-start: 16px;
  font-size: 14.5px; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
}
.nav .links a {
  position: relative; padding: 4px 0;
  transition: color .12s ease;
}
.nav .links a:hover { color: var(--text); }
.nav .links a.is-active { color: var(--green-3); }
.nav .links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--green); border-radius: 2px;
  box-shadow: 0 0 8px var(--green);
}
.nav .spacer { flex: 1; }
.nav .right { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex; align-items: center; gap: 4px;
  height: 38px; padding: 0 8px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.lang svg { color: var(--text-3); }
.lang button {
  border: 0; background: transparent; padding: 4px 10px;
  border-radius: 999px; font-weight: 600; color: var(--text-3);
  font-size: 12.5px;
}
.lang button.on { background: var(--green); color: #0E1A0C; }
html[lang="ar"] .lang button[data-lang="ar"],
html[lang="ckb"] .lang button[data-lang="ckb"] { font-size: 13.5px; }

.play-mini {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 14px 0 12px;
  background: var(--green); color: #0E1A0C;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; flex: 0 0 auto;
  box-shadow: 0 8px 24px -6px rgba(88,204,2,.5);
}
.play-mini svg { width: 14px; height: 16px; }

/* ===== Mobile nav (hamburger) ===== */
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: var(--text);
  align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .bar-x { display: none; }
.nav-toggle[aria-expanded="true"] .bar-burger { display: none; }
.nav-toggle[aria-expanded="true"] .bar-x { display: block; }

@media (max-width: 980px) {
  .nav .links {
    display: none;
    position: absolute; top: 100%; inset-inline: 0;
    flex-direction: column; gap: 0;
    margin: 0;
    padding: 12px;
    background: rgba(14,26,12,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,.4);
  }
  .nav .links.is-open { display: flex; }
  .nav .links a { padding: 12px 14px; border-radius: 10px; font-size: 15px; }
  .nav .links a:hover { background: rgba(255,255,255,.04); }
  .nav .links a.is-active::after { display: none; }
  .nav .links a.is-active { background: rgba(88,204,2,.12); }
  .nav-toggle { display: inline-flex; }
  .nav { gap: 16px; }
}
/* Below 760px we drop the play-mini button + brand text + globe icon. The
   language switcher displays full Arabic/Kurdish words and that, plus the
   logo + hamburger, is already enough to fill a 360px phone width. */
@media (max-width: 760px) {
  .play-mini { display: none; }
  .nav { gap: 10px; }
  .lang svg { display: none; }
  .lang { padding: 3px; gap: 4px; }
  .lang button { padding: 4px 9px; font-size: 12px; }
  .brand span { display: none; }   /* logo-only on phone */
}
@media (max-width: 380px) {
  .lang { gap: 3px; padding: 2px; }
  .lang button { padding: 3px 7px; font-size: 11.5px; }
}
/* Make sure header itself never grows wider than the viewport */
header.site .nav { min-width: 0; flex-wrap: nowrap; }
header.site .brand { min-width: 0; flex: 0 0 auto; }
header.site .right { min-width: 0; flex-shrink: 1; }
header.site .nav-toggle { flex-shrink: 0; }
.lang button { white-space: nowrap; }

/* ===== Footer ===== */
footer.site {
  border-top: 1px solid var(--line);
  padding-block: 56px 32px;
  background: rgba(14,26,12,.4);
}
.foot { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 800px) { .foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot { grid-template-columns: 1fr; } }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--text-2); }
.foot a:hover { color: var(--text); }
.foot .blurb { color: var(--text-3); font-size: 14px; max-width: 320px; margin-top: 14px; }
.foot-bottom {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-4);
  flex-wrap: wrap; gap: 12px;
}

/* ===== Generic glow card ===== */
.glow-card {
  background: linear-gradient(180deg, rgba(31,42,26,.85), rgba(20,36,26,.85));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.glow-card::before {
  content: ""; position: absolute;
  top: -30%; right: -10%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(88,204,2,.4), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
html[dir="rtl"] .glow-card::before { right: auto; left: -10%; }

/* ===== Sub-page hero ===== */
.subhero {
  padding-block: 120px 64px;
  text-align: center;
  position: relative;
}
.subhero .eyebrow { margin-bottom: 24px; }
.subhero h1 { font-size: clamp(42px, 5.4vw, 64px); }
.subhero p { margin: 22px auto 0; max-width: 640px; font-size: 19px; color: var(--text-2); }

/* ===== Article (privacy / terms) ===== */
.article { max-width: 820px; margin-inline: auto; }
.article .toc {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.article .toc h4 { margin: 0 0 10px; }
.article .toc ol {
  margin: 0; padding-inline-start: 18px;
  display: grid; gap: 6px;
  color: var(--text-2); font-size: 14px;
}
.article .toc a:hover { color: var(--green-3); }
.article section.block { padding-block: 32px; border-top: 1px solid var(--line); }
.article section.block:first-of-type { border-top: 0; }
.article section.block h2 { font-size: 26px; margin-bottom: 14px; }
.article section.block .num {
  display: inline-block; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(88,204,2,.15);
  color: var(--green-3); font-weight: 700; font-size: 14px;
  text-align: center; line-height: 32px;
  margin-inline-end: 10px;
}
.article p + p { margin-top: 12px; }
.article ul.bullets {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 10px;
}
.article ul.bullets li {
  display: flex; gap: 12px; color: var(--text-2); font-size: 15px;
}
.article ul.bullets li::before {
  content: ""; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-top: 9px;
}

/* ============================================================
   Index page
   ============================================================ */

/* ===== Hero ===== */
.hero { padding-block: 100px 120px; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 .accent {
  display: block; margin-top: 12px;
  background: linear-gradient(180deg, #B0E97A 0%, #58CC02 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { margin-top: 22px; font-size: 19px; max-width: 540px; color: var(--text-2); }
.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .trust {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px; color: var(--text-3); font-size: 13.5px; font-weight: 500;
  flex-wrap: wrap;
}
.hero .trust .stars { color: var(--orange); letter-spacing: 2px; font-size: 16px; }
.hero .trust .sep { width: 1px; height: 16px; background: var(--line); }

/* ===== Phone mockup ===== */
.phone-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
}
.phone-stage::before {
  content: ""; position: absolute; inset: 5% 0;
  background: radial-gradient(closest-side, rgba(88,204,2,.35), transparent 70%);
  filter: blur(20px); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: min(330px, 78%);
  aspect-ratio: 9 / 19;
  background: #0A0A0A;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 2px #1a1a1a;
  transform: rotate(-3deg);
  will-change: transform;
}
html[dir="rtl"] .phone { transform: rotate(3deg); }
@media (max-width: 520px) {
  .phone { transform: none; width: min(290px, 90%); }
  html[dir="rtl"] .phone { transform: none; }
}
.phone .screen {
  position: relative;
  width: 100%; height: 100%;
  background: #14241A;
  border-radius: 32px;
  overflow: hidden;
}
.notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #000; border-radius: 999px; z-index: 5;
}
.pstatus {
  position: absolute; top: 14px; left: 22px; right: 22px;
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 700; color: #fff; z-index: 4;
}
.pstatus .icons { display: flex; gap: 4px; align-items: center; }

.map {
  position: absolute; inset: 44px 0 88px 0;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(255,255,255,.06) 38% 41%, transparent 41% 100%),
    linear-gradient(180deg, transparent 0 28%, rgba(255,255,255,.06) 28% 30.5%, transparent 30.5% 62%, rgba(255,255,255,.06) 62% 64.5%, transparent 64.5% 100%),
    radial-gradient(80px 50px at 78% 80%, rgba(88,204,2,.18) 0 70%, transparent 71%),
    radial-gradient(60px 40px at 18% 70%, rgba(88,204,2,.18) 0 70%, transparent 71%),
    radial-gradient(120px 80px at 15% 18%, rgba(28,176,246,.18) 0 60%, transparent 62%),
    #0E1A0C;
}
.map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.ring {
  position: absolute; left: 50%; top: 56%;
  width: 120px; height: 120px; transform: translate(-50%,-50%);
  border-radius: 999px;
  border: 2px solid rgba(88,204,2,.6);
  background: rgba(88,204,2,.10);
}
.ring::after {
  content: ""; position: absolute; inset: -2px;
  border-radius: 999px;
  border: 2px solid rgba(88,204,2,.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

.pin { position: absolute; width: 44px; height: 44px;
  transform: translate(-50%, -100%); z-index: 3;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.4));
}
.pin .bub {
  width: 44px; height: 44px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  border: 3px solid #fff;
}
.pin .bub > span { transform: rotate(45deg); }
.pin.you  .bub { background: var(--green); }
.pin.kid1 .bub { background: var(--sky); }
.pin.kid2 .bub { background: var(--purple); }
.pin.you  { left: 50%; top: 56%; }
.pin.kid1 { left: 26%; top: 38%; animation: drift1 7s ease-in-out infinite; will-change: transform; }
.pin.kid2 { left: 76%; top: 64%; animation: drift2 8s ease-in-out infinite; will-change: transform; }
/* Animate via translate() instead of left/top — GPU-accelerated, no layout
   thrashing on every frame, smooth on mobile. */
@keyframes drift1 {
  0%, 100% { transform: translate(-50%, -100%); }
  50%      { transform: translate(calc(-50% + 18px), calc(-100% - 30px)); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(-50%, -100%); }
  50%      { transform: translate(calc(-50% - 22px), calc(-100% + 28px)); }
}
@media (max-width: 720px) {
  .pin.kid1, .pin.kid2 { animation: none; }
}

.live {
  position: absolute; top: 56px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(14,26,12,.85);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; color: #fff;
  z-index: 4;
}
.live .ldot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--red);
  animation: livepulse 1.6s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(255,75,75,.6); }
  100% { box-shadow: 0 0 0 10px rgba(255,75,75,0); }
}

.pcard {
  position: absolute; left: 12px; right: 12px; bottom: 14px;
  background: rgba(20,36,26,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 12px 12px 10px; z-index: 4; color: #fff;
}
.pcard .head {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px;
}
.pcard .head span { white-space: nowrap; }
.pcard .row { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.pcard .row + .row { border-top: 1px solid rgba(255,255,255,.06); }
.pcard .row > div:nth-child(2) { min-width: 0; flex: 1; }
.pcard .av {
  width: 24px; height: 24px; border-radius: 50%;
  color: #fff; font-size: 10px; font-weight: 800;
  display: grid; place-items: center; flex: 0 0 auto;
}
.pcard .av.a { background: var(--sky); }
.pcard .av.b { background: var(--purple); }
.pcard .av.c { background: var(--green); }
.pcard .name { font-size: 12.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard .meta { font-size: 10.5px; color: rgba(255,255,255,.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard .col-r { margin-inline-start: auto; display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.batt { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.7); white-space: nowrap; }
.batt .b { width: 18px; height: 9px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 2px; position: relative; }
.batt .b::after { content:""; position: absolute; right:-3px; top:1.5px; width:2px; height:4px; background: rgba(255,255,255,.5); border-radius:1px; }
.batt .b i { display: block; height: 100%; background: var(--green); border-radius:1px; }
.batt.low .b i { background: var(--orange); }

.chip-float {
  position: absolute; z-index: 2;
  background: rgba(31,42,26,.92);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: #fff;
}
.chip-float .ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.chip-float small { display: block; font-weight: 500; color: rgba(255,255,255,.55); font-size: 11px; }
.chip-1 { top: 10%; inset-inline-start: 2%; animation: float 5s ease-in-out infinite; }
.chip-2 { bottom: 16%; inset-inline-end: 0%; animation: float 5.6s ease-in-out infinite reverse; }
.chip-3 { top: 44%; inset-inline-end: -2%; animation: float 6.4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (max-width: 640px) { .chip-float { display: none; } }

/* ===== Three Circles ===== */
.circle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 940px) { .circle-grid { grid-template-columns: 1fr; } }

.circle-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(31,42,26,.85), rgba(20,36,26,.85));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.circle-card:hover { transform: translateY(-4px); border-color: rgba(88,204,2,.35); }
.circle-card::before {
  content: ""; position: absolute; top: -60%; right: -30%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(88,204,2,.25), transparent 70%);
  filter: blur(8px); pointer-events: none; opacity: 0; transition: opacity .3s ease;
}
.circle-card:hover::before { opacity: 1; }
.circle-card .illus {
  aspect-ratio: 5 / 3.4;
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  overflow: hidden; position: relative;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line-2);
}
.circle-card h3 { font-size: 22px; }
.circle-card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px; align-self: flex-start;
  background: rgba(88,204,2,.14); color: var(--green-3);
}
html[lang="ar"] .circle-card .tag, html[lang="ckb"] .circle-card .tag { letter-spacing: 0; text-transform: none; }
.circle-card p { font-size: 14.5px; margin-top: 10px; color: var(--text-2); }
.circle-card ul {
  list-style: none; margin: 18px 0 0; padding: 0;
  border-top: 1px solid var(--line-2); padding-top: 14px;
  display: grid; gap: 8px;
}
.circle-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.circle-card li .ck {
  width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center; color: #0E1A0C;
  font-size: 10px; font-weight: 800; flex: 0 0 auto;
  background: var(--green);
}

/* ===== Features ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 940px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: linear-gradient(180deg, rgba(31,42,26,.7), rgba(20,36,26,.7));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-2px); border-color: rgba(88,204,2,.3); }
.feature .ficon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  color: var(--green); margin-bottom: 18px;
  background: rgba(88,204,2,.12);
  border: 1px solid rgba(88,204,2,.22);
}
.feature h3 { font-size: 17px; }
.feature p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--text-2); }

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: linear-gradient(180deg, rgba(31,42,26,.7), rgba(20,36,26,.7));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
}
.step .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #0E1A0C;
  font-weight: 800; font-size: 18px;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(88,204,2,.5);
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; }
.step p { margin-top: 8px; font-size: 14.5px; color: var(--text-2); }

/* ===== Privacy callout ===== */
.privacy-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.privacy-card h2 { color: #fff; }
.privacy-card p { color: var(--text-2); font-size: 17px; margin-top: 14px; max-width: 520px; }
.privacy-card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(88,204,2,.18); color: var(--green-3);
  margin-bottom: 18px;
}
html[lang="ar"] .privacy-card .tag, html[lang="ckb"] .privacy-card .tag { letter-spacing: 0; text-transform: none; }
.privacy-list {
  display: grid; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative; z-index: 1;
}
.privacy-list .pi { display: flex; gap: 14px; align-items: flex-start; }
.privacy-list .pi .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex: 0 0 auto;
  background: rgba(88,204,2,.18); color: var(--green-3);
}
.privacy-list .pi b { color: #fff; font-size: 15px; }
.privacy-list .pi span { display: block; color: var(--text-2); font-size: 13.5px; margin-top: 2px; }
@media (max-width: 880px) { .privacy-card { grid-template-columns: 1fr; padding: 40px 28px; } }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin-inline: auto; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.plan {
  background: linear-gradient(180deg, rgba(31,42,26,.85), rgba(20,36,26,.85));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 30px;
  position: relative; display: flex; flex-direction: column;
}
.plan.pro {
  border: 1px solid rgba(88,204,2,.45);
  box-shadow: var(--shadow-glow);
}
.plan .pname { font-size: 13px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
html[lang="ar"] .plan .pname, html[lang="ckb"] .plan .pname { letter-spacing: 0; text-transform: none; }
.plan .price { margin-top: 8px; font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.plan .price small { font-size: 16px; color: var(--text-3); font-weight: 600; }
.plan .desc { margin-top: 6px; font-size: 14.5px; color: var(--text-2); }
.plan ul { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); }
.plan li .ck {
  width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  color: #0E1A0C; font-size: 11px; font-weight: 800; margin-top: 1px;
  background: var(--green);
}
.plan.free li .ck { background: rgba(255,255,255,.18); color: #fff; }
.plan .pop {
  position: absolute; top: -12px; inset-inline-end: 24px;
  background: var(--green); color: #0E1A0C;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
}
html[lang="ar"] .plan .pop, html[lang="ckb"] .plan .pop { letter-spacing: 0; }

/* ===== Big CTA ===== */
.cta { padding-block: 110px; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 360px at 50% 50%, rgba(88,204,2,.22), transparent 60%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(34px, 4.4vw, 56px); }
.cta p  { font-size: 18px; max-width: 540px; margin: 18px auto 32px; color: var(--text-2); }
.cta .row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   About page
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  background: linear-gradient(180deg, rgba(31,42,26,.7), rgba(20,36,26,.7));
  border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px;
  position: relative; overflow: hidden;
}
.value .vicon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(88,204,2,.14); color: var(--green-3);
  border: 1px solid rgba(88,204,2,.22);
  margin-bottom: 18px;
}
.value h3 { font-size: 18px; }
.value p { margin-top: 8px; font-size: 14.5px; color: var(--text-2); }

.bigquote {
  margin-top: 80px;
  padding: 56px 48px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(31,42,26,.85), rgba(20,36,26,.85));
  border: 1px solid var(--line);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.bigquote::before {
  content: '"'; position: absolute; top: -40px; left: 30px;
  font-family: serif; font-size: 240px; color: rgba(88,204,2,.18);
  line-height: 1;
}
.bigquote q {
  quotes: none; display: block;
  font-size: clamp(22px,3vw,32px); font-weight: 600; color: #fff;
  max-width: 720px; margin-inline: auto;
  letter-spacing: -0.01em; line-height: 1.3;
}
.bigquote .who { margin-top: 24px; font-size: 14px; color: var(--text-3); }
.bigquote .who b { color: var(--green-3); font-weight: 600; }

.stats {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.stat b { display: block; font-size: 36px; font-weight: 700; color: var(--green-3); letter-spacing: -0.02em; }
.stat span { font-size: 13px; color: var(--text-3); margin-top: 6px; display: block; }

.about-cta { margin-top: 80px; text-align: center; }
.about-cta h2 { font-size: clamp(28px,3.4vw,40px); }
.about-cta p { font-size: 17px; margin-top: 14px; max-width: 520px; margin-inline: auto; }
.about-cta .row { margin-top: 28px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 980px; margin-inline: auto;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.channels { display: grid; gap: 14px; }
.channel {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: linear-gradient(180deg, rgba(31,42,26,.7), rgba(20,36,26,.7));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .18s ease, transform .18s ease;
}
.channel:hover { border-color: rgba(88,204,2,.35); transform: translateY(-2px); }
.channel .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(88,204,2,.14); color: var(--green-3);
  border: 1px solid rgba(88,204,2,.22);
  display: grid; place-items: center; flex: 0 0 auto;
}
.channel h3 { font-size: 16px; }
.channel p { font-size: 13.5px; color: var(--text-3); margin-top: 4px; }
.channel .lk { color: var(--green-3); font-weight: 600; font-size: 14px; margin-top: 8px; display: inline-block; }

/* mailto card (replaces form) */
.mail-card {
  padding: 40px 36px;
  background: linear-gradient(180deg, rgba(31,42,26,.85), rgba(20,36,26,.85));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.mail-card::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(88,204,2,.3), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
html[dir="rtl"] .mail-card::before { right: auto; left: -20%; }
.mail-card > * { position: relative; z-index: 1; }
.mail-card h3 { font-size: 22px; }
.mail-card .sub { color: var(--text-2); font-size: 15px; margin-top: 4px; }
.mail-card .actions { margin-top: 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.mail-card .alt {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--text-3);
}
.mail-card .alt a { color: var(--green-3); font-weight: 600; }
.mail-card .alt a:hover { text-decoration: underline; }

/* ============================================================
   404 page
   ============================================================ */
.notfound {
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center;
  padding-block: 80px;
}
.notfound .big {
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  background: linear-gradient(180deg, #B0E97A 0%, #58CC02 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.notfound .row { margin-top: 28px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
