@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   JANOUBEX DESIGN SYSTEM
   ============================================================ */

:root {
  --sand:        #C9A96E;
  --sand-light:  #E2C99A;
  --sand-dark:   #9E7B45;
  --olive:       #3D5229;
  --olive-mid:   #556B2F;
  --olive-light: #7A8F5F;
  --sea:         #1A4A6E;
  --sea-mid:     #2A6FA8;
  --sea-light:   #4A9CC7;
  --sky:         #8ECAE6;
  --cream:       #F2EDE3;
  --cream-dim:   rgba(242,237,227,0.6);
  --cream-faint: rgba(242,237,227,0.15);
  --dark:        #080F09;
  --dark-2:      #0E1A10;
  --dark-3:      #162318;
  --dark-4:      #1E2F20;
  --gold:        #E8AC20;
  --red:         #B03A2E;
  --green:       #27AE60;

  --font-ar: 'Tajawal', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 0px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-ar);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-ar); border: none; background: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--sand); }

/* ── Noise overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 84px; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,15,9,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,15,9,0.97);
  border-bottom-color: rgba(201,169,110,0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-main {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 3px;
}
.nav-logo-sub {
  font-size: 10px;
  color: rgba(242,237,227,0.35);
  letter-spacing: 2px;
  font-family: var(--font-mono);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(242,237,227,0.55);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--sand);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--cream);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--sand);
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover { background: var(--sand-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 28px;
  color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 75% 50%, rgba(26,74,110,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 5% 85%, rgba(61,82,41,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 10%, rgba(201,169,110,0.07) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,111,168,0.12) 0%, transparent 70%);
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

.hero-content { position: relative; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.05);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--sand);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}
.hero-title-ar { display: block; color: var(--cream); }
.hero-title-en {
  display: block;
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 4px;
  font-weight: 700;
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--sand);
  color: var(--dark);
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 16px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--sand-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,0.3); }

.btn-outline {
  padding: 15px 36px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-ar);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgba(242,237,227,0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--sand); color: var(--sand); transform: translateY(-2px); }

.hero-kpis {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(242,237,227,0.08);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.kpi { display: flex; flex-direction: column; gap: 4px; }
.kpi-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.kpi-label { font-size: 12px; color: rgba(242,237,227,0.4); letter-spacing: 0.5px; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(242,237,227,0.25);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 120px 48px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sand);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-title em { color: var(--sand); font-style: normal; }

.section-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 600px;
  line-height: 1.85;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

/* ============================================================
   ABOUT / MANIFESTO
   ============================================================ */
.manifesto-section {
  background: var(--dark-2);
}
.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-quote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--cream);
  padding-top: 16px;
  position: relative;
}
.manifesto-quote::before {
  content: '"';
  position: absolute;
  top: -32px;
  right: -8px;
  font-size: 120px;
  color: var(--sand);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}
.manifesto-quote em { color: var(--sand); font-style: normal; }

.manifesto-body {
  padding-top: 16px;
}
.manifesto-p {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 24px;
}

.manifesto-principles {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.principle {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(242,237,227,0.06);
  align-items: flex-start;
}
.principle:last-child { border-bottom: none; }
.principle-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sand);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
  width: 24px;
}
.principle-content {}
.principle-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.principle-desc { font-size: 13px; color: rgba(242,237,227,0.45); line-height: 1.6; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-section {
  background: var(--dark-3);
}

.live-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  padding: 12px 20px;
  background: rgba(39,174,96,0.06);
  border: 1px solid rgba(39,174,96,0.2);
  width: fit-content;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1s infinite;
}
.live-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
}
.live-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(39,174,96,0.5);
  margin-right: auto;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

/* card spans */
.dc-3  { grid-column: span 3; }
.dc-4  { grid-column: span 4; }
.dc-6  { grid-column: span 6; }
.dc-8  { grid-column: span 8; }
.dc-12 { grid-column: span 12; }

.dash-card {
  background: rgba(8,15,9,0.7);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.dash-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.dash-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 2px;
  background: var(--sand);
  transition: width var(--transition);
}
.dash-card:hover::before { width: 100%; }

.dash-card.accent-sea { border-color: rgba(42,111,168,0.2); background: rgba(26,74,110,0.12); }
.dash-card.accent-olive { border-color: rgba(61,82,41,0.3); background: rgba(61,82,41,0.08); }
.dash-card.accent-gold { border-color: rgba(232,172,32,0.25); }

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(242,237,227,0.35);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-value {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}
.card-value.big { font-size: 52px; }
.card-label { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.card-desc { font-size: 12px; color: rgba(242,237,227,0.4); line-height: 1.6; }

.card-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 12px;
  padding: 4px 10px;
}
.card-trend.up { background: rgba(39,174,96,0.1); color: var(--green); }
.card-trend.beta { background: rgba(201,169,110,0.1); color: var(--sand); }

/* Progress bars */
.prog-list { display: flex; flex-direction: column; gap: 18px; }
.prog-item {}
.prog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.prog-name { font-size: 13px; font-weight: 500; }
.prog-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sand);
}
.prog-track {
  height: 3px;
  background: rgba(242,237,227,0.07);
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  width: 0;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}
.prog-fill.c-sand  { background: linear-gradient(90deg, var(--sand-dark), var(--sand-light)); }
.prog-fill.c-sea   { background: linear-gradient(90deg, var(--sea), var(--sky)); }
.prog-fill.c-olive { background: linear-gradient(90deg, var(--olive), var(--olive-light)); }
.prog-fill.c-gold  { background: linear-gradient(90deg, #9E6B00, var(--gold)); }

/* Map placeholder */
.map-card {
  background: rgba(26,74,110,0.1);
  border: 1px solid rgba(42,111,168,0.2);
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.map-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,111,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,111,168,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,156,199,0.8), transparent);
  animation: mapScan 4s linear infinite;
}
@keyframes mapScan {
  from { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { top: 100%; opacity: 0; }
}
.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
}
.map-point-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  position: relative;
}
.map-point-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.4;
  animation: ripple 2.5s ease-out infinite;
}
.map-point-dot::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.15;
  animation: ripple 2.5s ease-out infinite 0.6s;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-point-label {
  position: absolute;
  top: 14px;
  right: 50%;
  transform: translateX(50%);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1px;
  white-space: nowrap;
  color: rgba(242,237,227,0.6);
}
.map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(242,237,227,0.4);
}
.legend-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.map-title {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(74,156,199,0.6);
}

/* AI card */
.ai-rec {
  padding: 16px;
  background: rgba(201,169,110,0.04);
  border-right: 2px solid var(--sand);
  margin-top: 16px;
}
.ai-rec-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--sand);
  opacity: 0.7;
  margin-bottom: 8px;
}
.ai-rec-text { font-size: 13px; color: var(--cream); line-height: 1.6; }

/* Sparkline SVG */
.sparkline { margin-top: 16px; }

/* ============================================================
   SECTORS
   ============================================================ */
.sectors-section { background: var(--dark-2); }

.sectors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(201,169,110,0.08);
}

.sector-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.sector-card:nth-child(3n) { border-right: none; }
.sector-card:nth-last-child(-n+3) { border-bottom: none; }

.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.sector-card:hover { background: rgba(242,237,227,0.02); }
.sector-card:hover::after { transform: scaleX(1); }

.sector-card.s-energy::after { background: var(--gold); }
.sector-card.s-agri::after { background: #7CB518; }
.sector-card.s-sea::after { background: var(--sea-mid); }
.sector-card.s-digital::after { background: #8E44AD; }
.sector-card.s-finance::after { background: var(--sand); }
.sector-card.s-craft::after { background: var(--red); }

.sector-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(242,237,227,0.18);
  margin-bottom: 28px;
  letter-spacing: 2px;
}
.sector-icon { font-size: 48px; margin-bottom: 24px; display: block; transition: transform var(--transition); }
.sector-card:hover .sector-icon { transform: scale(1.1) rotate(-3deg); }
.sector-name { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.sector-desc { font-size: 14px; color: rgba(242,237,227,0.45); line-height: 1.75; margin-bottom: 24px; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sector-tag {
  padding: 4px 10px;
  border: 1px solid rgba(201,169,110,0.2);
  font-size: 10px;
  font-family: var(--font-mono);
  color: rgba(242,237,227,0.4);
  letter-spacing: 1px;
}
.sector-card:hover .sector-tag { border-color: rgba(201,169,110,0.4); color: var(--sand); }

.sector-arrow {
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-size: 20px;
  color: var(--sand);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.sector-card:hover .sector-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-section { background: var(--dark); }

.roadmap-track {
  margin-top: 72px;
  position: relative;
}
.roadmap-line {
  position: absolute;
  top: 40px;
  right: 0; left: 0;
  height: 1px;
  background: rgba(201,169,110,0.15);
}
.roadmap-line-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--sand), transparent);
}

.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.roadmap-step {
  padding-top: 80px;
  padding-inline: 16px;
  position: relative;
  cursor: pointer;
}
.roadmap-step::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 50%;
  transform: translate(50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.3);
  background: var(--dark);
  transition: var(--transition);
  z-index: 1;
}
.roadmap-step.done::before {
  background: var(--sand);
  border-color: var(--sand);
  box-shadow: 0 0 20px rgba(201,169,110,0.5);
}
.roadmap-step.active::before {
  background: var(--dark);
  border-color: var(--sand);
  box-shadow: 0 0 20px rgba(201,169,110,0.4);
}
.roadmap-step:hover::before { border-color: var(--sand); }

.step-year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 12px;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.step-desc { font-size: 12px; color: rgba(242,237,227,0.4); line-height: 1.6; }
.step-status {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
}
.status-planning { background: rgba(201,169,110,0.1); color: var(--sand); }
.status-active   { background: rgba(39,174,96,0.1);   color: var(--green); }
.status-upcoming { background: rgba(242,237,227,0.05); color: rgba(242,237,227,0.3); }

/* ============================================================
   DIASPORA / INVEST
   ============================================================ */
.invest-section {
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.invest-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.invest-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inv-card {
  padding: 28px 24px;
  background: rgba(8,15,9,0.6);
  border: 1px solid rgba(201,169,110,0.1);
  transition: var(--transition);
}
.inv-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-4px); }
.inv-card.span-2 { grid-column: span 2; }
.inv-card-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}
.inv-card-label { font-size: 13px; color: rgba(242,237,227,0.5); }

.bond-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.bond-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(242,237,227,0.06);
  align-items: flex-start;
}
.bond-step:last-child { border-bottom: none; }
.bond-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sand);
  flex-shrink: 0;
}
.bond-step-text {}
.bond-step-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.bond-step-desc { font-size: 13px; color: rgba(242,237,227,0.4); }

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transparency-section { background: var(--dark-2); }

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.trans-card {
  padding: 36px 28px;
  background: rgba(8,15,9,0.5);
  border: 1px solid rgba(201,169,110,0.08);
  text-align: center;
  transition: var(--transition);
}
.trans-card:hover { background: rgba(30,47,32,0.4); border-color: rgba(201,169,110,0.25); }
.trans-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.trans-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.trans-desc { font-size: 13px; color: rgba(242,237,227,0.4); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--dark);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.cta-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  position: relative;
}
.cta-title em { color: var(--sand); font-style: normal; display: block; }
.cta-sub {
  font-size: 18px;
  color: var(--cream-dim);
  margin-bottom: 48px;
  font-weight: 300;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030708;
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand-name {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(242,237,227,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(242,237,227,0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-link {
  font-size: 14px;
  color: rgba(242,237,227,0.45);
  transition: color var(--transition);
}
.footer-col-link:hover { color: var(--sand); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(242,237,227,0.06);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(242,237,227,0.2);
  font-style: italic;
}
.footer-made {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(242,237,227,0.2);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 64px;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(26,74,110,0.25) 0%, transparent 65%);
}
.page-hero-content { position: relative; }
.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242,237,227,0.4);
  margin-bottom: 24px;
  transition: color var(--transition);
  cursor: pointer;
}
.page-hero-back:hover { color: var(--sand); }
.page-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
}
.page-hero-title em { color: var(--sand); font-style: normal; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sector-card:nth-child(3n) { border-right: 1px solid rgba(201,169,110,0.08); }
  .sector-card:nth-child(even) { border-right: none; }
  .roadmap-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .roadmap-line { display: none; }
  .roadmap-step { padding-top: 16px; }
  .roadmap-step::before { display: none; }
  .invest-grid { grid-template-columns: 1fr; gap: 48px; }
  .transparency-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sectors-intro { grid-template-columns: 1fr; gap: 32px; }
  .dc-3, .dc-4, .dc-6, .dc-8 { grid-column: span 6; }
  .dc-12 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 80px 24px; }
  .hero { padding: 100px 24px 72px; }
  .hero-title { font-size: clamp(48px, 15vw, 80px); }
  .hero-kpis { gap: 28px; }
  .kpi-num { font-size: 24px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card { border-right: none !important; }
  .roadmap-steps { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .dash-grid .dc-3, .dash-grid .dc-4 { grid-column: span 12; }
  .dash-grid .dc-6 { grid-column: span 12; }
  .dash-grid .dc-8 { grid-column: span 12; }
  .invest-visual { grid-template-columns: 1fr; }
  .inv-card.span-2 { grid-column: span 1; }
  .page-hero { padding: 100px 24px 48px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 60px 24px 32px; }
}

/* ============================================================
   ANIMATIONS ON SCROLL (via JS class)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
