*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}

:root {
  --bg: #050505; 
  --fg: #eeebe4; 
  --y: #c9ff47; 
  --dim: rgba(238,235,228,0.5); 
  --sep: rgba(238,235,228,0.08); 
  --pad: clamp(24px, 6vw, 80px);
  --font-heading: 'Alexandria', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
}

html { scroll-behavior: smooth; }

html, body { 
  font-family: var(--font-body); font-weight: 400; 
  background: var(--bg); color: var(--fg); overflow-x: hidden; 
  width: 100%; max-width: 100vw; position: relative; 
}

h1, h2, h3, h4, .sec-title, .s-number, .service-watermark {
  font-family: var(--font-heading); font-weight: 700; 
}

/* --- CURSOR --- */
#cur{display:none;position:fixed;top:0;left:0;border-radius:50%;pointer-events:none;z-index:9999;width:28px;height:28px;background:var(--fg);mix-blend-mode:difference;transition:width .4s cubic-bezier(.16,1,.3,1),height .4s cubic-bezier(.16,1,.3,1);will-change:transform,width,height; align-items:center; justify-content:center; overflow:hidden;}
#cur.on-link{width:52px;height:52px}

/* --- SCARCITY BANNER --- */
.scarcity-banner { background: rgba(5,5,5,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--sep); color: var(--fg); padding: 12px 20px; font-weight: 500; font-size: clamp(12px, 2vw, 14px); position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; display: flex; justify-content: center; align-items: center; gap: 10px; text-align: center;}
.live-dot { width: 8px; height: 8px; background-color: var(--y); border-radius: 50%; animation: blink 1.5s infinite alternate; box-shadow: 0 0 10px var(--y);}
@keyframes blink { 0% { opacity: 1; } 100% { opacity: 0.2; } }

/* --- REUSABLE COMPONENTS --- */
section { padding: 140px var(--pad); display: flex; flex-direction: column; align-items: center; position: relative; width: 100%; overflow: hidden; }
.sec-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 80px; width: 100%; max-width: 800px; z-index: 2; }
.sec-title { font-size: clamp(36px, 5vw, 64px); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 24px;}
.sec-title em { font-style: normal; color: var(--y); }
.section-desc { font-size: clamp(18px, 2vw, 22px); color: var(--dim); line-height: 1.6; font-weight: 300;}
.section-desc strong { color: var(--fg); font-weight: 500;}

/* --- BUTTONS --- */
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(201,255,71, 0.3); } 70% { box-shadow: 0 0 0 15px rgba(201,255,71, 0); } 100% { box-shadow: 0 0 0 0 rgba(201,255,71, 0); } }

.hero-btns-wrapper { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 24px;}

.btn-primary, .btn-ghost { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 22px 48px; border-radius: 100px; font-family: var(--font-heading); font-size: 18px; font-weight: 600; text-decoration: none; overflow: hidden; z-index: 1; transition: transform .4s cubic-bezier(.16,1,.3,1), color .4s; cursor: pointer; gap: 12px; }
.btn-primary { background: var(--y); color: #000; animation: pulseGlow 2.5s infinite; }
.btn-primary::before { content:''; position: absolute; top: 100%; left: 0; width: 100%; height: 100%; background: var(--fg); transition: transform .5s cubic-bezier(.7,0,.2,1); z-index: -1; border-radius: 50% 50% 0 0; }
.btn-primary:hover::before { transform: translateY(-100%); border-radius: 0; }
.btn-primary:hover { transform: translateY(-4px); color: #000; }
.btn-arrow { font-size: 24px; line-height: 0; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(-6px); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { border-color: var(--y); color: var(--y); transform: translateY(-4px); }
.full-width { width: 100%; }

/* --- 1. HERO (CENTERED & IMPACTFUL) --- */
.hero { height: 100vh; padding: 0 var(--pad); display: flex; align-items: center; justify-content: center; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 120%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.9) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1000px; display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 40px;}
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--fg); margin-bottom: 32px;}
.hero-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--y); }
.hero-title { font-size: clamp(40px, 7vw, 90px); line-height: 1.15; letter-spacing: -0.02em; text-shadow: 0 4px 30px rgba(0,0,0,0.8); margin: 0; margin-bottom: 24px;}
.hero-title .accent { color: var(--y); display: block; margin-top: 8px;}
.exclusive-note { font-size: 18px; color: rgba(238,235,228,0.8); line-height: 1.6; font-weight: 300; margin-bottom: 40px;}
.exclusive-note span { color: var(--fg); font-family: var(--font-heading); font-weight: 700; font-size: 20px; display: block; margin-top: 8px;}

/* --- 2. TRUST (BENTO BOX GRID) --- */
.trust-section { background: var(--bg); border-top: 1px solid var(--sep); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 24px; width: 100%; max-width: 1200px; }
.bento-item { background: #0a0a0a; border: 1px solid var(--sep); border-radius: 24px; padding: 48px 32px; transition: transform 0.4s, border-color 0.4s; display: flex; flex-direction: column; justify-content: center;}
.bento-item.large { grid-column: span 3; background: linear-gradient(135deg, #111 0%, #080808 100%); border-color: rgba(201,255,71,0.2); }
.bento-item:hover { transform: translateY(-8px); border-color: var(--y); }
.icon-minimal { width: 48px; height: 48px; margin-bottom: 32px; color: var(--y); }
.bento-content h3 { font-size: 24px; color: var(--fg); margin-bottom: 16px; line-height: 1.3; }
.bento-item.large h3 { font-size: 36px; }
.bento-content p { font-size: 16px; color: var(--dim); line-height: 1.8; font-weight: 300;}
.bento-item.large p { font-size: 20px; max-width: 800px;}

/* --- 3. MANIFESTO (CINEMATIC STATEMENT) --- */
.manifesto-section { padding: 140px var(--pad); background: #020202; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); }
.manifesto-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.quote-mark { font-family: var(--font-heading); font-weight: 800; font-size: 120px; color: rgba(201,255,71,0.1); line-height: 0; position: absolute; top: 40px; left: 50%; transform: translateX(-50%); z-index: -1; }
.manifesto-content h2 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--dim); line-height: 1.2; margin-bottom: 32px; }
.manifesto-content h2 span { color: var(--fg); }
.manifesto-text { font-size: clamp(18px, 2vw, 24px); color: rgba(238,235,228,0.7); line-height: 1.8; margin-bottom: 40px; font-weight: 300;}

.manifesto-video-wrapper { width: 100%; max-width: 900px; aspect-ratio: 16/9; margin: 48px auto; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.8); background: #000; position: relative; }
.manifesto-video-wrapper video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none;}
.manifesto-video-wrapper:hover video { filter: brightness(1); transform: scale(1.02); }

.manifesto-keywords { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.manifesto-keywords span { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--y); letter-spacing: 0.05em; }
.manifesto-keywords .dot { width: 6px; height: 6px; background: var(--sep); border-radius: 50%; }
.manifesto-conclusion { font-family: var(--font-body); font-size: 22px; color: var(--fg); font-weight: 500; font-style: italic; }

/* --- 4. PROOF (EXPANDABLE ACCORDION GALLERY) --- */
.proof-section { background: var(--bg); border-top: 1px solid var(--sep); }
.accordion-gallery { display: flex; width: 100%; max-width: 1200px; height: 65vh; min-height: 400px; gap: 16px; margin: 0 auto; position: relative; z-index: 2;}
.acc-item { flex: 1; position: relative; border-radius: 24px; overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.05); transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s; cursor: pointer; }
.acc-item video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) grayscale(40%); transition: filter 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none;}

/* Hover dynamics for desktop */
@media (hover: hover) and (pointer: fine) {
  .accordion-gallery:hover .acc-item { flex: 1; }
  .accordion-gallery .acc-item:hover { flex: 4; border-color: rgba(201,255,71,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.8);}
  .accordion-gallery .acc-item:hover video { filter: brightness(1.05) grayscale(0%); transform: scale(1.02); }
}

/* --- 5. SERVICES (FULL-WIDTH ROWS) --- */
.services-section { background: #0a0a0a; border-top: 1px solid var(--sep); }
.services-list-container { width: 100%; max-width: 1200px; display: flex; flex-direction: column; }
.service-row { display: flex; align-items: flex-start; gap: 64px; padding: 64px 0; border-bottom: 1px solid var(--sep); transition: padding 0.4s, background 0.4s; }
.service-row:first-child { border-top: 1px solid var(--sep); }
.service-row:hover { padding: 64px 32px; background: rgba(255,255,255,0.02); border-bottom-color: var(--y); }
.s-number { font-family: var(--font-heading); font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.05); line-height: 0.8; transition: color 0.4s; }
.service-row:hover .s-number { color: var(--y); }
.s-content { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.s-content h3 { font-size: 32px; color: var(--fg); line-height: 1.3; font-family: var(--font-heading); font-weight: 700;}
.s-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.s-list li { position: relative; padding-right: 24px; font-size: 18px; color: var(--dim); line-height: 1.6; font-weight: 300; }
.s-list li::before { content: ''; position: absolute; right: 0; top: 12px; width: 6px; height: 6px; background: var(--y); border-radius: 50%; opacity: 0.5; }
.service-row:hover .s-list li { color: var(--fg); }

/* --- 6. ULTIMATE CTA & FOOTER --- */
.ultimate-cta-section { padding: 180px var(--pad); background: radial-gradient(circle at 50% 100%, rgba(201,255,71,0.08) 0%, var(--bg) 60%); text-align: center; border-top: 1px solid var(--sep); }
.ultimate-content h3 { font-size: clamp(36px, 5vw, 64px); color: var(--dim); line-height: 1.3; margin-bottom: 40px; font-family: var(--font-heading); font-weight: 700;}
.ultimate-content h3 span { color: var(--fg); display: block; margin-top: 8px; }

.minimal-footer { padding: 40px var(--pad); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--sep); background: #050505; }
.minimal-footer .f-logo { font-family: var(--font-heading); font-weight: 700; font-size: 18px; letter-spacing: 0.1em; }
.minimal-footer .f-logo span { color: var(--y); }
.minimal-footer .f-copy { font-size: 14px; color: rgba(238,235,228,0.3); }

/* --- GSAP HIDE INITIAL STATE --- */
.gs-reveal, .gs-fade-up { visibility: hidden; }

/* --- STICKY MOBILE CTA --- */
.sticky-mobile-cta { display: none; }

/* --- MOBILE RESPONSIVE --- */
@media(max-width:768px){
  body, a, button { cursor: auto !important; }
  #cur { display: none !important; }
  
  section { padding: 80px 20px; width: 100%; box-sizing: border-box; }
  .sec-head { margin-bottom: 48px; }
  .sec-title { font-size: 32px; }
  
  /* Hero */
  .hero { padding-bottom: 40px; }
  .hero-title { font-size: 42px; }
  .hero-btns-wrapper { flex-direction: column; width: 100%; gap: 12px;}
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 20px; font-size: 16px; }

  /* Bento Trust */
  .bento-grid { grid-template-columns: 1fr; gap: 16px; }
  .bento-item.large { grid-column: span 1; }
  .bento-item.large h3 { font-size: 24px; }
  .bento-item.large p { font-size: 16px; }
  .bento-item { padding: 32px 24px; }
  
  /* Manifesto */
  .manifesto-section { padding: 100px 20px; }
  .manifesto-content h2 { font-size: 32px; }
  .manifesto-text { font-size: 20px; }
  .manifesto-keywords span { font-size: 16px; }
  .manifesto-video-wrapper { margin: 32px auto; border-radius: 12px; }
  
  /* Accordion Gallery Mobile Fallback */
  .accordion-gallery { flex-direction: column; height: auto; gap: 16px;}
  .acc-item { width: 100%; height: 200px; flex: none !important; border-radius: 16px;}
  .acc-item video { filter: brightness(0.9) grayscale(0%); }

  /* Services Row */
  .service-row { flex-direction: column; gap: 24px; padding: 40px 0; }
  .service-row:hover { padding: 40px 0; background: transparent; border-bottom-color: var(--sep); }
  .s-number { font-size: 64px; }
  .s-content h3 { font-size: 24px; }
  .s-list li { font-size: 16px; }
  
  .ultimate-cta-section { padding: 100px 20px; }

  .minimal-footer { flex-direction: column; text-align: center; gap: 16px; padding-bottom: 120px; }

  .sticky-mobile-cta {
    display: block; position: fixed; bottom: 0; left: 0; width: 100%;
    padding: 16px 20px; background: linear-gradient(to top, rgba(5,5,5,1) 50%, rgba(5,5,5,0));
    z-index: 9999; box-sizing: border-box;
  }
}