/* ============================================================
   Content Power For Marketing — contentpower.sa  ·  v2 "Cinema"
   Brand: Dark Green #19351F · Pistachio #E1F7C8 · Lavender #7D86F3
          Sky Blue #E0EBF4 · Crystal White #FFFFFF
   Type : Doran (AR display) · Janna (AR text) · Lemon Milk / Century Gothic (EN tokens)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Doran'; src: url('../fonts/doran-light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Doran'; src: url('../fonts/doran-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Doran'; src: url('../fonts/doran-medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Doran'; src: url('../fonts/doran-bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Janna'; src: url('../fonts/janna-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Janna'; src: url('../fonts/janna-bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Lemon Milk'; src: url('../fonts/lemonmilk-medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Century Gothic'; src: url('../fonts/century-gothic.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Century Gothic'; src: url('../fonts/century-gothic-bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --g-950: #07120A;
  --g-900: #0B1A0F;
  --g-800: #0F2214;
  --g-700: #19351F;
  --g-600: #23482C;
  --pist: #E1F7C8;
  --pist-dim: rgba(225, 247, 200, .55);
  --lav: #7D86F3;
  --lav-soft: #A9AFF7;
  --sky: #E0EBF4;
  --white: #FFFFFF;
  --text: #EEF5EA;
  --muted: rgba(224, 235, 244, .62);
  --muted-2: rgba(224, 235, 244, .4);
  --line: rgba(224, 235, 244, .12);
  --line-2: rgba(224, 235, 244, .2);

  --font-display: 'Doran', 'Janna', serif;
  --font-body: 'Janna', 'Doran', sans-serif;
  --font-token: 'Lemon Milk', 'Century Gothic', sans-serif;
  --font-num: 'Century Gothic', 'Lemon Milk', sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);

  --container: 1320px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --header-h: 84px;
  --radius: 22px;
  --radius-lg: 30px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  font-family: var(--font-body);
  background: var(--g-900);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--lav); color: var(--white); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.3; }
.i { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.i-arrow { transform: scaleX(1); }
html[dir="rtl"] .i-arrow { transform: scaleX(1); }
html[dir="ltr"] .i-arrow { transform: scaleX(-1); }
html.has-cursor body, html.has-cursor a, html.has-cursor button { cursor: none; }

/* Film grain overlay */
body::after {
  content: '';
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
  mix-blend-mode: overlay;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -4%); }
  60% { transform: translate(-4%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(-1%, 4%); }
}

/* ---------- Layout utils ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.section { position: relative; padding-block: clamp(90px, 12vw, 170px); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  color: var(--pist);
}
.kicker::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: .7; }
.kicker--lav { color: var(--lav-soft); }

.chapter {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: clamp(28px, 4vw, 48px);
  color: var(--muted);
}
.chapter--center { justify-content: center; }
.chapter-line { flex: 0 0 auto; width: clamp(40px, 8vw, 120px); height: 1px; background: linear-gradient(90deg, var(--lav), transparent); }
html[dir="rtl"] .chapter-line { background: linear-gradient(270deg, var(--lav), transparent); }
.chapter-name { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--text); }

.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: clamp(44px, 6vw, 80px); text-align: start; }
.title { font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: 1.25; letter-spacing: -.005em; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 46ch; }
.lead--big { font-size: clamp(1.1rem, 1.7vw, 1.4rem); max-width: 52ch; }

/* Split / reveal primitives */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .05em .02em .18em; margin: -.05em -.02em -.18em; }
.wi { display: inline-block; transform: translateY(112%); transition: transform 1.1s var(--ease-out); transition-delay: calc(var(--i, 0) * 38ms); will-change: transform; }
.is-in .wi, .is-in.w .wi { transform: translateY(0); }
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform 1s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
.hero [data-reveal] { transition-delay: calc(.35s + var(--d, 0) * .1s); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  overflow: hidden; white-space: nowrap;
  transition: color .35s ease, transform .3s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.btn::before {
  content: ''; position: absolute; z-index: -1;
  left: 50%; bottom: -10%; width: 0; height: 0; border-radius: 50%;
  transform: translate(-50%, 50%);
  transition: width .55s var(--ease-out), height .55s var(--ease-out);
}
.btn:hover::before { width: 260%; height: 600%; }
.btn > span { display: inline-block; }
.btn-primary { background: var(--pist); color: var(--g-700); box-shadow: 0 12px 34px -12px rgba(225, 247, 200, .55); }
.btn-primary::before { background: var(--white); }
.btn-primary:hover { box-shadow: 0 18px 44px -12px rgba(225, 247, 200, .7); }
.btn-lavender { background: var(--lav); color: var(--white); box-shadow: 0 12px 34px -12px rgba(125, 134, 243, .7); }
.btn-lavender::before { background: var(--pist); }
.btn-lavender:hover { color: var(--g-700); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn-ghost::before { background: var(--pist); }
.btn-ghost:hover { color: var(--g-700); border-color: var(--pist); }
.btn-dark { background: var(--g-700); color: var(--pist); }
.btn-dark::before { background: var(--g-900); }
.btn-sm { padding: 12px 22px; font-size: .92rem; }
.btn-xl { padding: 22px 38px; font-size: 1.12rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--pist); transition: gap .3s ease; }
.link-arrow:hover { gap: 16px; }

/* ============================================================
   INTRO — title sequence
   ============================================================ */
.intro { position: fixed; inset: 0; z-index: 10000; pointer-events: none; }
.intro-panel { position: absolute; left: 0; right: 0; height: 50.2%; background: var(--g-950); transition: transform 1.25s var(--ease-in-out); }
.intro-panel--top { top: 0; }
.intro-panel--bottom { bottom: 0; }
.intro.is-done .intro-panel--top { transform: translateY(-101%); }
.intro.is-done .intro-panel--bottom { transform: translateY(101%); }
.intro-center {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity .5s ease, transform .6s ease;
}
.intro.is-done .intro-center { opacity: 0; transform: scale(.96); }
.intro-mark { width: min(44vw, 300px); overflow: visible; color: transparent; }
.intro-mark path { fill: rgba(225, 247, 200, 0); stroke: var(--lav-soft); stroke-width: .9; stroke-linejoin: round; transition: fill 1s ease; }
.intro.is-filled .intro-mark path { fill: var(--pist); }
.intro-line { width: min(60vw, 280px); height: 1px; background: var(--line); overflow: hidden; }
.intro-line i { display: block; height: 100%; background: var(--pist); transform-origin: right; transform: scaleX(var(--p, 0)); }
.intro-meta { display: flex; align-items: center; justify-content: space-between; width: min(60vw, 280px); font-size: .8rem; color: var(--muted); }
.intro-brand { font-weight: 700; }
.intro-count { font-family: var(--font-token); font-size: .72rem; letter-spacing: .2em; color: var(--pist); }
.intro-corner { position: absolute; width: 26px; height: 26px; border: 1px solid rgba(225, 247, 200, .35); transition: opacity .4s ease; }
.intro-corner--tl { top: 28px; left: 28px; border-right: 0; border-bottom: 0; }
.intro-corner--tr { top: 28px; right: 28px; border-left: 0; border-bottom: 0; }
.intro-corner--bl { bottom: 28px; left: 28px; border-right: 0; border-top: 0; }
.intro-corner--br { bottom: 28px; right: 28px; border-left: 0; border-top: 0; }
.intro.is-done .intro-corner { opacity: 0; }

/* ============================================================
   CHROME — progress, cursor, HUD
   ============================================================ */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9500; pointer-events: none; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--lav), var(--pist)); transform-origin: right; transform: scaleX(0); }

.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; display: none; }
html.has-cursor .cursor { display: block; }
.cursor-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--pist); transform: translate(-50%, -50%); }
.cursor-ring {
  position: absolute; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(225, 247, 200, .7);
  transform: translate(-50%, -50%) scale(1);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .3s ease, border-color .3s ease;
  display: grid; place-items: center;
}
.cursor-label { font-family: var(--font-body); font-weight: 700; font-size: .78rem; color: var(--g-700); opacity: 0; transition: opacity .2s ease; white-space: nowrap; }
.cursor.is-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--pist); background: rgba(225, 247, 200, .08); }
.cursor.is-label .cursor-ring { width: 84px; height: 84px; background: var(--pist); border-color: var(--pist); }
.cursor.is-label .cursor-label { opacity: 1; }
.cursor.is-label .cursor-dot { opacity: 0; }
.cursor.is-down .cursor-ring { transform: translate(-50%, -50%) scale(.85); }

.hud {
  position: fixed; bottom: 22px; inset-inline-start: 26px; z-index: 9400;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-token); font-size: .64rem; letter-spacing: .22em; color: var(--muted);
  pointer-events: none; opacity: 0; transition: opacity .8s ease;
}
body:not(.is-loading) .hud { opacity: 1; }
.hud-rec { display: inline-flex; align-items: center; gap: 7px; color: #ff6b6b; }
.hud-rec i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: blink 1.4s infinite; }
@keyframes blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: .15; } }
.hud-tc { color: var(--pist); }
.hud-ch { font-family: var(--font-body); letter-spacing: 0; font-size: .8rem; font-weight: 700; color: var(--muted); }
.hud-ch::before { content: '/'; margin-inline-end: 10px; opacity: .4; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 900;
  transition: transform .5s var(--ease-out), background .4s ease, backdrop-filter .4s ease;
  transform: translateY(-110%);
}
body:not(.is-loading) .site-header { transform: none; }
body:not(.is-loading) .site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled { background: rgba(7, 18, 10, .72); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-inline: var(--gutter); }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pist); }
.brand-mark { width: 46px; height: 36px; color: var(--pist); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text b { font-size: .84rem; color: var(--text); }
.brand-text small { font-family: var(--font-token); font-size: .5rem; letter-spacing: .22em; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-weight: 700; font-size: .92rem; }
.nav-links a { position: relative; display: inline-flex; align-items: baseline; gap: 7px; color: rgba(238, 245, 234, .8); padding-block: 6px; transition: color .25s ease; }
.nav-links a .n { font-family: var(--font-token); font-size: .55rem; letter-spacing: .18em; color: var(--lav-soft); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--pist); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
.nav-links a:hover, .nav-links a.is-active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 42px; padding-inline: 12px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-family: var(--font-token); font-size: .7rem; letter-spacing: .14em; color: var(--text);
  transition: background .25s, border-color .25s, color .25s;
}
.lang-switch:hover { background: var(--pist); border-color: var(--pist); color: var(--g-700); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; z-index: 1001; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease-out), top .4s var(--ease-out); }
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Fullscreen menu */
.menu {
  position: fixed; inset: 0; z-index: 950; background: var(--g-950);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease-in-out);
  display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
  overflow: hidden;
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu-mark { position: absolute; inset-inline-end: -20%; bottom: -12%; width: 90vw; max-width: 720px; color: transparent; }
.menu-mark use { color: transparent; stroke: var(--lav); stroke-width: .5; opacity: .35; }
.menu-links { display: flex; flex-direction: column; gap: 6px; position: relative; }
.menu-links a { display: flex; align-items: baseline; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 8vw, 3.4rem); line-height: 1.35; color: var(--text); opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .8s var(--ease-out); }
.menu-links a span { font-family: var(--font-token); font-size: .7rem; letter-spacing: .2em; color: var(--lav-soft); }
.menu.is-open .menu-links a { opacity: 1; transform: none; }
.menu.is-open .menu-links a:nth-child(1) { transition-delay: .25s; } .menu.is-open .menu-links a:nth-child(2) { transition-delay: .3s; } .menu.is-open .menu-links a:nth-child(3) { transition-delay: .35s; }
.menu.is-open .menu-links a:nth-child(4) { transition-delay: .4s; } .menu.is-open .menu-links a:nth-child(5) { transition-delay: .45s; } .menu.is-open .menu-links a:nth-child(6) { transition-delay: .5s; }
.menu-foot { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; position: relative; opacity: 0; transition: opacity .6s ease .6s; }
.menu.is-open .menu-foot { opacity: 1; }
.menu-lang { font-family: var(--font-token); font-size: .7rem; letter-spacing: .16em; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) var(--gutter) 120px;
  background: radial-gradient(1200px 700px at 80% 20%, rgba(125, 134, 243, .14), transparent 60%),
              radial-gradient(900px 600px at 15% 90%, rgba(225, 247, 200, .08), transparent 60%),
              linear-gradient(180deg, var(--g-950) 0%, var(--g-800) 60%, var(--g-700) 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(700px 500px at var(--lx, 70%) var(--ly, 40%), rgba(125, 134, 243, .18), transparent 65%);
  transition: background-position .2s ease; }
.hero-mark {
  position: absolute; z-index: 1; inset-inline-end: -8%; top: 50%;
  width: min(66vw, 980px); transform: translateY(-50%); overflow: visible; pointer-events: none;
  color: var(--pist); opacity: 0; transition: opacity 1.4s ease;
}
body:not(.is-loading) .hero-mark { opacity: 1; }
.hero-mark-fill { color: rgba(225, 247, 200, .035); }
.hero-mark-line path { fill: none; stroke: rgba(169, 175, 247, .7); stroke-width: .55; stroke-linejoin: round; }
.hero-mark-nodes rect { fill: var(--pist); opacity: 0; transition: opacity .6s ease; }
.hero-mark.is-drawn .hero-mark-nodes rect { opacity: .55; }
.frame i { position: absolute; z-index: 2; width: 30px; height: 30px; border: 1px solid rgba(225, 247, 200, .3); pointer-events: none; opacity: 0; transition: opacity 1s ease .6s; }
body:not(.is-loading) .frame i { opacity: 1; }
.frame .tl { top: calc(var(--header-h) + 22px); left: 22px; border-right: 0; border-bottom: 0; }
.frame .tr { top: calc(var(--header-h) + 22px); right: 22px; border-left: 0; border-bottom: 0; }
.frame .bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.frame .br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

.hero-content { position: relative; z-index: 3; max-width: 860px; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(225, 247, 200, .55); } 60% { box-shadow: 0 0 0 10px rgba(225, 247, 200, 0); } }

.hero-title { font-size: clamp(2.7rem, 7.4vw, 6.8rem); line-height: 1.2; font-weight: 700; margin-bottom: 28px; letter-spacing: -.01em; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--pist); }
.hero-title .accent-2 { color: var(--lav-soft); }
.hero-sub { font-size: clamp(1.05rem, 1.55vw, 1.32rem); color: var(--muted); max-width: 600px; margin-bottom: 40px; --d: 1; }
.hero-sub b { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; --d: 2; }
.hero-ctas .btn { padding: 18px 34px; font-size: 1.05rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 56px); --d: 3; }
.hstat { min-width: 150px; position: relative; padding-inline-start: 18px; }
.hstat::before { content: ''; position: absolute; inset-inline-start: 0; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(180deg, var(--pist), transparent); }
.hstat b { display: block; font-family: var(--font-num); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15; color: var(--white); }
.hstat b i { font-style: normal; color: var(--pist); }
.hstat b em { font-family: var(--font-display); font-style: normal; font-size: .75em; }
.hstat > span { display: block; font-size: .9rem; color: var(--muted); }

.scroll-cue {
  position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; color: var(--muted-2);
  opacity: 0; transition: opacity 1s ease 1.2s;
}
body:not(.is-loading) .scroll-cue { opacity: 1; }
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(180deg, var(--pist), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateY(-100%); animation: cue 2.2s var(--ease-in-out) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 50% { transform: translateY(0); } 100% { transform: translateY(100%); } }
.hero-meta {
  position: absolute; z-index: 3; left: 30px; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; display: flex; gap: 22px;
  font-family: var(--font-token); font-size: .58rem; letter-spacing: .3em; color: var(--muted-2);
  opacity: 0; transition: opacity 1s ease 1.4s;
}
html[dir="ltr"] .hero-meta { left: auto; right: 30px; }
body:not(.is-loading) .hero-meta { opacity: 1; }
.hero-meta span + span::before { content: '·'; margin-block-end: 22px; display: block; }

/* ============================================================
   FILM STRIP / CLIENTS
   ============================================================ */
.strip { position: relative; padding-block: 40px 0; background: var(--g-700); }
.strip-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-inline: var(--gutter); margin-bottom: 26px; }
.strip-note { font-family: var(--font-token); font-size: .6rem; letter-spacing: .26em; color: var(--muted-2); }

.film { position: relative; background: var(--g-950); padding-block: 26px; overflow: hidden; }
.film::before, .film::after {
  content: ''; position: absolute; left: 0; right: 0; height: 12px;
  background-image: radial-gradient(7px 4.5px at center, rgba(225, 247, 200, .55) 0 98%, transparent 100%);
  background-size: 34px 12px; background-repeat: repeat-x;
  opacity: .8;
}
.film::before { top: 7px; }
.film::after { bottom: 7px; }
.film-track { display: flex; align-items: center; gap: clamp(48px, 5vw, 84px); width: max-content; padding-block: 18px; padding-inline-end: clamp(48px, 5vw, 84px); animation: ticker 48s linear infinite; }
.film:hover .film-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
html[dir="rtl"] .film-track { animation-name: ticker-rtl; }
@keyframes ticker-rtl { to { transform: translateX(50%); } }
.logo { display: inline-flex; align-items: center; justify-content: center; height: 64px; flex-shrink: 0; opacity: .9; transition: opacity .3s ease; }
.logo img { width: auto; max-width: none; object-fit: contain; transition: transform .35s ease; }
.logo--4twins img { height: 24px; } .logo--tawuniya img { height: 30px; } .logo--guidist img { height: 28px; } .logo--calo img { height: 32px; }
.logo--direct img { height: 34px; } .logo--barq img { height: 34px; } .logo--alsafi img { height: 38px; } .logo--shawarmer img { height: 40px; }
.logo--reefi img { height: 44px; } .logo--snb img { height: 48px; } .logo--tarbyah img { height: 52px; } .logo--osus img { height: 50px; }
.logo--dkhoni img { height: 52px; } .logo--calma img { height: 56px; } .logo--kholood img, .logo--ettifaq img { height: 56px; }
.logo:hover { opacity: 1; }
.logo:hover img { transform: translateY(-2px); }

/* ============================================================
   01 ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--g-700) 0%, var(--g-800) 100%); }
.statement {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 3.15rem); line-height: 1.6;
  max-width: 1080px; margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--white);
}
.statement .sw { opacity: .16; display: inline-block; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }

.zeros { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
.zero {
  display: flex; align-items: center; gap: 22px; padding: 22px 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(224, 235, 244, .03);
  transition: border-color .4s ease, background .4s ease, transform .5s var(--ease-out);
}
.zero:hover { border-color: rgba(225, 247, 200, .35); background: rgba(225, 247, 200, .05); transform: translateX(-6px); }
html[dir="ltr"] .zero:hover { transform: translateX(6px); }
.zero b { font-family: var(--font-num); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; color: var(--pist); min-width: 1.2em; text-align: center; }
.zero--inf b { color: var(--lav-soft); }
.zero span { font-weight: 700; font-size: 1.1rem; color: var(--text); }

.sparkers {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(30px, 4vw, 52px); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--g-800), var(--g-950));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
  transform-style: preserve-3d;
}
.sparkers-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(500px 360px at var(--mx, 80%) var(--my, 0%), rgba(125, 134, 243, .35), transparent 65%); transition: opacity .4s; }
.sparkers-mark { position: absolute; z-index: -1; inset-inline-end: -14%; bottom: -18%; width: 68%; color: transparent; }
.sparkers-mark use { color: transparent; stroke: rgba(225, 247, 200, .35); stroke-width: .5; }
.sparkers h3 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); color: var(--pist); line-height: 1.3; }
.sparkers p { color: var(--muted); font-size: 1.08rem; max-width: 46ch; }
.sparkers p em { font-style: normal; color: var(--lav-soft); font-weight: 700; }

/* ============================================================
   02 CLIENTS WALL
   ============================================================ */
.clients { background: var(--g-900); }
.clients .title em { font-style: normal; color: var(--pist); }
.wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cell {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  aspect-ratio: 1.2; padding: 22px 16px; border-radius: 18px;
  background: rgba(224, 235, 244, .035); border: 1px solid var(--line);
  transition: background .35s ease, border-color .35s ease, transform .5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 30ms);
}
.cell:hover { background: rgba(225, 247, 200, .07); border-color: rgba(225, 247, 200, .35); transform: translateY(-4px); }
.cell img { max-height: 54px; max-width: 78%; width: auto; object-fit: contain; }
.cell figcaption { font-size: .78rem; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.4; }
.cell--join { border: 1px dashed rgba(125, 134, 243, .55); background: rgba(125, 134, 243, .08); color: var(--text); gap: 6px; }
.cell--join:hover { background: rgba(125, 134, 243, .18); border-color: var(--lav-soft); }
.join-mark { font-family: var(--font-num); font-size: 2.2rem; line-height: 1; color: var(--lav-soft); }
.cell--join b { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.cell--join small { font-size: .78rem; color: var(--muted); text-align: center; }
.wall-stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 90px); margin-top: clamp(40px, 5vw, 64px); padding-top: 34px; border-top: 1px solid var(--line); }
.wstat b { display: flex; align-items: baseline; gap: .1em; font-family: var(--font-num); font-weight: 700; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; color: var(--white); }
.wstat b i { font-style: normal; color: var(--pist); }
.wstat b em { font-family: var(--font-display); font-style: normal; font-size: .5em; color: var(--pist); margin-inline-start: .15em; }
.wstat > span { display: block; color: var(--muted); font-size: .92rem; }

/* ============================================================
   02 SERVICES
   ============================================================ */
.services { background: var(--g-800); }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.svc-stage { order: 2; position: sticky; top: calc(var(--header-h) + 10px); height: calc(100vh - var(--header-h) - 40px); min-height: 520px; }
.svc-panel {
  position: relative; height: 100%; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(700px 500px at 20% 0%, rgba(125, 134, 243, .22), transparent 60%), linear-gradient(160deg, var(--g-700), var(--g-950));
  border: 1px solid var(--line);
}
.svc-scene { position: absolute; inset: 0; padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; text-align: start; opacity: 0; transition: opacity .6s ease; }
.svc-scene.is-active { opacity: 1; }
.svc-word {
  position: absolute; inset-inline-end: -2%; top: 50%; transform: translateY(-50%) scale(.94);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 15vw, 14rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(225, 247, 200, .35);
  opacity: 0; transition: opacity .8s ease, transform 1.1s var(--ease-out); white-space: nowrap;
}
.svc-scene.is-active .svc-word { opacity: 1; transform: translateY(-50%) scale(1); }
.svc-ico { width: 64px; height: 64px; color: var(--pist); padding: 14px; border-radius: 18px; background: rgba(225, 247, 200, .08); border: 1px solid rgba(225, 247, 200, .18); position: relative; transform: translateY(-14px); opacity: 0; transition: transform .8s var(--ease-out) .1s, opacity .6s ease .1s; }
.svc-scene.is-active .svc-ico { transform: none; opacity: 1; }
.svc-scene p { position: relative; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text); max-width: 34ch; transform: translateY(14px); opacity: 0; transition: transform .8s var(--ease-out) .15s, opacity .6s ease .15s; }
.svc-scene.is-active p { transform: none; opacity: 1; }

.svc-list { order: 1; display: flex; flex-direction: column; }
.svc-item {
  min-height: 40vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; text-align: start;
  padding-block: 28px; border-top: 1px solid var(--line);
  opacity: .32; transition: opacity .5s ease;
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item.is-active { opacity: 1; }
.svc-n { font-family: var(--font-token); font-size: .7rem; letter-spacing: .28em; color: var(--lav-soft); }
.svc-item h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.3; }
.svc-item.is-active h3 { color: var(--pist); }
.svc-item p { color: var(--muted); max-width: 44ch; display: none; }

.promise {
  margin-top: clamp(60px, 8vw, 110px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(125, 134, 243, .28), rgba(125, 134, 243, .06));
  border: 1px solid rgba(125, 134, 243, .4);
}
.promise-text { flex: 1 1 420px; text-align: start; }
.promise h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); margin-top: 10px; line-height: 1.4; }

/* ============================================================
   03 NUMBERS
   ============================================================ */
.numbers { background: var(--g-900); overflow: hidden; }
.numbers-light { position: absolute; left: 50%; top: 45%; width: 1100px; height: 700px; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(125, 134, 243, .32), rgba(125, 134, 243, .08) 45%, transparent 70%); filter: blur(30px); animation: breathe 7s ease-in-out infinite; pointer-events: none; }
@keyframes breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .9; } 50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; } }
.big-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; margin-bottom: clamp(50px, 7vw, 90px); }
.bstat b { display: flex; align-items: baseline; justify-content: center; gap: .12em; font-family: var(--font-num); font-weight: 700; font-size: clamp(3.4rem, 8.4vw, 7.6rem); line-height: 1.05; color: var(--white); letter-spacing: -.01em; white-space: nowrap; }
.bstat b i { font-style: normal; color: var(--pist); font-size: .7em; }
.bstat b em { font-family: var(--font-display); font-style: normal; font-weight: 700; font-size: .42em; color: var(--pist); }
.bstat > span { display: block; margin-top: 10px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 1.6vw, 1.3rem); color: var(--muted); }

.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ticket {
  position: relative; padding: 26px 30px; border-radius: 18px;
  background: rgba(224, 235, 244, .05); border: 1px dashed rgba(225, 247, 200, .3);
  -webkit-mask: radial-gradient(12px at 0 50%, transparent 98%, #000) -12px 50% / 100% 100% no-repeat, radial-gradient(12px at 100% 50%, transparent 98%, #000) 12px 50% / 100% 100% no-repeat;
  mask: radial-gradient(12px at 0 50%, transparent 98%, #000) -12px 50% / 100% 100% no-repeat, radial-gradient(12px at 100% 50%, transparent 98%, #000) 12px 50% / 100% 100% no-repeat;
  -webkit-mask-composite: source-in; mask-composite: intersect;
  transition: background .3s ease;
}
.ticket:hover { background: rgba(225, 247, 200, .08); }
.ticket-tag { display: inline-block; font-family: var(--font-token); font-size: .58rem; letter-spacing: .26em; color: var(--lav-soft); margin-bottom: 12px; }
.ticket p { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.ticket p b { color: var(--pist); font-family: var(--font-num); }

/* ============================================================
   RIBBON
   ============================================================ */
.ribbon { overflow: hidden; padding-block: 26px; border-block: 1px solid var(--line); background: var(--g-950); }
.ribbon-track { display: flex; align-items: center; gap: 44px; width: max-content; animation: ticker 40s linear infinite; padding-inline-end: 44px; }
html[dir="rtl"] .ribbon-track { animation-name: ticker-rtl; }
.ribbon span { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5.5vw, 4.8rem); line-height: 1.5; color: var(--pist); white-space: nowrap; }
.ribbon span.o { color: transparent; -webkit-text-stroke: 1px rgba(225, 247, 200, .55); }
.ribbon-dia { width: 44px; height: 22px; fill: var(--lav); flex-shrink: 0; }

/* ============================================================
   04 WORK — REEL
   ============================================================ */
.reel { position: relative; background: var(--g-700); }
.reel-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: clamp(18px, 2.5vw, 34px); padding-block: 30px; overflow: hidden; }
.reel-head { position: relative; }
.reel-titles { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: start; }
.reel-titles .title { font-size: clamp(1.8rem, 3.6vw, 3.2rem); }
.reel-head .chapter { margin-bottom: 18px; }
.reel-hint { position: absolute; inset-inline-end: var(--gutter); top: 0; display: inline-flex; align-items: center; gap: 12px; font-size: .8rem; font-weight: 700; color: var(--muted-2); }
.reel-hint i { width: 70px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.reel-hint i::after { content: ''; position: absolute; inset: 0; background: var(--pist); transform: translateX(100%); animation: hint 2s var(--ease-in-out) infinite; }
@keyframes hint { to { transform: translateX(-100%); } }

.film--reel { background: var(--g-950); padding-block: 26px; }
.reel-track { display: flex; align-items: stretch; gap: 16px; width: max-content; padding: 18px var(--gutter); will-change: transform; }

.slate {
  position: relative; width: 250px; flex-shrink: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  padding: 22px; border-radius: 18px;
  background: linear-gradient(160deg, var(--g-700), var(--g-900)); border: 1px solid var(--line);
  margin-inline-start: 26px;
}
.slate:first-child { margin-inline-start: 0; }
.slate::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px; background: repeating-linear-gradient(-45deg, var(--pist) 0 12px, var(--g-950) 12px 24px); opacity: .9; }
.slate-top { position: absolute; top: 24px; left: 20px; right: 20px; display: flex; justify-content: space-between; font-family: var(--font-token); font-size: .56rem; letter-spacing: .22em; color: var(--muted-2); }
.slate-logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; margin-bottom: 12px; }
.slate-logo--kholood, .slate-logo--ettifaq { height: 62px; }
.slate-logo--dkhoni, .slate-logo--osus { height: 56px; }
.slate-logo--snb { height: 50px; }
.slate-logo--barq, .slate-logo--direct { height: 36px; }
.slate h3 { font-size: 1.45rem; line-height: 1.3; }
.slate-handle { font-family: var(--font-num); font-size: .78rem; color: var(--muted); }
.slate-total { margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.slate-total small { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.slate-total b { font-family: var(--font-num); font-size: 1.35rem; color: var(--pist); }

.clip {
  position: relative; display: block; flex-shrink: 0; overflow: hidden;
  height: clamp(330px, 100vh - 440px, 600px); aspect-ratio: 9 / 16; border-radius: 16px;
  background: var(--g-900); border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), border-color .4s ease;
}
.clip:hover { transform: translateY(-8px); border-color: rgba(225, 247, 200, .45); }
.clip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .5s ease; filter: saturate(.85); }
.clip:hover img { transform: scale(1.06); filter: saturate(1.05); }
.clip::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 18, 10, .15) 0%, transparent 30%, transparent 55%, rgba(7, 18, 10, .9) 100%); }
.clip-views { position: absolute; z-index: 2; bottom: 14px; inset-inline-start: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: rgba(7, 18, 10, .55); border: 1px solid var(--line-2); font-family: var(--font-num); font-weight: 700; font-size: .84rem; color: var(--white); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.clip-views .i { color: var(--pist); width: 15px; height: 15px; }
.clip-play { position: absolute; z-index: 2; top: 50%; left: 50%; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--pist); color: var(--g-700); transform: translate(-50%, -50%) scale(.6); opacity: 0; transition: transform .45s var(--ease-out), opacity .3s ease; }
.clip-play .i { width: 24px; height: 24px; margin-inline-start: 3px; }
.clip:hover .clip-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.reel-end {
  position: relative; flex-shrink: 0; width: 340px; margin-inline-start: 26px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 34px;
  border-radius: 18px; background: var(--lav); color: var(--white);
  transition: transform .5s var(--ease-out);
}
.reel-end:hover { transform: translateY(-8px); }
.reel-end-kicker { font-family: var(--font-token); font-size: .6rem; letter-spacing: .28em; opacity: .8; }
.reel-end b { font-family: var(--font-display); font-size: 2rem; line-height: 1.3; }
.reel-end-cta { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--g-700); background: var(--pist); padding: 12px 18px; border-radius: 999px; width: max-content; margin-top: 10px; }

/* ============================================================
   05 PRODUCTS
   ============================================================ */
.products { background: var(--g-800); }
.posters { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); perspective: 1400px; }
.poster {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 560px; padding: clamp(30px, 4vw, 52px); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 18px;
  transform-style: preserve-3d; transition: transform .25s ease-out, box-shadow .4s ease;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
}
.poster-shine { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, .16), transparent 45%); opacity: 0; transition: opacity .4s ease; }
.poster:hover .poster-shine { opacity: 1; }
.poster--fahem { background: radial-gradient(600px 420px at 100% 0%, rgba(225, 247, 200, .22), transparent 60%), linear-gradient(160deg, var(--g-700), var(--g-950)); color: var(--white); border: 1px solid var(--line); }
.poster--viral { background: radial-gradient(600px 420px at 0% 100%, rgba(25, 53, 31, .45), transparent 60%), linear-gradient(160deg, #8B93F5, #5F69E8); color: var(--white); }
.poster-tag { display: inline-block; width: max-content; font-family: var(--font-token); font-size: .62rem; letter-spacing: .3em; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .08); }
.poster--fahem .poster-tag { color: var(--pist); }
.poster h3 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.2; }
.poster--fahem h3 { color: var(--pist); }
.poster p { font-size: 1.08rem; opacity: .85; max-width: 44ch; }
.poster-stat { margin-top: auto; display: flex; align-items: baseline; gap: 14px; }
.poster-stat b { font-family: var(--font-num); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; }
.poster--fahem .poster-stat b { color: var(--pist); }
.poster-stat span { font-weight: 700; opacity: .85; }
.poster-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.pay { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; opacity: .85; }
.pay i { font-style: normal; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(255, 255, 255, .12); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: linear-gradient(180deg, var(--g-800), var(--g-900)); }
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.founder-photo { position: relative; }
.founder-photo::before { content: ''; position: absolute; inset: -16px; border-radius: 36px; background: linear-gradient(135deg, rgba(125, 134, 243, .5), transparent 45%, rgba(225, 247, 200, .35)); z-index: 0; filter: blur(2px); }
.founder-photo img { position: relative; z-index: 1; width: 100%; border-radius: var(--radius-lg); border: 1px solid rgba(169, 175, 247, .35); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7); filter: contrast(1.02) saturate(.92); }
.founder-photo figcaption { position: absolute; z-index: 2; bottom: -12px; inset-inline-start: 22px; padding: 8px 14px; border-radius: 999px; background: var(--pist); color: var(--g-700); font-family: var(--font-token); font-size: .56rem; letter-spacing: .26em; }
.founder-quote { position: relative; }
.quote-glyph { position: absolute; top: -.35em; inset-inline-start: -.1em; font-family: var(--font-display); font-size: clamp(6rem, 12vw, 11rem); line-height: 1; color: var(--lav); opacity: .35; pointer-events: none; }
.founder-quote blockquote { position: relative; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.45rem, 2.8vw, 2.35rem); line-height: 1.7; color: var(--white); margin-bottom: 30px; }
.founder-quote blockquote em { font-style: normal; color: var(--pist); }
.quote-author b { display: block; font-size: 1.25rem; color: var(--pist); font-family: var(--font-display); }
.quote-author span { color: var(--muted); }

/* ============================================================
   06 CONTACT
   ============================================================ */
.contact { background: var(--g-700); overflow: hidden; padding-bottom: clamp(100px, 14vw, 200px); }
.contact-spot { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(560px circle at var(--x, 70%) var(--y, 30%), rgba(125, 134, 243, .28), transparent 60%); transition: background .1s linear; }
.contact-title { position: relative; font-size: clamp(2.6rem, 8.2vw, 7.6rem); line-height: 1.2; margin-bottom: 22px; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 80px); align-items: start; margin-top: clamp(40px, 5vw, 64px); }
.contact-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-list li a { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 20px 0; border-top: 1px solid var(--line); transition: padding-inline-start .4s var(--ease-out); }
.contact-list li:last-child a { border-bottom: 1px solid var(--line); }
.contact-list li a:hover { padding-inline-start: 12px; }
.contact-list small { font-size: .8rem; color: var(--muted); }
.contact-list span { font-weight: 700; font-size: 1.2rem; color: var(--text); font-family: var(--font-num); }
.contact-list li:last-child span { font-family: var(--font-body); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; overflow: hidden; background: var(--g-950); padding-block: clamp(200px, 24vw, 320px) 30px; }
.footer-mark { position: absolute; left: 50%; top: -4%; transform: translateX(-50%); width: min(112vw, 1440px); height: auto; color: transparent; pointer-events: none; }
.footer-mark use { color: rgba(225, 247, 200, .025); stroke: rgba(125, 134, 243, .5); stroke-width: .4; }
.site-footer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--g-950) 0%, rgba(7, 18, 10, 0) 35%, rgba(7, 18, 10, .55) 100%); pointer-events: none; }
.footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 30px; align-items: center; text-align: center; }
.brand--footer { justify-content: center; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--sky); transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease-out); }
.footer-social a:hover { background: var(--pist); color: var(--g-700); border-color: var(--pist); transform: translateY(-4px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; font-size: .84rem; color: var(--muted-2); }
.footer-meta span:last-child { font-family: var(--font-token); font-size: .56rem; letter-spacing: .26em; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 9400;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px 0 16px; border-radius: 999px;
  background: var(--pist); color: var(--g-700); font-weight: 700;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, opacity .6s ease;
  opacity: 0;
}
html[dir="rtl"] .wa-float { padding: 0 16px 0 20px; }
body:not(.is-loading) .wa-float { opacity: 1; }
.wa-float:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -12px rgba(225, 247, 200, .45); }
.wa-float .i { width: 26px; height: 26px; }


/* ============================================================
   ENGLISH TYPOGRAPHY (Lemon Milk display · Century Gothic text)
   ============================================================ */
html[lang="en"] { --font-display: 'Lemon Milk', 'Century Gothic', sans-serif; --font-body: 'Century Gothic', 'Open Sans', sans-serif; }
html[lang="en"] body { line-height: 1.65; }
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3 { text-transform: uppercase; letter-spacing: .02em; line-height: 1.15; font-weight: 500; }
html[lang="en"] .hero-title { font-size: clamp(2rem, 5.4vw, 5rem); line-height: 1.12; }
html[lang="en"] .title { font-size: clamp(1.5rem, 3.4vw, 2.9rem); line-height: 1.18; text-wrap: balance; }
html[lang="en"] .contact-title { font-size: clamp(1.9rem, 5.6vw, 5rem); line-height: 1.1; }
html[lang="en"] .statement { font-family: var(--font-body); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 2.3rem); line-height: 1.45; }
html[lang="en"] .chapter-name { font-family: var(--font-token); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; }
html[lang="en"] .sparkers h3, html[lang="en"] .promise h3 { font-size: clamp(1.15rem, 1.9vw, 1.6rem); line-height: 1.3; }
html[lang="en"] .svc-item h3 { font-size: clamp(1.15rem, 2vw, 1.8rem); }
html[lang="en"] .svc-word { font-size: clamp(3rem, 8vw, 7.4rem); text-transform: uppercase; letter-spacing: .02em; }
html[lang="en"] .bstat b em, html[lang="en"] .wstat b em, html[lang="en"] .hstat b em { font-family: var(--font-token); font-size: .5em; letter-spacing: .06em; }
html[lang="en"] .bstat > span { font-family: var(--font-body); font-weight: 700; }
html[lang="en"] .bstat b, html[lang="en"] .wstat b { gap: .04em; }
html[lang="en"] .ribbon span { font-size: clamp(1.5rem, 3.8vw, 3.2rem); text-transform: uppercase; letter-spacing: .04em; line-height: 1.4; font-weight: 500; }
html[lang="en"] .slate h3 { font-size: 1rem; line-height: 1.3; }
html[lang="en"] .reel-end b { font-size: 1.3rem; line-height: 1.3; }
html[lang="en"] .poster h3 { font-size: clamp(1.6rem, 2.8vw, 2.5rem); }
html[lang="en"] .founder-quote blockquote { font-family: var(--font-body); font-weight: 400; font-size: clamp(1.2rem, 2.1vw, 1.8rem); line-height: 1.55; }
html[lang="en"] .quote-glyph { font-family: Georgia, 'Times New Roman', serif; top: -.15em; }
html[lang="en"] .quote-author b { font-family: var(--font-body); }
html[lang="en"] .menu-links a { font-size: clamp(1.5rem, 6vw, 2.5rem); }
html[lang="en"] .cell--join b { font-size: .95rem; }
html[lang="en"] .kicker { font-size: .82rem; }
html[lang="en"] .nav-links { font-size: .82rem; }
html[lang="en"] .brand-text b { font-size: .76rem; }
html[lang="en"] .lang-switch { font-family: var(--font-body); font-size: .9rem; letter-spacing: 0; }
html[lang="en"] .contact-list li:last-child span { font-family: var(--font-body); }
html[dir="ltr"] .progress i, html[dir="ltr"] .intro-line i { transform-origin: left; }
html[dir="ltr"] .hero-mark { inset-inline-end: -10%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .wall { grid-template-columns: repeat(4, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .section-head, .reel-titles { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .about-grid, .posters, .contact-grid { grid-template-columns: 1fr; }
  .wall { grid-template-columns: repeat(3, 1fr); }
  .svc { grid-template-columns: 1fr; }
  .svc-stage { display: none; }
  .svc-item { min-height: auto; opacity: 1; padding-block: 26px; }
  .svc-item p { display: block; }
  .svc-item h3 { color: var(--pist); }
  .big-stats { grid-template-columns: 1fr; gap: 34px; }
  .tickets { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; max-width: 560px; }
  .founder-photo { max-width: 320px; }
  .reel-pin { min-height: auto; }
  .reel-track { width: auto; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .reel-track::-webkit-scrollbar { display: none; }
  .reel-track > * { scroll-snap-align: start; }
  .clip { height: 440px; }
  .slate { width: 220px; height: 440px; margin-inline-start: 12px; }
  .reel-end { width: 280px; }
  .hero-meta, .hud-ch, .frame { display: none; }
  .hero-mark { inset-inline-end: -30%; width: 120vw; opacity: .5; top: 46%; }
  .poster { min-height: 480px; }
}
@media (max-width: 640px) {
  .hero { padding-bottom: 100px; }
  .wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cell { padding: 16px 10px; aspect-ratio: 1.1; }
  .cell img { max-height: 44px; }
  .hero-title { font-size: clamp(2.35rem, 11.5vw, 3.6rem); }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 18px; }
  .hstat { min-width: calc(50% - 9px); }
  .hstat:last-child { min-width: 100%; }
  .brand-text { display: none; }
  .logo { height: 52px; }
  .logo img { transform: scale(.82); transform-origin: center; }
  .zero { padding: 18px 20px; }
  .clip { height: 400px; }
  .slate { height: 400px; }
  .contact-ctas .btn { width: 100%; }
  .wa-float span { display: none; }
  .wa-float { width: 56px; padding: 0; justify-content: center; }
  .hud { bottom: 18px; inset-inline-start: 18px; }
  .strip-head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .intro { display: none; }
  body.is-loading { overflow: auto; }
  .wi { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .statement .sw { opacity: 1; }
  .hero-mark { opacity: 1; }
  .film-track { animation: none !important; }
}
