@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Inter:wght@300;400;600;700;900&family=Fira+Code:wght@400;500&display=swap');

:root {
  --bg-abyss: #050510; --bg-deep: #0a0a1f; --bg-storm: #1a1a2e; --bg-card: #12122a;
  --accent-cold: #4a5568; --crisis-red: #dc2626; --debt-glow: #ff0000;
  --sunrise: #ff6b2b; --gold: #fbbf24; --success: #10b981; --snoonu: #ff5722;
  --white-glow: #ffffff; --text-ghost: #8892a4; --text-dim: #b0b0cc;
  --purple: #8b5cf6; --blue: #3b82f6;
  --font-ar: 'Tajawal', sans-serif; --font-en: 'Inter', sans-serif;
  --transition: .4s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-ar); background: var(--bg-abyss); color: #fff; direction: rtl;
  line-height: 1.8; overflow-x: hidden; cursor: none; }

.cursor-dot, .cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background-color: var(--sunrise);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-glow {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, rgba(255,107,43,0) 70%);
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 1; }
a:hover ~ .cursor-dot, button:hover ~ .cursor-dot {
  width: 16px; height: 16px;
  background-color: var(--gold);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-abyss); }
::-webkit-scrollbar-thumb { background: var(--sunrise); border-radius: 3px; }

#progress-bar { position: fixed; top: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sunrise), var(--gold));
  z-index: 9999; width: 0; transition: width .1s linear; }

.nav { position: fixed; top: 0; width: 100%; padding: 1rem 2rem; display: flex; align-items: center;
  justify-content: space-between; z-index: 1000; transition: var(--transition); }
.nav.scrolled { background: rgba(5,5,16,.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,107,43,.1); }
.nav-logo { font-size: 1.2rem; font-weight: 800; background: linear-gradient(135deg, var(--sunrise), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: .85rem; font-weight: 500;
  transition: var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--sunrise); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px;
  background: var(--sunrise); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

.section { min-height: 100vh; padding: 6rem 2rem; position: relative; overflow: hidden; }
.section-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.section-badge { display: inline-block; padding: .4rem 1.2rem; border-radius: 50px; font-size: .8rem;
  font-weight: 700; letter-spacing: 1px; margin-bottom: 1.5rem;
  background: rgba(255,107,43,.1); color: var(--sunrise); border: 1px solid rgba(255,107,43,.2); }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1rem;
  line-height: 1.3; }
.section-subtitle { font-size: 1.1rem; color: var(--text-dim); max-width: 700px; line-height: 1.9; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: var(--bg-abyss); z-index: 5; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--bg-abyss); z-index: 5; }
.hero-bg { position: absolute; inset: 0; background: url('../images/doha_skyline.png') center/cover no-repeat;
  filter: brightness(.3); transition: transform 0.1s; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,16,.8) 0%, rgba(5,5,16,.3) 40%, rgba(5,5,16,.6) 70%, var(--bg-abyss) 100%); }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 2rem; }
.hero-line { font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.6;
  opacity: 0; transform: translateY(40px); letter-spacing: -0.02em; }
.hero-line.visible { animation: fadeUp .8s forwards; }
.hero-line:nth-child(2) { animation-delay: .8s; }
.hero-line:nth-child(3) { animation-delay: 1.6s;
  background: linear-gradient(135deg, var(--gold), var(--sunrise));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-cta { display: inline-block; margin-top: 3rem; padding: 1.2rem 3.5rem; font-size: 1.15rem;
  font-weight: 700; font-family: var(--font-ar); color: #fff; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--sunrise), #ff8f5a); text-decoration: none;
  opacity: 0; animation: fadeUp .8s 2.4s forwards; position: relative; overflow: hidden;
  box-shadow: 0 0 30px rgba(255,107,43,0.3); transition: all 0.4s; }
.hero-cta::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite; }
.hero-cta:hover { box-shadow: 0 0 60px rgba(255,107,43,.5); letter-spacing: 2px; }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

.dream { background: linear-gradient(180deg, var(--bg-abyss) 0%, #0d0d2b 50%, #1a0a3e 100%); }
.dream-bg { position: absolute; inset: 0; background: url('../images/child_dreaming.png') center/cover no-repeat;
  opacity: .15; }
.dream-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dream-text h2 { color: var(--gold); margin-bottom: 1rem; }
.dream-visual { text-align: center; }
.dream-visual img { max-width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(139,92,246,.2); }
.floating { animation: float 6s ease-in-out infinite; }

.corporate { background: linear-gradient(180deg, #1a0a3e 0%, #1a1a2e 50%, var(--bg-storm) 100%); }
.corp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.corp-card { background: rgba(74,85,104,.1); border: 1px solid rgba(74,85,104,.2); border-radius: 16px;
  padding: 2rem; transition: var(--transition); }
.corp-card:hover { border-color: var(--sunrise); background: rgba(255,107,43,.05);
  transform: translateY(-5px); }
.corp-card .icon { color: var(--gold); margin-bottom: 1rem; }
.corp-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.corp-card p { color: var(--text-ghost); font-size: .9rem; }

.terminal-block {
  background: #0d0d1a; border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5); overflow: hidden; margin: 3rem auto; max-width: 700px;
}
.terminal-header {
  background: #1a1a2e; padding: 10px 15px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.terminal-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-header .red { background: #ff5f56; } .terminal-header .yellow { background: #ffbd2e; } .terminal-header .green { background: #27c93f; }
.terminal-header .title { margin-left: auto; font-family: 'Fira Code', monospace; font-size: 0.8rem; color: var(--text-ghost); }
.terminal-body { padding: 20px; font-family: 'Fira Code', monospace; font-size: 0.9rem; color: #a5d6ff; line-height: 1.6; }
.terminal-body .prompt { color: var(--success); font-weight: bold; margin-right: 10px; }
.terminal-body .output { color: var(--text-dim); margin-top: 10px; opacity: 0; }
.terminal-body .output.delay-1 { animation: fadeUp 0.1s 1.5s forwards; }
.terminal-body .output.delay-2 { animation: fadeUp 0.1s 2.5s forwards; color: #ffbd2e; }
.terminal-body .output.delay-3 { animation: fadeUp 0.1s 3.5s forwards; color: #ff5f56; }
.terminal-body .typing {
  border-right: 2px solid #a5d6ff;
  white-space: nowrap; overflow: hidden;
  animation: typing 1.5s steps(22, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing { from { max-width: 0 } to { max-width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: #a5d6ff; } }

.corp-transition-text { text-align: center; margin-top: 3rem; font-size: 1.3rem; color: var(--sunrise);
  font-weight: 700; opacity: .8; font-style: italic; }

.collapse-section { background: var(--bg-abyss); position: relative; }
.collapse-section.in-view { animation: screen-shake .6s ease-in-out; }
.collapse-section::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220,38,38,.03) 2px, rgba(220,38,38,.03) 4px);
  pointer-events: none; animation: scanlines 8s linear infinite; }
@keyframes scanlines { 0%{background-position:0 0} 100%{background-position:0 100vh} }
.collapse-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center,
  transparent 40%, rgba(220,38,38,.12) 100%); pointer-events: none; }
.collapse-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 200px rgba(220,38,38,.2);
  pointer-events: none; opacity: 0; transition: opacity 1s; }
.collapse-section.in-view .collapse-vignette { opacity: 1; animation: pulse-vignette 3s infinite; }
@keyframes pulse-vignette { 0%,100%{box-shadow:inset 0 0 200px rgba(220,38,38,.2)} 50%{box-shadow:inset 0 0 250px rgba(220,38,38,.35)} }
.falling-numbers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.debt-counter { text-align: center; margin: 3rem 0; position: relative; }
.debt-counter .label { font-size: 1rem; color: var(--crisis-red); margin-bottom: .5rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; }
.debt-counter .amount { font-family: var(--font-en); font-size: clamp(3.5rem, 10vw, 6rem); font-weight: 900;
  color: var(--crisis-red); text-shadow: 0 0 60px rgba(220,38,38,.6), 0 0 120px rgba(220,38,38,.3); direction: ltr;
  animation: debt-pulse 2s infinite; }
@keyframes debt-pulse { 0%,100%{opacity:1} 50%{opacity:.85} }
.collapse-items { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; margin: 2rem 0; position: relative; z-index: 2; }
.collapse-item { background: rgba(220,38,38,.06); border: 1px solid rgba(220,38,38,.12); padding: 1rem 2.5rem;
  border-radius: 12px; font-size: 1.1rem; font-weight: 700; opacity: 0; transform: translateX(40px) scale(0.95);
  transition: all .6s cubic-bezier(.4,0,.2,1); display: flex; align-items: center; gap: 1rem;
  backdrop-filter: blur(5px); width: fit-content; }
.collapse-item.visible { opacity: 1; transform: translateX(0) scale(1); }
.collapse-item .icon { color: var(--crisis-red); }
.collapse-quote { text-align: center; margin-top: 3rem; font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700; color: var(--text-dim); font-style: italic; position: relative; z-index: 2;
  text-shadow: 0 0 40px rgba(220,38,38,.3); }

.comeback { background: linear-gradient(180deg, var(--bg-abyss) 0%, #0a1628 50%, #0f1f3a 100%); }
.edu-timeline { position: relative; padding: 2rem 0; margin-top: 3rem; }
.edu-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; right: 50%;
  width: 2px; background: linear-gradient(180deg, var(--accent-cold), var(--blue), var(--sunrise)); }
.edu-card { display: flex; align-items: center; gap: 2rem; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px); transition: all .6s; }
.edu-card.visible { opacity: 1; transform: translateY(0); }
.edu-card .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--blue);
  border: 3px solid var(--bg-deep); flex-shrink: 0; z-index: 2; box-shadow: 0 0 15px rgba(59,130,246,.4); }
.edu-card .info { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.15);
  border-radius: 16px; padding: 1.5rem 2rem; flex: 1; transition: var(--transition); }
.edu-card .info:hover { border-color: var(--blue); transform: translateX(-5px); }
.edu-card .year { font-family: var(--font-en); font-weight: 900; color: var(--blue); font-size: 1.1rem; }
.edu-card h3 { margin: .3rem 0; font-size: 1.2rem; }
.edu-card p { color: var(--text-ghost); font-size: .9rem; }
.mindset-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem; }
.mindset-item { background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.15);
  border-radius: 16px; padding: 1.5rem; transition: var(--transition); }
.mindset-item:hover { border-color: var(--purple); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139,92,246,.15); }

.snoonu-birth { background: linear-gradient(180deg, #0f1f3a 0%, #1a0f00 50%, #1a1000 100%); }
.snoonu-birth.in-view { background: linear-gradient(180deg, #0f1f3a 0%, #2a1500 50%, #1a1000 100%); }
.evolution-steps { display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 3rem 0; flex-wrap: wrap; }
.evo-step { background: rgba(255,87,34,.1); border: 1px solid rgba(255,87,34,.2); border-radius: 12px;
  padding: 1rem 1.5rem; text-align: center; font-weight: 700; transition: var(--transition);
  min-width: 120px; }
.evo-step:hover { background: rgba(255,87,34,.2); transform: scale(1.05); }
.evo-step .icon { color: var(--sunrise); display: block; margin-bottom: .5rem; }
.evo-arrow { color: var(--sunrise); font-size: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin: 3rem 0; }
.service-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 2rem; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; opacity: 0;
  transition: var(--transition); border-radius: 20px; }
.service-card:hover { transform: translateY(-8px); border-color: transparent; }
.service-card:hover::before { opacity: .1; }
.service-card .s-icon { margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.service-card .en-name { font-family: var(--font-en); color: var(--text-ghost); font-size: .8rem; }
.service-card .s-desc { display: none; margin-top: 1rem; color: var(--text-dim); font-size: .85rem;
  animation: fadeUp .3s forwards; }
.service-card.expanded .s-desc { display: block; }
.service-card.expanded { border-color: var(--sunrise); }

.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
  margin-top: 3rem; align-items: stretch; }
.ba-card { border-radius: 20px; padding: 2rem; position: relative; }
.ba-before { background: rgba(220,38,38,.05); border: 1px solid rgba(220,38,38,.15); }
.ba-after { background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.15); }
.ba-divider { display: flex; align-items: center; font-size: 2rem; color: var(--gold); }
.ba-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.ba-card ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.ba-card li { display: flex; align-items: center; gap: .8rem; font-size: .95rem; color: var(--text-dim); }
.ba-card li .icon { color: inherit; }

.expansion { background: linear-gradient(180deg, #1a1000 0%, #0a1a0a 50%, #0d1f0d 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin: 3rem 0; }
.stat-card { background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.15);
  border-radius: 20px; padding: 2rem; text-align: center; transition: var(--transition); }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(16,185,129,.15); }
.stat-card .number { font-family: var(--font-en); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: var(--success); direction: ltr; }
.stat-card .label { color: var(--text-dim); margin-top: .5rem; font-size: .9rem; }
.map-container { text-align: center; margin: 3rem 0; }
.map-container svg { max-width: 500px; width: 100%; }
.map-dot { fill: var(--sunrise); animation: pulse-dot 2s infinite; }
.expansion-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2rem; }
.exp-card { background: rgba(251,191,36,.05); border: 1px solid rgba(251,191,36,.1);
  border-radius: 16px; padding: 1.5rem; transition: var(--transition); }
.exp-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.lessons { background: linear-gradient(180deg, #0d1f0d 0%, var(--bg-deep) 50%, #0d0d2b 100%); }
.lessons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 3rem; }
.lesson-card { background: rgba(255,255,255,.03); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.06); border-radius: 24px; padding: 2.5rem;
  transition: all 0.5s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.lesson-card::before { content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,107,43,.08), transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none; }
.lesson-card:hover::before { opacity: 1; }
.lesson-card::after { content: ''; position: absolute; top: -1px; right: -1px; bottom: -1px; left: -1px;
  border-radius: 24px; background: linear-gradient(135deg, rgba(255,107,43,.2), transparent 50%); opacity: 0;
  transition: opacity .4s; pointer-events: none; }
.lesson-card:hover::after { opacity: 1; }
.lesson-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.4), 0 0 30px rgba(255,107,43,.08); }
.lesson-card .l-icon { margin-bottom: 1rem; display: block; }
.lesson-card h3 { font-size: 1.15rem; margin-bottom: .8rem; line-height: 1.5; }
.lesson-card p { color: var(--text-ghost); font-size: .9rem; line-height: 1.8; }

.finale { min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; }
.finale-bg { position: absolute; inset: 0; background: url('../images/doha_skyline.png') center/cover no-repeat;
  filter: brightness(.2); }
.finale-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-abyss) 0%, transparent 30%, transparent 70%, var(--bg-abyss) 100%); }
.finale-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.finale-quote { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.8;
  margin-bottom: 3rem; }
.finale-quote span { color: var(--gold); }
.videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.video-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08); }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.video-card .v-info { padding: 1rem; }
.video-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.social-link { display: flex; align-items: center; gap: .5rem; color: var(--text-dim);
  text-decoration: none; padding: .6rem 1.5rem; border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; transition: var(--transition); font-size: .9rem; }
.social-link:hover { color: var(--sunrise); border-color: var(--sunrise);
  box-shadow: 0 0 20px rgba(255,107,43,.15); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

.footer { text-align: center; padding: 2rem; color: var(--text-ghost); font-size: .8rem;
  border-top: 1px solid rgba(255,255,255,.05); }

/* ===== Journey (Full Timeline) ===== */
.journey { background: linear-gradient(180deg, var(--bg-deep), var(--bg-storm)); }
.journey-timeline { position: relative; max-width: 920px; margin: 4rem auto 0; padding: 0 1rem; }
.journey-timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; right: 50%;
  width: 2px; background: linear-gradient(180deg,
    transparent, rgba(255,107,43,.2) 8%, rgba(251,191,36,.3) 50%,
    rgba(16,185,129,.2) 92%, transparent);
  transform: translateX(50%);
}
.journey-item { position: relative; width: 50%; padding: 1.2rem 2.5rem; }
.journey-item:nth-child(odd)  { margin-right: 0; margin-left: auto; padding-right: 2.5rem; padding-left: 0; }
.journey-item:nth-child(even) { margin-left: 0; margin-right: auto; text-align: left; padding-left: 2.5rem; padding-right: 0; }
.journey-dot {
  position: absolute; top: 1.8rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--bg-storm), 0 0 20px var(--accent);
  z-index: 2;
}
.journey-item:nth-child(odd) .journey-dot  { right: -8px; }
.journey-item:nth-child(even) .journey-dot { left: -8px; }
.journey-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-right: 3px solid var(--accent);
  border-radius: 12px; padding: 1.2rem 1.4rem; transition: var(--transition);
  backdrop-filter: blur(6px);
}
.journey-item:nth-child(even) .journey-card { border-right: 1px solid rgba(255,255,255,.08); border-left: 3px solid var(--accent); }
.journey-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 10px 30px -10px var(--accent); }
.journey-meta { display: flex; gap: .6rem; align-items: center; margin-bottom: .5rem; flex-wrap: wrap; }
.journey-year { font-family: var(--font-en); font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.journey-tag {
  font-size: .7rem; padding: .2rem .7rem; border-radius: 50px;
  background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.journey-card h3 { font-size: 1.05rem; margin-bottom: .4rem; line-height: 1.5; }
.journey-card p  { color: var(--text-ghost); font-size: .88rem; line-height: 1.7; }

/* ===== Present / Future Section ===== */
.present { background: linear-gradient(180deg, var(--bg-storm), #0a1a14); }
.present-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.present-card {
  background: rgba(16,185,129,.04); border: 1px solid rgba(16,185,129,.15);
  border-radius: 16px; padding: 1.8rem 1.5rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.present-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16,185,129,.15), transparent 70%);
  transition: opacity .4s;
}
.present-card:hover { transform: translateY(-6px); border-color: var(--success); box-shadow: 0 20px 40px -20px rgba(16,185,129,.3); }
.present-card:hover::before { opacity: 1; }
.present-card > * { position: relative; z-index: 1; }
.present-icon { margin-bottom: 1rem; }
.present-card h3 { font-size: 1.15rem; margin-bottom: .6rem; color: #fff; }
.present-card p  { color: var(--text-ghost); font-size: .92rem; line-height: 1.8; }
.present-quote {
  margin: 4rem auto 0; max-width: 720px; text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.9;
  color: var(--gold); position: relative; padding: 2rem 1rem;
}
.present-quote .quote-mark {
  font-family: var(--font-en); font-size: 3rem; color: var(--success);
  vertical-align: -20px; opacity: .6; padding: 0 .3rem;
}

/* ===== Continuation Badge ===== */
.continuation-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .6rem 1.4rem; margin: 1.5rem 0;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25);
  border-radius: 50px; color: var(--success); font-weight: 600; font-size: .9rem;
}
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ===== Share Section ===== */
.share-section { margin: 2rem 0 1rem; }
.share-title { color: var(--text-dim); font-size: .95rem; margin-bottom: 1rem; }
.share-buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem; border-radius: 50px; font-family: var(--font-ar); font-size: .88rem;
  font-weight: 600; color: var(--text-dim); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); cursor: none; transition: var(--transition);
}
.share-btn svg { width: 18px; height: 18px; }
.share-btn[data-share="whatsapp"]:hover { color: #25d366; border-color: #25d366; box-shadow: 0 0 20px rgba(37,211,102,.2); }
.share-btn[data-share="twitter"]:hover  { color: #fff;     border-color: #fff;    box-shadow: 0 0 20px rgba(255,255,255,.15); }
.share-btn[data-share="linkedin"]:hover { color: #0a66c2; border-color: #0a66c2; box-shadow: 0 0 20px rgba(10,102,194,.25); }
.share-btn[data-share="copy"]:hover     { color: var(--gold); border-color: var(--gold); box-shadow: 0 0 20px rgba(251,191,36,.25); }
.share-btn.copied { color: var(--success); border-color: var(--success); }

@media (max-width: 768px) {
  .journey-timeline::before { right: 18px; transform: none; }
  .journey-item, .journey-item:nth-child(odd), .journey-item:nth-child(even) {
    width: 100%; margin: 0; padding: .8rem 0 .8rem 0; padding-right: 3rem; padding-left: 0; text-align: right;
  }
  .journey-item .journey-dot,
  .journey-item:nth-child(odd) .journey-dot,
  .journey-item:nth-child(even) .journey-dot { right: 10px; left: auto; }
  .journey-item:nth-child(even) .journey-card { border-right: 3px solid var(--accent); border-left: 1px solid rgba(255,255,255,.08); }
  .share-buttons { gap: .5rem; }
  .share-btn { padding: .55rem 1rem; font-size: .8rem; }
}

/* ===== Mobile-specific finale tweaks ===== */
@media (max-width: 600px) {
  .finale-content { padding: 1.5rem 1rem; }
  .finale-quote { font-size: clamp(1.2rem, 5vw, 1.8rem); margin-bottom: 2rem; }

  .continuation-badge { font-size: .82rem; padding: .5rem 1.1rem; gap: .6rem; }

  .share-section { margin: 1.5rem 0 .5rem; }
  .share-title    { font-size: .85rem; margin-bottom: .8rem; }
  .share-buttons  { gap: .5rem; }
  .share-btn      { padding: .5rem .9rem; font-size: .78rem; flex: 0 1 auto; }
  .share-btn svg  { width: 16px; height: 16px; }

  .social-links { gap: .6rem; margin-top: 1.5rem; }
  .social-link  { padding: .5rem 1rem; font-size: .8rem; flex: 0 1 auto; }
  .social-link svg { width: 16px; height: 16px; }

  .present-grid { grid-template-columns: 1fr; gap: 1rem; }
  .present-quote { font-size: 1.1rem; padding: 1.5rem .5rem; }
  .present-quote .quote-mark { font-size: 2rem; vertical-align: -10px; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all .8s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes pulse-glow { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes pulse-dot { 0%,100% { r: 5; opacity: 1; } 50% { r: 8; opacity: .6; } }
@keyframes screen-shake {
  0%,100% { transform: translateX(0); }
  10%,30%,50%,70%,90% { transform: translateX(-5px); }
  20%,40%,60%,80% { transform: translateX(5px); }
}
@keyframes fall { 0% { transform: translateY(-100px) rotate(0); opacity: 0; }
  10% { opacity: .3; } 90% { opacity: .3; } 100% { transform: translateY(100vh) rotate(360deg); opacity: 0; } }
@keyframes float-up { 0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-10vh); opacity: 0; } }
@keyframes gradient-shift {
  0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
@keyframes glitch-1 {
  0%,100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
  20% { clip-path: inset(20% 0 60% 0); transform: translateX(-5px); }
  40% { clip-path: inset(60% 0 10% 0); transform: translateX(5px); }
  60% { clip-path: inset(40% 0 30% 0); transform: translateX(-3px); }
}

.section::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg-abyss)); z-index: 3; pointer-events: none; }

.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.inline-block { display: inline-block; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.text-red-500 { color: #ef4444; }
.text-blue-500 { color: #3b82f6; }
.text-green-500 { color: #10b981; }
.text-purple-500 { color: #8b5cf6; }
.text-yellow-500 { color: #eab308; }
.text-orange-500 { color: #f97316; }

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; width: 70%; height: 100vh;
    flex-direction: column; background: rgba(5,5,16,.98); backdrop-filter: blur(20px);
    padding: 5rem 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .dream-content { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-divider { justify-content: center; transform: rotate(90deg); }
  .videos-grid { grid-template-columns: 1fr; }
  .evolution-steps { flex-direction: column; }
  .evo-arrow { transform: rotate(90deg); }
  .edu-timeline::before { right: 20px; }
  .section { padding: 4rem 1.2rem; }
  .lessons-grid { grid-template-columns: 1fr; }
}
