/* =========================================================================
   In & Out — public site
   Design language follows the app and the store artwork: deep navy ground,
   cream display type, teal primary, crimson accent. Sora for display,
   Noto Sans for English body, Noto Kufi Arabic for Arabic.
   ========================================================================= */

:root {
  color-scheme: light;

  --navy: #0a1a24;
  --navy-2: #12303f;
  --cream: #f6f3ec;
  --cyan: #1ecbe1;
  --crimson: #ef0044;

  --brand: #077a8c;
  --brand-ink: #055f6e;
  --brand-soft: #e0f1f5;

  --ink: #0c2029;
  --ink-2: #234352;
  --muted: #5d7c8b;
  --canvas: #f3f7f9;
  --surface: #ffffff;
  --surface-2: #eaf2f5;
  --line: #dae7ed;
  --line-strong: #c3d7e0;

  --shadow-sm: 0 1px 2px rgba(10, 26, 36, .05), 0 4px 12px -6px rgba(10, 26, 36, .1);
  --shadow: 0 2px 4px rgba(10, 26, 36, .04), 0 18px 40px -24px rgba(10, 26, 36, .28);
  --shadow-lg: 0 40px 80px -40px rgba(10, 26, 36, .45);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --maxw: 1220px;
  --gutter: clamp(16px, 4vw, 32px);
  --bar-h: 72px;
}

body.body--dark {
  color-scheme: dark;
  --brand: #4ad3e4;
  --brand-ink: #8ceaf5;
  --brand-soft: #17414f;
  --ink: #e9f3f7;
  --ink-2: #c3d9e2;
  --muted: #93aebc;
  --canvas: #08151d;
  --surface: #0f2634;
  --surface-2: #14303f;
  --line: #21404f;
  --line-strong: #2e5364;
  --crimson: #ff6b93;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 40px -24px rgba(0, 0, 0, .8);
  --shadow-lg: 0 40px 80px -40px rgba(0, 0, 0, .9);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 74px); }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Noto Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.72;
  letter-spacing: -.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lang-ar { font-family: 'Noto Kufi Arabic', 'Noto Sans', system-ui, sans-serif; line-height: 2; letter-spacing: 0; }
body.lang-ar .display { font-family: 'Noto Kufi Arabic', sans-serif; }

[v-cloak] { visibility: hidden; }

img { max-width: 100%; }

::selection { background: var(--cyan); color: #05131b; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

.q-layout, .q-page-container { background: var(--canvas); }

.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 9000;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-weight: 700; text-decoration: none; transition: top .18s;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------- header */

.site-bar {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.site-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: var(--bar-h);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; min-width: 0; }
.brand img { width: 32px; height: 32px; display: block; flex: 0 0 auto; }

.wordmark {
  font-family: 'Sora', 'Noto Sans', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -.02em; white-space: nowrap;
}
.wordmark .amp { color: var(--crimson); }

.bar-spacer { flex: 1 1 auto; }

.bar-btn { color: var(--muted) !important; font-weight: 600; font-size: 12.5px; border-radius: 999px !important; }
.bar-btn:hover { color: var(--ink) !important; }

.site-nav { border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.site-nav::-webkit-scrollbar { display: none; }

.site-nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: flex; gap: 4px; width: max-content; min-width: 100%;
}

.nav-link {
  position: relative; padding: 10px 10px 11px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); text-decoration: none; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; inset-inline: 10px; bottom: 0; height: 2.5px;
  border-radius: 3px; background: transparent; transition: background .16s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--brand-ink); }
.nav-link.active::after { background: var(--brand); }
body.body--dark .nav-link.active { color: var(--brand); }

/* ------------------------------------------------------------ page shell */

.site-page { padding: 0 0 clamp(48px, 7vw, 88px); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.page-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); align-items: start; }
@media (min-width: 1060px) {
  .page-grid.has-toc { grid-template-columns: 232px minmax(0, 1fr); }
}

.doc { max-width: 74ch; padding-top: clamp(26px, 4vw, 44px); }


/* ------------------------------------------------------------- typography */

.display { font-family: 'Sora', 'Noto Sans', sans-serif; letter-spacing: -.028em; }

.doc h1 {
  font-family: 'Sora', 'Noto Sans', sans-serif;
  font-size: clamp(2rem, 1.45rem + 2.3vw, 3rem);
  line-height: 1.14; font-weight: 700; letter-spacing: -.03em;
  margin: 0 0 10px; text-wrap: balance;
}
.doc[lang='ar'] h1 { font-family: 'Noto Kufi Arabic', sans-serif; letter-spacing: 0; line-height: 1.35; }

.doc h2 {
  font-size: clamp(1.2rem, 1.06rem + .5vw, 1.45rem);
  font-weight: 700; line-height: 1.35; letter-spacing: -.02em;
  margin: 46px 0 12px; padding-top: 22px; border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--bar-h) + 70px);
}
.doc[lang='ar'] h2 { letter-spacing: 0; }

.doc h3 { font-size: 1.04rem; font-weight: 700; margin: 26px 0 6px; color: var(--brand-ink); }
body.body--dark .doc h3 { color: var(--brand); }

.doc p { margin: 0 0 15px; }
.doc ul, .doc ol { margin: 0 0 18px; padding-inline-start: 24px; }
.doc li { margin-bottom: 9px; }
.doc li::marker { color: var(--brand); }

.doc a {
  color: var(--brand-ink); font-weight: 600; text-decoration: none;
  box-shadow: inset 0 -1.5px 0 color-mix(in srgb, var(--brand) 45%, transparent);
  transition: box-shadow .16s, color .16s;
}
.doc a:hover { color: var(--brand); box-shadow: inset 0 -2.5px 0 var(--brand); }
body.body--dark .doc a { color: var(--brand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800;
  color: var(--brand); margin: 0 0 12px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--crimson); }
.doc[lang='ar'] .eyebrow { letter-spacing: 0; text-transform: none; font-size: 12.5px; }

.lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.17rem); color: var(--ink-2); margin: 0 0 14px; max-width: 62ch; }
.stamp { font-size: 13px; color: var(--muted); margin: 0 0 30px; }

/* ------------------------------------------------------------------- hero */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: clamp(18px, 3vw, 30px);
  border-radius: var(--radius-lg);
  background: radial-gradient(115% 130% at 88% -10%, #1b485c 0%, #102b3a 42%, var(--navy) 100%);
  color: var(--cream);
  padding: clamp(26px, 4.2vw, 60px);
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(20px, 4vw, 52px); align-items: center;
  box-shadow: var(--shadow-lg);
}
.hero::before {
  content: ''; position: absolute; z-index: -1; inset-inline-end: -14%; top: -32%;
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 28%, transparent), transparent 62%);
  filter: blur(6px); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; z-index: -1; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(90% 70% at 20% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(90% 70% at 20% 20%, #000 20%, transparent 75%);
}

.hero h1 {
  font-family: 'Sora', 'Noto Sans', sans-serif;
  font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.55rem);
  line-height: 1.06; letter-spacing: -.038em; font-weight: 700;
  margin: 0 0 16px; color: var(--cream); text-wrap: balance;
}
body.lang-ar .hero h1 { font-family: 'Noto Kufi Arabic', sans-serif; letter-spacing: 0; line-height: 1.4; }
.hero h1 .dot { color: var(--crimson); }
.hero .hero-lead { font-size: clamp(1rem, .95rem + .35vw, 1.15rem); color: #bcd3de; margin: 0 0 24px; max-width: 46ch; }
.hero .eyebrow { color: var(--cyan); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: #a8c4d1;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  padding: 5px 12px; border-radius: 999px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: start; }
  .hero-art { order: -1; }
}

/* ------------------------------------------------------------ phone frame */

.phone {
  position: relative; width: min(264px, 68vw); margin-inline: auto;
  padding: 9px; border-radius: 38px;
  background: linear-gradient(155deg, #3a5c6d 0%, #16323f 38%, #0a1a24 100%);
  box-shadow: 0 40px 70px -28px rgba(0, 0, 0, .75), inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.phone::after {
  content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 5px; border-radius: 4px; background: rgba(255, 255, 255, .14);
}
.phone img {
  /* height:auto is load-bearing: the width/height attributes are presentational
     hints, so without it the image keeps its 1200px intrinsic height. */
  display: block; width: 100%; height: auto; aspect-ratio: 1080 / 2400;
  object-fit: cover; object-position: top;
  border-radius: 30px; background: var(--navy);
}
.phone--sm { width: 100%; padding: 7px; border-radius: 30px; }
.phone--sm::after { top: 12px; width: 54px; height: 4px; }
.phone--sm img { border-radius: 24px; }

/* --------------------------------------------------------------- sections */

.section { margin-top: clamp(48px, 7vw, 88px); }
.section-head { max-width: 60ch; margin-bottom: clamp(20px, 3vw, 30px); }
.section-head h2 {
  font-family: 'Sora', 'Noto Sans', sans-serif;
  font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.2rem);
  line-height: 1.18; letter-spacing: -.03em; font-weight: 700; margin: 0 0 10px;
  border: 0; padding: 0; text-wrap: balance;
}
body.lang-ar .section-head h2 { font-family: 'Noto Kufi Arabic', sans-serif; letter-spacing: 0; line-height: 1.45; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.02rem; }

/* ------------------------------------------------------------- screenshots */

.shots {
  display: grid; align-items: start; grid-auto-flow: column; grid-auto-columns: minmax(186px, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-block: 4px 18px;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
}
.shots::-webkit-scrollbar { display: none; }
.shot { scroll-snap-align: center; min-width: 0; margin: 0; }
.shot figcaption { margin-top: 12px; font-size: 13px; line-height: 1.55; color: var(--muted); text-align: center; }
.shot figcaption strong { display: block; color: var(--ink); font-size: 14px; font-weight: 700; }
/* Keep the strip a scroller at every width; only drop the edge-to-edge bleed
   once all five frames fit inside the measure. */
@media (min-width: 1180px) { .shots { margin-inline: 0; padding-inline: 0; } }

/* ------------------------------------------------------------------ cards */

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 258px), 1fr)); gap: clamp(12px, 1.6vw, 18px); }

.feature {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px 20px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature .q-icon { display: flex; width: max-content; color: var(--brand-ink); background: var(--brand-soft); border-radius: 13px; padding: 9px; margin-bottom: 14px; }
body.body--dark .feature .q-icon { color: var(--brand); }
.feature h3 { margin: 0 0 6px; font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.feature p { margin: 0; font-size: 14.6px; line-height: 1.65; color: var(--muted); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 20px; margin: 0 0 24px; box-shadow: var(--shadow-sm);
}
.panel > h3 { margin-top: 0; }
.panel > :last-child { margin-bottom: 0; }

.panel--tint {
  background: linear-gradient(145deg, var(--brand-soft), color-mix(in srgb, var(--brand-soft) 45%, var(--surface)));
  border-color: color-mix(in srgb, var(--brand) 22%, transparent);
  box-shadow: none;
}

.glance { list-style: none; padding: 0 !important; margin: 0 !important; }
.glance li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.glance li:last-child { margin-bottom: 0; }
.glance .q-icon { margin-top: 5px; flex: 0 0 auto; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 4px; }
.cta-row .q-btn { border-radius: 999px; padding: 6px 20px; font-weight: 700; letter-spacing: -.01em; }
.hero .cta-row { margin-top: 4px; }
.hero .cta-row .q-btn--outline { color: var(--cream) !important; }

/* ----------------------------------------------------------------- tables */

.table-wrap {
  overflow-x: auto; margin: 0 0 22px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm);
}
table.data { border-collapse: collapse; width: 100%; min-width: 420px; font-size: 14.6px; }
table.data th, table.data td { padding: 12px 16px; text-align: start; vertical-align: top; border-bottom: 1px solid var(--line); }
table.data tr:last-child td { border-bottom: 0; }
table.data th { background: var(--surface-2); font-weight: 700; color: var(--ink); white-space: nowrap; }
table.data td:first-child { font-weight: 600; color: var(--ink); }

/* -------------------------------------------------------------------- FAQ */

.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item .q-item { padding: 6px 18px; min-height: 62px; }
.faq-item .q-item__label { font-weight: 650; line-height: 1.6; color: var(--ink); }
.faq-item .q-card { background: transparent; box-shadow: none; }
.faq-item .q-card__section { padding: 0 18px 18px; }
.faq-body { color: var(--muted); font-size: 15.2px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--brand-ink); font-weight: 600; }
body.body--dark .faq-body a { color: var(--brand); }

/* -------------------------------------------------------------------- TOC */

.toc { font-size: 13.6px; }
@media (min-width: 1060px) {
  .toc { position: sticky; top: calc(var(--bar-h) + 58px); padding-top: clamp(26px, 4vw, 44px); }
}
.toc-title {
  display: flex; align-items: center; gap: 8px; width: 100%;
  font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); background: none; border: 0; padding: 14px 0 10px; cursor: pointer;
  font-family: inherit; text-align: start;
}
body.lang-ar .toc-title { letter-spacing: 0; text-transform: none; font-size: 12.5px; }
@media (min-width: 1060px) { .toc-title { cursor: default; padding-top: 0; } .toc-title .q-icon { display: none; } }

.toc-list { list-style: none; margin: 0 0 10px; padding: 0; border-inline-start: 2px solid var(--line); }
.toc-list a {
  display: block; padding: 6px 0 6px 14px; padding-inline-start: 14px; padding-inline-end: 0;
  margin-inline-start: -2px; border-inline-start: 2px solid transparent;
  color: var(--muted); text-decoration: none; line-height: 1.45;
}
.toc-list a:hover { color: var(--ink); }
.toc-list a.active { color: var(--brand-ink); border-inline-start-color: var(--brand); font-weight: 700; }
body.body--dark .toc-list a.active { color: var(--brand); }

/* ----------------------------------------------------------------- footer */

.site-foot { background: var(--navy); color: #9db6c2; border: 0; }
.site-foot__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(30px, 4vw, 48px) var(--gutter) 26px;
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 26px 20px;
}
@media (max-width: 720px) { .site-foot__inner { grid-template-columns: minmax(0, 1fr); } }

.site-foot .wordmark { color: var(--cream); }
.foot-note { font-size: 13.4px; line-height: 1.7; margin: 12px 0 0; max-width: 42ch; color: #8ba7b5; }
.foot-col h4 { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: #6e8d9c; margin: 0 0 12px; font-weight: 800; }
body.lang-ar .foot-col h4 { letter-spacing: 0; text-transform: none; font-size: 12.5px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a, .site-foot a { color: #9db6c2; text-decoration: none; font-size: 14px; font-weight: 600; }
.foot-col a:hover, .site-foot a:hover { color: var(--cyan); }
.foot-base {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gutter) 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12.8px; color: #7794a3;
}

/* --------------------------------------------------------------- motion */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .feature:hover { transform: none; }
}

@media print {
  .site-bar, .site-nav, .site-foot, .toc, .cta-row { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .doc { max-width: none; }
}

/* Landing pages run full width and keep their prose measured separately. */
.doc--wide { max-width: none; }
.prose { max-width: 74ch; }
.prose > :last-child { margin-bottom: 0; }

/* Editorial refinement: shared navigation, paper documents and quieter chrome. */
:root { --canvas:#f4f5f1; --line:#dde5e4; --surface-2:#eef3f2; --muted:#536f7d; }
body.body--dark { --canvas:#08151d; --surface:#10232e; --surface-2:#152d39; --line:#28404c; }
.site-bar { background:color-mix(in srgb,var(--surface) 95%,transparent); box-shadow:0 5px 24px #071e2b06; }
.site-bar__inner { padding-block:14px; gap:10px; }
.site-bar .brand { gap:12px; }
.brand { direction:ltr; }
body.lang-ar :is(.site-bar__inner,.site-nav,.site-nav__inner,.page-grid,.site-foot__inner,.foot-base) { direction:rtl; }
.site-bar .brand img { width:40px; height:40px; background:var(--navy); padding:3px; border-radius:12px; }
.site-bar .wordmark { font-size:23px; letter-spacing:-.045em; }
.bar-btn { min-height:38px; padding-inline:12px; background:var(--surface-2)!important; border:1px solid var(--line); color:var(--ink-2)!important; }
.bar-btn.q-btn--round { min-width:38px; padding:0; }
.bar-btn .q-icon { font-size:19px; }
.site-nav { border-bottom:0; }
.site-nav__inner { gap:6px; padding-block:0 12px; min-width:min(100%,var(--maxw)); max-width:none; }
.nav-link { display:flex; align-items:center; gap:8px; border-radius:10px; padding:10px 14px; font-size:13px; line-height:1.5; transition:color .18s,background .18s; }
.nav-link .q-icon { font-size:18px; opacity:.76; }
.nav-link::after { display:none; }
.nav-link:hover { background:var(--surface-2); }
.nav-link.active { color:#fff; background:var(--navy); }
.nav-link.active .q-icon { color:var(--cyan); opacity:1; }
body.body--dark .nav-link.active { background:#214452; color:#c4f6fc; }
.page-main { min-width:0; }
.page-grid { gap:36px; }
.page-grid.has-toc { padding-top:36px; }
.doc:not(.doc--wide) { max-width:840px; margin:36px auto 0; padding:0 clamp(24px,3.2vw,48px) 36px; border:1px solid var(--line); border-radius:24px; background:var(--surface); box-shadow:0 16px 48px -34px #1333453b; }
.has-toc .doc:not(.doc--wide) { margin-top:0; }
.doc:not(.doc--wide)>p,.doc:not(.doc--wide)>ul,.doc:not(.doc--wide)>ol { color:var(--ink-2); }
.doc-intro { position:relative; isolation:isolate; overflow:hidden; margin:0 calc(clamp(24px,3.2vw,48px) * -1) 36px; padding:36px clamp(24px,3.2vw,48px) 30px; border-radius:23px 23px 0 0; background:linear-gradient(115deg,#102b3b,#153a49); color:var(--cream); }
.doc-intro::after { content:''; position:absolute; z-index:-1; inset-inline-end:-80px; top:-100px; width:340px; height:340px; border:1px solid #5cbfd82a; border-radius:50%; box-shadow:0 0 0 42px #4cd0e407,0 0 0 84px #4cd0e406; pointer-events:none; }
.doc-signature { display:grid; place-items:center; width:48px; height:48px; margin-bottom:22px; border:1px solid #5ba2b34d; border-radius:14px; background:#1d4b5b; color:#77e2ed; }
.doc-signature .q-icon { font-size:26px; }
.doc-intro .eyebrow { color:#83d5df; font-size:10.5px; letter-spacing:.15em; margin-bottom:13px; }
.doc-intro h1 { color:var(--cream); font-size:clamp(2rem,1.25rem + 2.5vw,3.15rem); max-width:18ch; margin-bottom:18px; }
.doc-intro .lead { color:#d1e2e9; line-height:1.8; font-size:16px; margin-bottom:0; }
.doc-intro .stamp { color:#a8c4d0; font-size:12px; line-height:1.9; margin-top:15px; margin-bottom:0; max-width:65ch; }
.doc-intro .stamp:empty { display:none; }
.doc-intro a,.body--dark .doc-intro a { color:#9debf4; box-shadow:inset 0 -1px #6dcbd2; }
.doc h2 { margin-top:44px; padding-top:28px; font-size:clamp(1.24rem,1rem + .55vw,1.5rem); line-height:1.5; }
.doc:not(.doc--wide) h3 { margin-top:28px; font-size:1rem; line-height:1.7; }
.doc:not(.doc--wide) .panel>h3 { margin-top:0; }
.doc:not(.doc--wide)>p,.doc:not(.doc--wide)>ul,.doc:not(.doc--wide)>ol { font-size:15.5px; line-height:1.9; }
.doc[lang=ar]:not(.doc--wide)>p,.doc[lang=ar]:not(.doc--wide)>ul,.doc[lang=ar]:not(.doc--wide)>ol { line-height:2.1; }
.doc[lang=ar] .doc-intro h1 { max-width:21ch; line-height:1.5; }
.doc[lang=ar] .doc-intro .lead { line-height:2; }
.doc[lang=ar] .doc-intro .eyebrow { letter-spacing:0; }
.doc:not(.doc--wide) li { padding-inline-start:4px; }
.panel { padding:26px; border-radius:17px; box-shadow:none; }
.panel--tint { background:var(--brand-soft); border-color:color-mix(in srgb,var(--brand) 20%,transparent); border-inline-start:4px solid var(--brand); }
.glance li { padding:12px 0!important; border-bottom:1px solid color-mix(in srgb,var(--brand) 14%,transparent); margin:0!important; font-size:14.5px; line-height:1.85; }
.glance li:last-child { border:0; padding-bottom:0!important; }
.glance .q-icon { padding:7px; border-radius:10px; background:color-mix(in srgb,var(--surface) 65%,transparent); box-sizing:content-box; margin:0; }
.table-wrap { border-radius:16px; box-shadow:none; }
table.data { font-size:14px; line-height:1.9; }
table.data th { padding-block:16px; color:var(--brand-ink); }
table.data td { padding-block:18px; }
table.data tbody tr:nth-child(even) { background:color-mix(in srgb,var(--surface-2) 48%,transparent); }
.toc { align-self:start; border:1px solid var(--line); border-radius:18px; background:color-mix(in srgb,var(--surface) 65%,var(--canvas)); padding:20px 14px 12px; font-size:12.5px; }
.toc-title { padding:0 8px 16px; color:var(--ink-2); letter-spacing:.12em; }
.toc-list { border:0; margin:0; }
.toc-list a { border:0; border-inline-start:2px solid transparent; margin:0 0 3px; padding:10px 12px; border-radius:8px; line-height:1.7; transition:background .15s,color .15s; }
.toc-list a:hover { background:var(--surface-2); }
.toc-list a.active { background:var(--brand-soft); border-inline-start-color:var(--brand); }
.faq-item { border-radius:14px; margin-bottom:12px; box-shadow:none; transition:border-color .18s,background .18s; }
.faq-item .q-item { min-height:74px; padding:18px 20px; }
.faq-item .q-item__label { font-size:15px; line-height:1.65!important; font-weight:600; }
.faq-item .q-expansion-item__toggle-icon { border-radius:50%; background:var(--surface-2); padding:6px; font-size:18px; width:30px; height:30px; color:var(--brand); }
.faq-item.q-expansion-item--expanded { border-color:color-mix(in srgb,var(--brand) 50%,var(--line)); background:color-mix(in srgb,var(--brand-soft) 25%,var(--surface)); }
.faq-item.q-expansion-item--expanded .q-item__label { color:var(--brand-ink); }
.faq-item .q-card__section { padding:4px 22px 22px; }
.faq-body { font-size:14.5px; line-height:1.9; }
body.lang-ar .faq-body { line-height:2.1; }
.feature-grid { gap:20px; }
.feature { padding:28px; border-radius:20px; box-shadow:none; }
.feature:hover { border-color:var(--brand); box-shadow:0 18px 40px -24px #1333453b; }
.feature .q-icon { border:1px solid color-mix(in srgb,var(--brand) 18%,transparent); border-radius:15px; padding:12px; margin-bottom:23px; }
.feature h3 { margin-bottom:12px; line-height:1.55; font-size:17px; }
.feature p { font-size:14px; line-height:1.85; }
.doc:not(.doc--wide)>.feature-grid { margin-bottom:24px; }
.doc:not(.doc--wide) .feature { padding:22px; }
.doc:not(.doc--wide) .feature h3 { margin:0 0 12px; }
.doc--wide { padding-top:0; }
.hero { margin-top:32px; border:1px solid #183c4f; border-radius:30px; padding:clamp(30px,4.6vw,66px); min-height:660px; background:linear-gradient(115deg,#0d2230 40%,#173e4c); }
.hero h1 { font-size:clamp(2.6rem,1.1rem + 4vw,4.25rem); line-height:1.08; letter-spacing:-.055em; margin-bottom:26px; }
.hero .hero-lead { font-size:16px; line-height:1.85; color:#bad2dc; margin-bottom:28px; }
.hero .cta-row { gap:12px; }
.hero .cta-row .q-btn { padding:10px 19px; min-height:48px; border-radius:12px; font-size:13px; }
.hero .cta-row .q-btn--unelevated { background:#23cadd!important; color:#092832!important; }
.hero .cta-row .q-btn--outline::before { border-color:#5c7d8c; }
.hero-badges { gap:10px 16px; margin-top:30px; }
.hero-badge { background:transparent; border:0; padding:0; font-size:11.5px; color:#a6c3cf; }
.hero-badge .q-icon { color:#65d3df; }
.hero-art { position:relative; padding:10px 0; }
.hero-art::before { content:''; position:absolute; inset:2% -3% 3%; border:1px solid #58b6c64a; border-radius:190px 190px 40px 40px; box-shadow:0 0 0 24px #74bbd006; }
.hero-art::after { content:''; width:18px; height:18px; position:absolute; top:15%; inset-inline-end:5%; border-radius:50%; background:#ef0044; box-shadow:0 0 0 9px #ef004414; }
.hero-art .phone { transform:rotate(-3deg); width:min(245px,68vw); }
body.lang-ar .hero-art .phone { transform:rotate(3deg); }
.section { margin-top:90px; }
.section-head { max-width:640px; margin-bottom:34px; }
.section-head h2 { font-size:clamp(1.7rem,1rem + 2vw,2.6rem); letter-spacing:-.045em; }
.section-head p { font-size:16px; line-height:1.85; }
.shots { grid-auto-columns:211px; gap:24px; padding-block:14px 24px; }
.shot { padding:16px 12px 18px; border:1px solid var(--line); background:var(--surface); border-radius:24px; }
.shot .phone { box-shadow:0 15px 22px -20px #0a1a2480; }
.shot figcaption { padding-top:6px; margin-top:18px; font-size:12px; line-height:1.8; }
.shot figcaption strong { margin-bottom:4px; font-size:14px; }
.prose { max-width:840px; }
.site-foot { border-top:4px solid #15424f; }
.site-foot__inner { padding-top:58px; padding-bottom:40px; gap:32px 60px; }
.site-foot .brand img { width:40px; height:40px; }
.site-foot .wordmark { font-size:24px; }
.foot-note { max-width:39ch; line-height:1.85; color:#a2bbc7; }
.foot-col h4 { color:#67afbf; }
.foot-col li { margin-bottom:14px; }
.foot-col a { font-size:13px; font-weight:500; }
.foot-base { padding-top:22px; padding-bottom:30px; }
@media(min-width:1060px){
 .page-grid.has-toc { grid-template-columns:230px minmax(0,1fr); }
 .toc { top:calc(var(--bar-h) + 82px); max-height:calc(100vh - var(--bar-h) - 108px); overflow-y:auto; scrollbar-width:thin; scrollbar-color:var(--line-strong) transparent; }
}
@media(max-width:1059px){
 .page-grid.has-toc { gap:20px; padding-top:24px; }
 .toc { padding:16px 18px; }
 .toc-title { padding:0; font-size:12px; }
 .toc-list { padding-top:15px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 12px; }
 .doc:not(.doc--wide) { max-width:none; }
}
@media(max-width:860px){
 .hero { grid-template-columns:1fr; min-height:0; gap:38px; }
 .hero-art { order:0; width:min(360px,100%); margin:auto; }
 .hero-art .phone { width:220px; }
 .hero h1 { max-width:16ch; }
 .hero .hero-lead { max-width:60ch; }
 .hero-art::before { inset:0 0 2%; }
 .section { margin-top:62px; }
}
@media(max-width:600px){
 :root { --bar-h:64px; --gutter:20px; }
 body { font-size:15px; }
 .site-bar__inner { padding-block:12px; }
 .site-bar .brand img { width:34px; height:34px; border-radius:10px; }
 .site-bar .brand { gap:8px; }
 .site-bar .wordmark { font-size:20px; }
 .bar-btn { font-size:11px; padding-inline:9px; min-height:34px; }
 .bar-btn.q-btn--round { min-width:34px; }
 .site-nav__inner { padding-block:0 9px; }
 .nav-link { padding:9px 11px; font-size:12px; gap:6px; }
 .nav-link .q-icon { font-size:16px; }
 .doc:not(.doc--wide) { margin-top:24px; border-radius:18px; padding-inline:20px; padding-bottom:28px; }
 .has-toc .doc:not(.doc--wide) { margin-top:0; }
 .doc-intro { margin-inline:-20px; margin-bottom:28px; padding:28px 22px 26px; border-radius:17px 17px 0 0; }
 .doc-intro h1 { font-size:29px; line-height:1.22; }
 .doc-intro .lead { font-size:14px; }
 .doc-intro .stamp { font-size:11px; }
 .doc-signature { width:42px; height:42px; margin-bottom:17px; border-radius:12px; }
 .doc[lang=ar] .doc-intro h1 { font-size:25px; line-height:1.6; }
 .doc:not(.doc--wide)>p,.doc:not(.doc--wide)>ul,.doc:not(.doc--wide)>ol { font-size:14px; }
 .doc h2 { font-size:19px; margin-top:34px; padding-top:24px; }
 .panel { padding:20px; }
 .glance li { font-size:13px; gap:10px; }
 .glance .q-icon { padding:5px; }
 .toc-list { grid-template-columns:1fr; }
 .faq-item .q-item { padding:16px; min-height:68px; }
 .faq-item .q-item__label { font-size:14px; }
 .faq-item .q-card__section { padding:0 16px 18px; }
 .faq-body { font-size:13.5px; }
 .hero { margin-top:22px; border-radius:23px; padding:30px 25px; }
 .hero h1 { font-size:42px; line-height:1.09; }
 body.lang-ar .hero h1 { font-size:35px; line-height:1.5; }
 .hero .hero-lead { font-size:14px; line-height:1.85; }
 .hero .cta-row { flex-direction:column; align-items:stretch; }
 .hero .cta-row .q-btn { padding-inline:12px; font-size:12px; }
 .hero-badges { gap:12px; flex-direction:column; align-items:flex-start; }
 .hero-art .phone { width:194px; }
 .hero-art::before { inset:0 4%; }
 .feature { padding:24px; }
 .feature-grid { gap:14px; }
 .shots { grid-auto-columns:207px; gap:16px; }
 .section-head { margin-bottom:24px; }
 .section-head h2 { font-size:28px; line-height:1.25; }
 .section-head p { font-size:14px; }
 .site-foot__inner { padding-top:40px; gap:30px; }
 .foot-col ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:2px 16px; }
 .foot-note { font-size:12.5px; }
 .foot-base { font-size:11px; gap:12px; }
 .foot-base .bar-spacer { display:none; }
}
@media(prefers-reduced-motion:reduce){ .nav-link,.toc-list a,.faq-item { transition:none; } }
@media print {
 .doc:not(.doc--wide){padding:0;border:0;box-shadow:none;margin:0}
 .doc-intro{padding:0;margin:0 0 22px;background:#fff;color:#000;border-radius:0}
 .doc-intro h1,.doc-intro .lead,.doc-intro .stamp{color:#000}
 .doc-signature,.doc-intro::after{display:none}
}
