/* ═══════════════════════════════════════════════════════════
   yassercontent v3 — "Futuristic" (bergside/awesome-design-skills)
   Light surface · electric blue #3B82F6 → violet #8B5CF6
   Sharp radii 4/8px · tech grid · mono HUD labels
   Arabic: Noto Kufi Arabic (display) + Rubik (body)
   Latin/tech: Audiowide (display) + Anonymous Pro (mono)
   ═══════════════════════════════════════════════════════════ */

:root {
  --surface:   #080c16;      /* deep tech navy-black */
  --surface-2: #0e1424;
  --text:      #eef1f8;
  --text-2:    #96a0b5;
  --text-3:    #5b6478;
  --primary:   #3b82f6;
  --secondary: #8b5cf6;
  --border:    rgba(148,163,184,.14);
  --border-2:  rgba(148,163,184,.22);
  --grad:      linear-gradient(120deg, #3b82f6, #8b5cf6);

  --font-display: 'Noto Kufi Arabic', sans-serif;
  --font-body:    'Rubik', 'Noto Kufi Arabic', sans-serif;
  --font-tech:    'Audiowide', 'Noto Kufi Arabic', sans-serif;
  --font-mono:    'Anonymous Pro', monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --ease-snap: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--surface);
  color: var(--text);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); }

/* ─── Background: blueprint grid + drifting light gradients ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--surface);
  overflow: hidden;
}
.bg::after {
  /* engineering grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}

.blob {
  position: absolute;
  width: 48vmax;
  height: 48vmax;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
  will-change: transform;
}
.blob-1 {
  background: radial-gradient(circle at 40% 40%, #3b82f6, transparent 65%);
  top: -18vmax; right: -10vmax;
  animation: drift-1 30s var(--ease-snap) infinite alternate;
}
.blob-2 {
  background: radial-gradient(circle at 55% 45%, #8b5cf6, transparent 65%);
  bottom: -20vmax; left: -12vmax;
  animation: drift-2 38s var(--ease-snap) infinite alternate;
}
.blob-3 {
  background: radial-gradient(circle at 50% 50%, #60a5fa, transparent 60%);
  top: 40%; left: 35%;
  width: 34vmax; height: 34vmax;
  opacity: .14;
  animation: drift-3 46s var(--ease-snap) infinite alternate;
}
@keyframes drift-1 { to { transform: translate(-12vmax, 10vmax) scale(1.15); } }
@keyframes drift-2 { to { transform: translate(10vmax, -9vmax) scale(.9); } }
@keyframes drift-3 { to { transform: translate(-7vmax, -10vmax) rotate(30deg); } }

.grain { display: none; }

/* ─── Layout ─────────────────────────────────────────────── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.wrap-narrow { max-width: 780px; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section::before {
  /* hairline separator with center tick — technical rhythm */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}

/* ─── Urgency bar ────────────────────────────────────────── */
.urgency {
  position: relative;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 16px;
  font-size: .82rem;
  color: #fff;
  background: linear-gradient(90deg, #1d4ed8, #7c3aed);
}
.urgency b { font-weight: 600; }
.urgency a {
  font-size: .78rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 3px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.5);
  transition: background .2s;
  cursor: pointer;
}
.urgency a:hover { background: rgba(255,255,255,.15); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,12,22,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-tech);
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--text);
}
.brand-dot { color: var(--primary); }
.nav-cta {
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  background: rgba(59,130,246,.16);
  border: 1px solid rgba(59,130,246,.45);
  transition: background .2s var(--ease-snap);
  cursor: pointer;
}
.nav-cta:hover { background: rgba(59,130,246,.35); }

/* ─── Typography ─────────────────────────────────────────── */
h1 {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
}
h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: clamp(22px, 3vw, 36px);
}
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--primary);
  letter-spacing: .12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* mono HUD section labels */
.sec-num {
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--text-3);
  letter-spacing: .16em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-num::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--text-2);
  max-width: 62ch;
}
.lead em { font-style: normal; color: var(--primary); font-weight: 500; }

/* ─── Panels (class kept as .glass for shared markup) ────── */
.glass {
  background: linear-gradient(160deg, #0d1322, #0a0f1c);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: inset 0 1px 0 rgba(148,163,184,.06), 0 16px 40px rgba(0,0,0,.35);
  transition: border-color .25s var(--ease-snap), box-shadow .25s var(--ease-snap), transform .25s var(--ease-snap);
}
.glass:hover {
  border-color: rgba(59,130,246,.45);
  box-shadow: inset 0 1px 0 rgba(148,163,184,.06), 0 16px 44px rgba(59,130,246,.14);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero { padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 8vw, 100px); }
.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--text-2);
  max-width: 58ch;
  margin: 24px 0 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(44px, 6vw, 64px);
}

.hero-video {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border-2);
}
.hero-video::before {
  /* corner brackets — HUD frame */
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--primary), var(--primary)) top right / 22px 1px,
    linear-gradient(var(--primary), var(--primary)) top right / 1px 22px,
    linear-gradient(var(--primary), var(--primary)) bottom left / 22px 1px,
    linear-gradient(var(--primary), var(--primary)) bottom left / 1px 22px;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: .7;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--r-md);
  background: var(--grad);
  box-shadow: 0 8px 24px rgba(99,102,241,.28);
  transition: transform .2s var(--ease-snap), box-shadow .2s var(--ease-snap);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(99,102,241,.38);
}
.btn-block { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-2);
  background: transparent;
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ─── Stats row ──────────────────────────────────────────── */
.stat-sep { width: 1px; height: 34px; background: var(--border); }
.stats-row {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 40px);
  flex-wrap: wrap;
  margin-top: clamp(32px, 5vw, 52px);
}
.stats-row li:not(.stat-sep) { display: flex; flex-direction: column; align-items: center; line-height: 1.4; }
.stats-row strong {
  font-family: var(--font-tech);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
}
.stats-row strong i { font-style: normal; color: var(--primary); font-size: .8em; }
.stats-row span { font-size: .8rem; color: var(--text-3); }

/* ─── Pull quote ─────────────────────────────────────────── */
.pull-quote {
  margin-top: clamp(32px, 5vw, 52px);
  padding: clamp(26px, 3.5vw, 40px);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  border-right: 3px solid;
  border-image: var(--grad) 1;
  background: var(--surface-2);
}

/* ─── Video slots ────────────────────────────────────────── */
.talk-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: clamp(26px, 4vw, 40px);
}
.cta-video { max-width: 640px; margin: 0 auto clamp(30px, 4vw, 44px); }

.media-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-size: .82rem;
  font-family: var(--font-mono);
  letter-spacing: .06em;
  background:
    repeating-linear-gradient(45deg, rgba(148,163,184,.03) 0 10px, transparent 10px 20px),
    var(--surface-2);
}
.media-placeholder svg { width: 42px; height: 42px; opacity: .45; }

/* ─── VS row ─────────────────────────────────────────────── */
.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(14px, 2.5vw, 26px);
  margin-top: clamp(32px, 5vw, 52px);
}
.vs-card { text-align: center; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.vs-amount {
  font-family: var(--font-tech);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 400;
}
.vs-lo .vs-amount { color: var(--text-3); }
.vs-hi { border-color: rgba(139,92,246,.4); background: linear-gradient(180deg, rgba(139,92,246,.09), transparent 60%), linear-gradient(160deg, #0d1322, #0a0f1c); }
.vs-x {
  align-self: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-3);
  letter-spacing: .1em;
}

/* ─── Cards / grids ──────────────────────────────────────── */
.card { padding: clamp(22px, 3vw, 32px); }
.card p { font-size: .93rem; color: var(--text-2); }

.niche-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 5vw, 52px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-slot { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-md); }

.earnings {
  max-width: 720px;
  margin: clamp(26px, 4vw, 40px) auto 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

/* ─── Testimonials ───────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(26px, 4vw, 40px);
}
.testi { padding: clamp(20px, 3vw, 30px); }
.stars { color: var(--secondary); letter-spacing: .2em; margin-bottom: 12px; font-size: .88rem; }
.testi blockquote { font-size: .94rem; color: var(--text-2); margin-bottom: 12px; }
.testi figcaption { font-size: .8rem; color: var(--text-3); font-family: var(--font-mono); }

/* ─── Instructor ─────────────────────────────────────────── */
.instructor {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
}
.instructor-photo { aspect-ratio: 3 / 4; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
.instructor-text h2 { margin-bottom: 14px; }
.instructor-text .lead + .lead { margin-top: 14px; }

/* ─── Curriculum ─────────────────────────────────────────── */
.curriculum-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: clamp(32px, 5vw, 48px) 0 clamp(18px, 3vw, 28px);
  color: var(--text-2);
  font-size: .92rem;
}
.curriculum-meta strong {
  font-family: var(--font-tech);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  margin-left: 6px;
}

.acc { display: flex; flex-direction: column; gap: 12px; }
.acc details { border-radius: var(--r-md); overflow: hidden; }
.acc details[open] { border-color: rgba(59,130,246,.45); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--primary);
  transition: transform .25s var(--ease-snap);
}
.acc details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc details p {
  padding: 0 60px 20px 22px;
  font-size: .9rem;
  color: var(--text-2);
}
.acc-num {
  display: inline-grid;
  place-items: center;
  min-width: 32px; height: 32px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.25);
}
.acc-meta {
  margin-right: auto;
  margin-left: 42px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-3);
  white-space: nowrap;
}
.faq details p { padding: 0 22px 20px; }

/* ─── Bonuses ────────────────────────────────────────────── */
.bonus-list { display: flex; flex-direction: column; gap: 12px; }
.bonus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}
.bonus-text h3 { margin-bottom: 4px; }
.bonus-text p { font-size: .87rem; color: var(--text-2); }
.bonus-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  background: rgba(139,92,246,.07);
  border: 1px solid rgba(139,92,246,.25);
}
.bonus-total {
  margin-top: 24px;
  text-align: center;
  color: var(--text-2);
  font-size: .98rem;
}

/* ─── Pricing ────────────────────────────────────────────── */
.pricing .wrap { text-align: center; }
.pricing .sec-num { justify-content: center; }
.price-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
  overflow: hidden;
  border-top: 3px solid;
  border-image: var(--grad) 1;
}
.price-glow { display: none; }
.price-label { font-size: .92rem; color: var(--text-2); margin-bottom: 20px; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}
.price-old {
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--secondary);
  font-size: 1rem;
}
.price-badge {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--r-sm);
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.3);
}
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.price-num {
  font-family: var(--font-tech);
  font-size: clamp(3rem, 6.5vw, 4.2rem);
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.price-cur { color: var(--text-2); font-size: 1.15rem; }
.price-feats {
  list-style: none;
  text-align: right;
  margin: 0 auto 30px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-feats li {
  font-size: .92rem;
  color: var(--text-2);
  padding-right: 26px;
  position: relative;
}
.price-feats li::before {
  content: "";
  position: absolute;
  right: 0; top: .5em;
  width: 14px; height: 14px;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-note { font-size: .78rem; color: var(--text-3); margin-top: 16px; font-family: var(--font-mono); }

.guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-align: right;
}
.guarantee p { font-size: .85rem; color: var(--text-2); }
.guarantee b { color: var(--text); }

/* ─── Final CTA ──────────────────────────────────────────── */
.final .wrap { text-align: center; }
.final h2 { margin-bottom: 32px; }

/* ─── Footer / WhatsApp / Sticky ─────────────────────────── */
.footer {
  padding: 36px 0 105px;
  font-size: .78rem;
  color: var(--text-3);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-2); text-decoration: none; transition: color .2s; cursor: pointer; }
.footer-links a:hover { color: var(--primary); }

.whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  color: #fff;
  background: #22c55e;
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
  transition: transform .2s var(--ease-snap);
  cursor: pointer;
}
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 26px; height: 26px; }

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(rgba(8,12,22,0), rgba(8,12,22,.94) 40%);
  display: none;
  transform: translateY(110%);
  transition: transform .35s var(--ease-snap);
}
.sticky-cta.show { transform: none; }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease-snap), transform .55s var(--ease-snap);
}
.reveal.in { opacity: 1; transform: none; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .niche-cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .vs-row { grid-template-columns: 1fr; }
  .vs-x { justify-self: center; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor { grid-template-columns: 1fr; }
  .instructor-photo { max-width: 300px; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .sticky-cta { display: block; }
  .whatsapp { bottom: 86px; }
  .urgency { font-size: .74rem; gap: 10px; }
  .bonus { flex-direction: column; align-items: flex-start; }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
