@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  --bg: #07110f;
  --bg-raised: #0d1916;
  --bg-soft: #13211e;
  --surface: #f3f0e7;
  --surface-raised: #fffdf8;
  --ink: #0a1512;
  --text: #f7f5ed;
  --text-soft: #a9b8b1;
  --muted: #65746d;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(10, 21, 18, .14);
  --mint: #36d6a0;
  --mint-bright: #69e9bc;
  --amber: #f2b94b;
  --violet: #9b8cff;
  --coral: #ff786a;
  --radius: 8px;
  --shadow: 0 32px 80px rgba(0, 0, 0, .3);
  --font: "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

html[data-theme="light"] {
  --bg: #eeeae0;
  --bg-raised: #fffdf8;
  --bg-soft: #e3e6dc;
  --surface: #f8f5ec;
  --surface-raised: #ffffff;
  --text: #0a1512;
  --text-soft: #56645e;
  --line: rgba(10, 21, 18, .15);
  --shadow: 0 30px 70px rgba(10, 21, 18, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; transition: background .35s ease, color .35s ease; }
button, a, input { font: inherit; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button { color: inherit; }
.lang-en, html[data-lang="en"] .lang-ar { display: none; }
html[data-lang="en"] .lang-en { display: inline; }
html[data-lang="en"] body { direction: ltr; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
::selection { color: var(--ink); background: var(--mint); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 100; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--mint), var(--amber), var(--violet)); transform: scaleX(0); transform-origin: left; }
html[dir="rtl"] .scroll-progress span { transform-origin: right; }

.site-header { position: fixed; inset: 14px 18px auto; z-index: 50; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 20px; min-height: 62px; padding: 8px 10px 8px 18px; color: #f7f5ed; background: rgba(7, 17, 15, .72); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; backdrop-filter: blur(20px) saturate(1.25); transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { background: rgba(7, 17, 15, .92); box-shadow: 0 14px 42px rgba(0,0,0,.22); }
.site-header.is-hidden { transform: translateY(-96px); }
.brand { display: flex; width: 132px; }
.brand img { width: 100%; }
.logo-on-light { display: none; }
html[data-theme="light"] .site-footer .logo-on-dark { display: none; }
html[data-theme="light"] .site-footer .logo-on-light { display: block; }
.nav-links { display: flex; justify-content: center; gap: 4px; }
.nav-links a { padding: 9px 11px; color: rgba(255,255,255,.68); border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: 600; transition: color .2s ease, background .2s ease; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.header-actions { display: flex; align-items: center; gap: 7px; }
.icon-button, .language-button { display: inline-flex; align-items: center; justify-content: center; height: 40px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; background: rgba(255,255,255,.07); cursor: pointer; }
.icon-button { width: 40px; }
.icon-button svg { width: 17px; }
.language-button { gap: 6px; min-width: 58px; padding: 0 9px; font-size: 11px; font-weight: 700; }
.language-button svg { width: 15px; }
.theme-sun { display: none; }
html[data-theme="light"] .theme-sun { display: block; }
html[data-theme="light"] .theme-moon { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 10px 16px; border: 1px solid transparent; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button svg { width: 17px; height: 17px; }
html[dir="rtl"] .button svg[data-lucide="arrow-up-left"], html[dir="rtl"] .text-link svg[data-lucide="arrow-up-left"] { transform: rotate(-90deg); }
html[dir="ltr"] .button svg[data-lucide="arrow-up-left"], html[dir="ltr"] .text-link svg[data-lucide="arrow-up-left"] { transform: rotate(90deg); }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--mint); box-shadow: 0 14px 36px rgba(54,214,160,.22); }
.button-primary:hover { background: var(--mint-bright); box-shadow: 0 18px 44px rgba(54,214,160,.31); }
.button-ghost { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.button-ghost:hover { background: rgba(255,255,255,.13); }
.button-large { min-height: 54px; padding: 14px 22px; font-size: 14px; }
.mobile-cta { display: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #07110f; color: #f7f5ed; }
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; opacity: .48; filter: saturate(.75) contrast(1.08); transform: scale(1.035); }
.hero-overlay { background: linear-gradient(90deg, rgba(7,17,15,.97) 0%, rgba(7,17,15,.82) 43%, rgba(7,17,15,.42) 75%, rgba(7,17,15,.68) 100%), linear-gradient(0deg, rgba(7,17,15,.92) 0%, transparent 44%, rgba(7,17,15,.35) 100%); }
html[dir="rtl"] .hero-overlay { background: linear-gradient(270deg, rgba(7,17,15,.97) 0%, rgba(7,17,15,.82) 43%, rgba(7,17,15,.42) 75%, rgba(7,17,15,.68) 100%), linear-gradient(0deg, rgba(7,17,15,.92) 0%, transparent 44%, rgba(7,17,15,.35) 100%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .72fr); gap: 64px; align-items: center; width: min(1240px, calc(100% - 56px)); min-height: 100svh; margin: auto; padding: 120px 0 88px; }
.hero-copy { max-width: 780px; }
.eyebrow { margin: 0 0 18px; color: var(--amber); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero-intro { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.75); }
.live-dot, .status-pulse { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 0 rgba(54,214,160,.5); animation: pulse 2s infinite; }
.hero h1 { margin: 0; max-width: 780px; font-size: 64px; line-height: 1.08; font-weight: 700; letter-spacing: 0; }
.hero h1 em, .proof h2 em, .calculator h2 em, .faq h2 em, .final-cta h2 em { color: var(--mint); font-style: normal; }
.hero-lede { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.9; }
.hero-lede strong { color: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-video { color: #fff; background: transparent; }
.button-video:hover { background: rgba(255,255,255,.07); }
.play-disc { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--ink); background: #fff; border-radius: 50%; }
.play-disc svg { width: 14px; fill: currentColor; }
.hero-terms { display: flex; gap: 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-terms > span { display: grid; gap: 2px; min-width: 140px; padding: 18px 22px 0; border-inline-start: 1px solid rgba(255,255,255,.14); }
.hero-terms > span:first-child { padding-inline-start: 0; border-inline-start: 0; }
.hero-terms strong { font-family: var(--mono); font-size: 22px; }
.hero-terms small { color: rgba(255,255,255,.54); font-size: 11px; }

.hero-route { position: relative; overflow: hidden; padding: 18px; background: rgba(9,22,18,.74); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.route-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, #000, transparent); }
.route-head { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 2px 3px 16px; color: rgba(255,255,255,.62); font: 11px var(--mono); }
.route-head > span:first-child { display: flex; align-items: center; gap: 7px; }
.route-head svg { width: 14px; color: var(--mint); }
.route-status { color: var(--mint); }
.route-stage { position: relative; display: grid; grid-template-columns: 30px 1fr auto; gap: 13px; align-items: center; min-height: 78px; padding: 13px; color: rgba(255,255,255,.42); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease; }
.route-stage.is-active { color: #fff; background: rgba(54,214,160,.09); border-color: rgba(54,214,160,.4); transform: translateX(-4px); }
html[dir="ltr"] .route-stage.is-active { transform: translateX(4px); }
.stage-index { font: 10px var(--mono); color: var(--amber); }
.route-stage div { display: grid; gap: 5px; }
.route-stage small { font-size: 9px; text-transform: uppercase; }
.route-stage strong { font-size: 12px; line-height: 1.55; }
.route-stage > svg { width: 20px; }
.route-connector { position: relative; width: 2px; height: 24px; margin: 0 28px; overflow: hidden; background: rgba(255,255,255,.12); }
.route-connector span { display: block; width: 100%; height: 45%; background: var(--mint); animation: routeFlow 1.6s infinite ease-in-out; }
.route-result { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: end; margin-top: 14px; padding: 17px; color: var(--ink); background: var(--amber); border-radius: 6px; }
.route-result > span { font-size: 11px; font-weight: 700; }
.route-result strong { grid-row: span 2; font: 700 25px var(--mono); }
.route-result small { display: flex; align-items: center; gap: 5px; font-size: 9px; }
.route-result svg { width: 12px; }
.hero-scroll { position: absolute; z-index: 3; inset: auto 28px 24px auto; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.6); text-decoration: none; font-size: 10px; text-transform: uppercase; writing-mode: vertical-rl; }
html[dir="rtl"] .hero-scroll { inset-inline: 28px auto; }
.hero-scroll svg { width: 15px; animation: nudge 1.5s infinite; }

.fit-band { position: relative; z-index: 4; display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: center; min-height: 112px; padding: 20px max(28px, calc((100% - 1240px)/2)); color: var(--ink); background: var(--amber); overflow: hidden; }
.fit-band > p { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.6; }
.fit-track { display: flex; justify-content: space-between; gap: 16px; min-width: 0; }
.fit-track > span { display: flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 11px; font-weight: 600; }
.fit-track svg { width: 16px; }

.section-shell { width: min(1240px, calc(100% - 56px)); margin: 0 auto; padding-block: 112px; }
.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; color: var(--text-soft); }
.section-kicker > span { display: inline-grid; place-items: center; width: 34px; height: 34px; color: var(--mint); border: 1px solid var(--line); border-radius: 50%; font: 10px var(--mono); }
.section-kicker p { margin: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.section-kicker::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.proof { background: var(--bg); }
.proof-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center; }
.proof h2, .calculator h2, .faq h2 { margin: 0; font-size: 46px; line-height: 1.2; font-weight: 650; }
.proof-copy > p, .calculator-copy > p { margin: 24px 0 0; color: var(--text-soft); font-size: 15px; line-height: 1.95; }
.proof-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.proof-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.proof-list svg { width: 18px; color: var(--mint); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 6px; color: var(--text); border-bottom: 1px solid var(--mint); text-decoration: none; font-size: 12px; font-weight: 700; }
.text-link svg { width: 16px; }
.video-stage { position: relative; padding: 12px; background: var(--bg-raised); border: 1px solid var(--line); box-shadow: var(--shadow); }
.video-stage video { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #000; }
.video-label { position: absolute; z-index: 2; inset: 28px 28px auto auto; display: flex; align-items: center; gap: 8px; padding: 8px 10px; color: #fff; background: rgba(7,17,15,.82); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; font-size: 9px; backdrop-filter: blur(10px); }
html[dir="rtl"] .video-label { inset-inline: 28px auto; }
.video-caption { display: flex; justify-content: space-between; align-items: center; padding: 14px 5px 2px; color: var(--text-soft); font-size: 10px; }
.video-caption span { font-family: var(--mono); }
.video-caption p { margin: 0; }

.journey { position: relative; min-height: 440vh; color: #f7f5ed; background: #08120f; }
.journey-sticky { position: sticky; top: 0; display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: auto 1fr; column-gap: 80px; width: min(1240px, calc(100% - 56px)); min-height: 100vh; margin: auto; padding: 90px 0 50px; overflow: hidden; }
.journey-sticky .section-kicker { grid-column: 1/-1; margin-bottom: 28px; }
.journey-copy { position: relative; align-self: center; min-height: 350px; }
.journey-number { position: absolute; inset: -48px auto auto 0; margin: 0; color: rgba(255,255,255,.045); font: 700 180px/1 var(--mono); }
html[dir="rtl"] .journey-number { inset-inline: 0 auto; }
.journey-texts { position: relative; min-height: 250px; }
.journey-texts article { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(24px); transition: opacity .45s ease, transform .45s ease; pointer-events: none; }
.journey-texts article.is-active { opacity: 1; transform: none; pointer-events: auto; }
.journey-texts h2 { margin: 0; font-size: 44px; line-height: 1.25; font-weight: 650; }
.journey-texts p { margin: 22px 0 0; color: #a9b8b1; font-size: 15px; line-height: 1.9; }
.journey-dots { display: flex; gap: 8px; margin-top: 28px; }
.journey-dots span { width: 22px; height: 3px; background: rgba(255,255,255,.15); transition: width .3s ease, background .3s ease; }
.journey-dots span.is-active { width: 52px; background: var(--mint); }
.dashboard-mock { align-self: center; overflow: hidden; padding: 18px; color: #f7f5ed; background: #101d19; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,.42); transform: perspective(1300px) rotateY(4deg) rotateX(2deg); transition: transform .6s ease; }
html[dir="rtl"] .dashboard-mock { transform: perspective(1300px) rotateY(-4deg) rotateX(2deg); }
.dashboard-mock.is-engaged { transform: perspective(1300px) rotateY(0) rotateX(0); }
.mock-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mock-top > span { display: flex; align-items: center; gap: 9px; font-size: 11px; }
.mock-top img { width: 24px; height: 24px; object-fit: contain; }
.mock-top svg { width: 16px; color: #879990; }
.mock-share { position: relative; display: grid; gap: 7px; margin-top: 16px; padding: 17px 48px 17px 16px; background: rgba(54,214,160,.08); border: 1px solid rgba(54,214,160,.25); border-radius: 6px; }
html[dir="rtl"] .mock-share { padding: 17px 16px 17px 48px; }
.mock-share small { color: #9aafa6; font-size: 9px; }
.mock-share strong { direction: ltr; overflow: hidden; color: var(--mint); font: 11px var(--mono); white-space: nowrap; text-overflow: ellipsis; }
.mock-share button { position: absolute; inset: 50% auto auto 12px; display: grid; place-items: center; width: 30px; height: 30px; color: #07110f; background: var(--mint); border: 0; border-radius: 4px; transform: translateY(-50%); }
html[dir="ltr"] .mock-share button { inset-inline: auto 12px; }
.mock-share svg { width: 14px; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 13px; }
.mock-stats > div { display: grid; gap: 8px; padding: 14px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; }
.mock-stats small { color: #8fa198; font-size: 8px; }
.mock-stats strong { font: 700 21px var(--mono); }
.mock-chart { margin-top: 13px; padding: 15px 15px 0; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; }
.chart-head { display: flex; justify-content: space-between; font-size: 9px; }
.chart-head strong { color: var(--mint); font-family: var(--mono); }
.mock-chart svg { width: 100%; height: 150px; overflow: visible; }
.chart-line { stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1.4s ease; }
.dashboard-mock.is-engaged .chart-line { stroke-dashoffset: 0; }
.mock-payout { display: flex; justify-content: space-between; align-items: center; margin-top: 13px; padding: 14px; color: #07110f; background: var(--amber); border-radius: 5px; }
.mock-payout > div { display: grid; gap: 4px; }
.mock-payout small { font-size: 8px; }
.mock-payout strong { font: 700 18px var(--mono); }
.mock-payout > span { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; }
.mock-payout svg { width: 15px; }
.journey-scroll { position: absolute; inset: 0; display: grid; grid-template-rows: repeat(4, 1fr); pointer-events: none; }

.calculator { background: var(--bg); }
.calculator-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.range-field { margin-top: 34px; }
.range-field > div { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px; }
.range-field label { color: var(--text-soft); font-size: 12px; }
.range-field output { color: var(--amber); font: 700 18px var(--mono); }
.range-field input { width: 100%; height: 5px; appearance: none; background: linear-gradient(to right, var(--mint) var(--range-progress, 8%), var(--line) var(--range-progress, 8%)); border-radius: 0; outline: none; }
html[dir="rtl"] .range-field input { direction: ltr; }
.range-field input::-webkit-slider-thumb { width: 23px; height: 23px; appearance: none; background: var(--mint); border: 5px solid var(--bg); border-radius: 50%; box-shadow: 0 0 0 1px var(--mint); cursor: ew-resize; }
.range-field input::-moz-range-thumb { width: 13px; height: 13px; background: var(--mint); border: 5px solid var(--bg); border-radius: 50%; box-shadow: 0 0 0 1px var(--mint); cursor: ew-resize; }
.earnings-ticket { position: relative; overflow: hidden; color: var(--ink); background: var(--amber); box-shadow: var(--shadow); }
.earnings-ticket::before, .earnings-ticket::after { content: ""; position: absolute; top: 58%; width: 32px; height: 32px; background: var(--bg); border-radius: 50%; transform: translateY(-50%); }
.earnings-ticket::before { left: -16px; }
.earnings-ticket::after { right: -16px; }
.ticket-top { display: flex; justify-content: space-between; padding: 20px 24px; border-bottom: 1px dashed rgba(10,21,18,.35); font: 700 9px var(--mono); }
.ticket-amount { display: grid; justify-items: center; padding: 42px 24px 30px; text-align: center; }
.ticket-amount small { font-size: 11px; }
.ticket-amount strong { margin: 10px 0; font: 700 64px/1 var(--mono); }
.ticket-amount > span { font: 9px var(--mono); opacity: .7; }
.ticket-equation { display: flex; justify-content: center; gap: 10px; padding: 0 24px 38px; font: 10px var(--mono); }
.ticket-equation b { opacity: .45; }
.ticket-year { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-top: 1px dashed rgba(10,21,18,.35); font-size: 11px; }
.ticket-year strong { font: 700 20px var(--mono); }
.earnings-ticket > p { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 0; padding: 13px; color: rgba(10,21,18,.65); background: rgba(255,255,255,.18); font-size: 8px; }
.earnings-ticket > p svg { width: 12px; }

.setup-band { background: var(--surface); color: var(--ink); }
.setup-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 84px; align-items: center; }
.setup-photo { position: relative; min-height: 560px; overflow: hidden; background: #111; }
.setup-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center top; filter: saturate(.72) contrast(1.05); }
.setup-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,17,15,.78), transparent 55%); }
.setup-photo > span { position: absolute; z-index: 2; inset: auto 22px 22px; display: flex; align-items: center; gap: 9px; padding: 12px 14px; color: #fff; background: rgba(7,17,15,.75); border: 1px solid rgba(255,255,255,.18); font-size: 10px; backdrop-filter: blur(12px); }
.setup-photo svg { width: 16px; }
.setup-copy .eyebrow { color: #77601f; }
.setup-copy h2 { margin: 0; font-size: 46px; line-height: 1.2; font-weight: 650; }
.setup-copy ol { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.setup-copy li { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 72px; border-bottom: 1px solid var(--line-dark); font-size: 13px; }
.setup-copy li b { color: #8a7d63; font: 10px var(--mono); }

.faq { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 92px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading .text-link { margin-top: 32px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 22px; min-height: 82px; padding: 16px 3px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 18px; flex: 0 0 auto; color: var(--mint); transition: transform .25s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 660px; margin: -4px 0 22px; color: var(--text-soft); font-size: 13px; line-height: 1.9; }

.final-cta { position: relative; display: grid; place-items: center; min-height: 720px; overflow: hidden; color: #fff; text-align: center; background: #07110f; }
.final-cta > video, .final-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > video { object-fit: cover; opacity: .4; filter: saturate(.7); }
.final-overlay { background: rgba(7,17,15,.72); }
.final-content { position: relative; z-index: 2; width: min(850px, calc(100% - 40px)); padding: 90px 0; }
.final-cta h2 { margin: 0; font-size: 58px; line-height: 1.16; font-weight: 650; }
.final-content > p:not(.eyebrow) { max-width: 620px; margin: 24px auto 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.9; }
.final-content > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; margin-top: 34px; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: end; padding: 42px max(28px, calc((100% - 1240px)/2)); background: var(--bg); border-top: 1px solid var(--line); }
.footer-brand img { width: 132px; }
.footer-brand p { margin: 12px 0 0; color: var(--text-soft); font-size: 10px; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { color: var(--text-soft); text-decoration: none; font-size: 10px; }
.site-footer nav a:hover { color: var(--text); }
.copyright { margin: 0; color: var(--text-soft); font: 9px var(--mono); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.hero [data-reveal]:nth-child(2) { transition-delay: .08s; }
.hero [data-reveal]:nth-child(3) { transition-delay: .16s; }
.hero [data-reveal]:nth-child(4) { transition-delay: .24s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(54,214,160,0); } 100% { box-shadow: 0 0 0 0 rgba(54,214,160,0); } }
@keyframes routeFlow { from { transform: translateY(-120%); } to { transform: translateY(240%); } }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 130px 1fr auto; }
  .nav-links { display: none; }
  .hero-content { gap: 36px; }
  .hero h1 { font-size: 52px; }
  .fit-band { grid-template-columns: 170px 1fr; }
  .fit-track > span:nth-child(n+5) { display: none; }
  .journey-sticky { column-gap: 46px; }
  .journey-texts h2 { font-size: 36px; }
  .proof-layout, .calculator-layout, .setup-layout { gap: 50px; }
}

@media (max-width: 820px) {
  .site-header { inset: 10px 12px auto; grid-template-columns: 112px 1fr; min-height: 58px; padding: 8px 9px 8px 13px; }
  .brand { width: 108px; }
  .header-actions { justify-self: end; }
  .admin-link { display: none; }
  .header-cta { min-height: 38px; padding: 8px 11px; font-size: 11px; }
  .icon-button { width: 38px; height: 38px; }
  .language-button { min-width: 48px; height: 38px; }
  .language-button svg { display: none; }
  .hero-content { grid-template-columns: 1fr; align-content: center; gap: 42px; width: min(100% - 32px, 680px); padding: 108px 0 74px; }
  .hero h1 { font-size: 46px; }
  .hero-route { max-width: 520px; }
  .hero-scroll { display: none; }
  .fit-band { grid-template-columns: 1fr; gap: 13px; padding-block: 22px; }
  .fit-track { overflow: hidden; justify-content: flex-start; }
  .fit-track > span:nth-child(n+4) { display: none; }
  .section-shell { width: min(100% - 32px, 680px); padding-block: 82px; }
  .proof-layout, .calculator-layout, .setup-layout, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .proof h2, .calculator h2, .faq h2, .setup-copy h2 { font-size: 38px; }
  .journey { min-height: auto; padding: 82px 0; }
  .journey-sticky { position: relative; display: block; width: min(100% - 32px, 680px); min-height: 0; padding: 0; }
  .journey-scroll { display: none; }
  .journey-copy { min-height: 0; }
  .journey-number { display: none; }
  .journey-texts { min-height: 0; }
  .journey-texts article { position: relative; opacity: 1; transform: none; margin-bottom: 42px; padding-inline-start: 24px; border-inline-start: 2px solid rgba(255,255,255,.13); }
  .journey-texts article::before { content: attr(data-journey-copy); position: absolute; inset-inline-start: -13px; top: 0; display: grid; place-items: center; width: 24px; height: 24px; color: #07110f; background: var(--mint); border-radius: 50%; font: 9px var(--mono); }
  .journey-texts h2 { font-size: 30px; }
  .journey-dots { display: none; }
  .dashboard-mock { transform: none !important; }
  .faq-heading { position: static; }
  .setup-photo, .setup-photo img { min-height: 480px; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

@media (max-width: 540px) {
  .site-header { grid-template-columns: 84px 1fr; }
  .brand { width: 82px; }
  .icon-button { display: inline-flex; width: 36px; height: 38px; }
  .header-cta svg { display: none; }
  .header-cta .full-cta { display: none; }
  .header-cta .mobile-cta.lang-ar { display: inline; }
  html[data-lang="en"] .header-cta .mobile-cta.lang-ar { display: none; }
  html[data-lang="en"] .header-cta .mobile-cta.lang-en { display: inline; }
  .hero { min-height: 90svh; }
  .hero-content { width: calc(100% - 28px); min-height: 90svh; gap: 24px; padding: 88px 0 24px; }
  .hero h1 { font-size: 37px; }
  .hero-lede { font-size: 14px; line-height: 1.8; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-terms { margin-top: 30px; }
  .hero-terms > span { min-width: 0; flex: 1; padding-inline: 12px; }
  .hero-terms strong { font-size: 17px; }
  .hero-terms small { font-size: 8px; }
  .hero-route { display: none; }
  .fit-track > span:nth-child(n+3) { display: none; }
  .section-shell { width: calc(100% - 28px); padding-block: 68px; }
  .section-kicker { margin-bottom: 34px; }
  .proof h2, .calculator h2, .faq h2, .setup-copy h2 { font-size: 31px; }
  .proof-copy > p, .calculator-copy > p { font-size: 13px; }
  .video-stage { padding: 8px; }
  .video-label { inset-block-start: 18px; inset-inline-end: 18px; }
  html[dir="rtl"] .video-label { inset-inline: 18px auto; }
  .journey { padding: 68px 0; }
  .journey-sticky { width: calc(100% - 28px); }
  .journey-texts h2 { font-size: 26px; }
  .dashboard-mock { padding: 12px; }
  .mock-stats strong { font-size: 16px; }
  .mock-chart svg { height: 110px; }
  .ticket-amount strong { font-size: 48px; }
  .ticket-equation { gap: 6px; font-size: 8px; }
  .setup-photo, .setup-photo img { min-height: 420px; }
  .faq-list summary { min-height: 72px; font-size: 12px; }
  .final-cta { min-height: 620px; }
  .final-cta h2 { font-size: 38px; }
  .final-content > div { display: grid; }
  .site-footer nav { flex-wrap: wrap; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-media { transform: none; }
}
