/* ═══════════════════════════════════════════════════════════
   MIZAN · Full Stylesheet · RTL-first · Fully responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy: #0A1F38;
  --navy-mid: #0F2C4D;
  --navy-soft: #1A4D7A;
  --gold: #C8A951;
  --gold-light: #F0D98A;
  --gold-pale: #FAF6E9;
  --cream: #F8F5EE;
  --green: #1A5F2A;
  --green-mid: #2E7D4F;
  --green-light: #E6F3EC;
  --red: #B5453A;
  --red-light: #FCF0E8;
  --purple: #5B3E8A;
  --ink: #1A1A1A;
  --muted: #6B7C93;
  --border: #D5DDE6;
  --bg-light: #F5F7FA;
  --white: #FFFFFF;

  --font-display-ar: 'Cairo', 'Amiri', Georgia, serif;
  --font-display-en: 'Playfair Display', Georgia, serif;
  --font-body-ar: 'Cairo', 'Amiri', system-ui, sans-serif;
  --font-body-en: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  --font-body: var(--font-body-en);
  --font-display: var(--font-display-en);
}

/* Arabic override */
html[dir="rtl"] {
  --font-body: var(--font-body-ar);
  --font-display: var(--font-display-ar);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  min-width: 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Defensive: never let media exceed its container */
img, svg, video, iframe, canvas {
  max-width: 100%;
  height: auto;
}
iframe { height: auto; min-height: 100%; }
/* Long words / URLs shouldn't blow up narrow layouts */
p, li, a, span, div, td, th { overflow-wrap: anywhere; }
/* But don't break the diagram SVG text */
svg text { overflow-wrap: normal; }

/* Utilities to lock direction for numbers, English brands, etc. */
[dir="ltr"] { unicode-bidi: embed; }
[dir="rtl"] { unicode-bidi: embed; }

/* ═══════════ HONESTY RIBBON ═══════════ */
.honesty-ribbon {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, #0A1F38, #1A4D7A);
  color: var(--gold-light);
  padding: 10px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  border-bottom: 2px solid var(--gold);
  flex-wrap: wrap;
  line-height: 1.4;
}
.honesty-ribbon strong { color: var(--gold); font-weight: 700; }
.ribbon-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.ribbon-text { flex: 1; min-width: 200px; }
.ribbon-cta {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 12px;
}
.ribbon-cta:hover { background: var(--gold); color: var(--navy); }

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky; top: 45px; z-index: 99;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  gap: 20px;
}
.nav-brand {
  display: flex; align-items: baseline; gap: 10px;
  text-decoration: none;
  color: inherit;
}
.nav-logo {
  font-family: var(--font-display-en);
  font-size: 22px; font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
}
.nav-ar {
  font-family: var(--font-body-ar);
  font-size: 17px; color: var(--gold);
  font-weight: 700;
}
.nav-links {
  display: flex; gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--navy); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex; align-items: center; gap: 12px;
}
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 7px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  min-width: 42px;
  min-height: 34px;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--gold);
  padding: 10px 18px; border-radius: 3px;
  text-decoration: none; font-size: 13px; font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* Mobile toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0A1F38 0%, #0F2C4D 60%, #1A4D7A 100%);
  color: white;
  overflow: hidden;
  padding: 60px 24px;
}
.hero-bg-orbit {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,169,81,0.18), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(240,217,138,0.12), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(200,169,81,0.06), transparent 60%);
  animation: orbit 20s ease-in-out infinite alternate;
}
@keyframes orbit {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.1) rotate(5deg); }
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; width: 100%;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero-title {
  font-family: var(--font-display-en);
  font-size: clamp(64px, 14vw, 180px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 8px;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(200,169,81,0.4);
}
.hero-ar {
  font-family: var(--font-body-ar);
  font-size: clamp(40px, 7vw, 80px);
  color: var(--gold-light);
  margin: 4px 0 28px;
  font-weight: 700;
  line-height: 1;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.4;
  color: white;
  font-weight: 400;
  margin-bottom: 22px;
}
html[dir="rtl"] .hero-tagline { font-family: var(--font-display-ar); font-weight: 700; }
.hero-tagline strong { color: var(--gold); font-weight: 700; }
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-pills {
  display: flex; gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 13px;
}
.pill-ar { font-family: var(--font-body-ar); font-weight: 700; color: var(--gold); }
.pill-en { font-size: 11px; opacity: 0.8; }
.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,169,81,0.3);
}
.btn-primary.btn-large { padding: 18px 40px; font-size: 16px; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(200,169,81,0.1); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 90px 28px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner-wide { max-width: 1400px; }
.section-alt { background: var(--bg-light); }
.section-navy { background: linear-gradient(135deg, #0A1F38, #0F2C4D); color: white; }
.section-cream { background: var(--cream); }
.section-black { background: #05121F; color: white; }
.section-purple { background: linear-gradient(135deg, #2E1F4D, #5B3E8A); color: white; }

.section-eyebrow {
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; margin-bottom: 14px;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 22px;
}
.section-title.white { color: white; }
.section-title .gold, .gold-text { color: var(--gold); }
.section-title .green-text { color: var(--green); }
.section-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 800px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.section-lede.white-70 { color: rgba(255,255,255,0.72); }
.sub-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 20px;
}

/* ═══════════ STATS ═══════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.stat-card {
  background: white;
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid var(--navy);
  box-shadow: 0 2px 10px rgba(10,31,56,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(10,31,56,0.1); }
.stat-card.stat-red { border-top-color: var(--red); }
.stat-card.stat-gold { border-top-color: var(--gold); }
.stat-number {
  font-family: var(--font-display-en);
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-number span { font-size: 0.5em; color: var(--gold); }
.stat-label {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 8px;
}
.stat-source {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

/* ═══════════ QUOTE CARDS ═══════════ */
.quote-card {
  background: white;
  padding: 30px 40px 30px 60px;
  border-radius: 4px;
  margin: 32px 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border-left: 6px solid var(--gold);
}
html[dir="rtl"] .quote-card {
  padding: 30px 60px 30px 40px;
  border-left: none;
  border-right: 6px solid var(--gold);
}
.quote-card.quote-navy {
  background: var(--navy);
  color: var(--gold-light);
}
.quote-mark {
  font-family: var(--font-display-en);
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  position: absolute;
  top: 24px;
  left: 20px;
}
html[dir="rtl"] .quote-mark { left: auto; right: 20px; }
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}
html[dir="rtl"] .quote-text { font-family: var(--font-display-ar); font-style: normal; }
.quote-card.quote-navy .quote-text { color: var(--gold-light); }
.quote-text strong { color: var(--gold); font-style: normal; font-weight: 700; }
.quote-source {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.quote-card.quote-navy .quote-source { color: var(--gold); }

/* ═══════════ CRISES GRID ═══════════ */
.four-crises { margin-top: 50px; }
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.crisis-card {
  background: white;
  padding: 26px;
  border-radius: 8px;
  border-top: 3px solid var(--red);
  text-align: center;
  transition: transform 0.2s;
}
.crisis-card:hover { transform: translateY(-4px); }
.crisis-card:nth-child(2) { border-top-color: var(--green); }
.crisis-card:nth-child(3) { border-top-color: var(--gold); }
.crisis-card:nth-child(4) { border-top-color: var(--navy); }
.crisis-icon { font-size: 30px; margin-bottom: 10px; }
.crisis-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.crisis-body { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ═══════════ INSIGHT GRID ═══════════ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 36px 0;
}
.insight-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.insight-num {
  font-family: var(--font-display-en);
  font-size: 46px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.insight-body { flex: 1; }
.insight-head {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ═══════════ CALLOUTS ═══════════ */
.callout {
  padding: 22px 28px;
  border-radius: 6px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
}
.callout-gold {
  background: var(--gold-pale);
  border-left: 5px solid var(--gold);
  color: var(--navy);
}
html[dir="rtl"] .callout-gold { border-left: none; border-right: 5px solid var(--gold); }
.callout-navy {
  background: var(--navy);
  color: var(--gold-light);
  border-left: 5px solid var(--gold);
}
html[dir="rtl"] .callout-navy { border-left: none; border-right: 5px solid var(--gold); }
.callout-navy strong { color: var(--gold); }
.callout-source {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ═══════════ THREE-LAYER STACK ═══════════ */
.layer-stack {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.layer {
  display: grid;
  grid-template-columns: 70px 1fr 90px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,81,0.3);
  padding: 22px;
  border-radius: 6px;
  gap: 20px;
  transition: all 0.2s;
}
.layer:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); transform: translateX(-4px); }
html[dir="rtl"] .layer:hover { transform: translateX(4px); }
.layer-num {
  font-family: var(--font-display-en);
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.layer-title {
  font-weight: 700;
  color: white;
  font-size: 17px;
  margin-bottom: 8px;
}
.layer-desc { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; }
.layer-share {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  text-align: center;
}
.wmra-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 18px 24px;
  border-radius: 6px;
  margin-top: 22px;
  display: flex; gap: 14px; align-items: center;
}
.wmra-icon { font-size: 22px; flex-shrink: 0; }
.wmra-text { font-size: 14px; line-height: 1.5; }

/* ═══════════ INTERACTIVE ARCHITECTURE ═══════════ */
.arch-interactive {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin: 36px 0;
  align-items: start;
}
/* Stacked variant: diagram on top full width, narrative below in a row */
.arch-interactive.arch-stacked {
  display: block;
}
.arch-interactive.arch-stacked .arch-diagram-wrap {
  margin-bottom: 32px;
}
.arch-interactive.arch-stacked .arch-narrative-wrap {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}
.arch-interactive.arch-stacked .narrative-header,
.arch-interactive.arch-stacked .narrative-body {
  grid-column: 1;
}
.arch-interactive.arch-stacked .narrative-controls,
.arch-interactive.arch-stacked .narrative-jump {
  grid-column: 2;
}
.arch-interactive.arch-stacked .narrative-controls {
  grid-row: 1;
  margin: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
html[dir="rtl"] .arch-interactive.arch-stacked .narrative-controls { justify-content: flex-start; }
.arch-interactive.arch-stacked .narrative-jump {
  grid-row: 2;
  margin-top: 0;
}
.arch-diagram-wrap {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.arch-diagram-wrap .arch-progress {
  color: var(--navy);
}
.arch-diagram-wrap .arch-progress .progress-label { color: var(--muted); }
.arch-diagram-wrap .arch-progress .progress-num { color: var(--navy); }
.arch-diagram-wrap .arch-progress .progress-of { color: var(--muted); }
.arch-diagram-wrap .arch-progress .progress-bar { background: rgba(200,169,81,0.15); }
.arch-progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.progress-label { color: var(--gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.progress-num { color: var(--gold); font-size: 26px; font-weight: 700; }
.progress-of { color: rgba(255,255,255,0.5); font-size: 13px; }
.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(200,169,81,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 8px;
}
html[dir="rtl"] .progress-bar { margin-left: 0; margin-right: 8px; }
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s ease;
}
.arch-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1300 / 700;
  background: #FEFEFE;
  border-radius: 6px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(200,169,81,0.15);
}
.reveal {
  opacity: 0;
  transform: scale(0.85);
  transform-origin: center;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.reveal.active { opacity: 1; transform: scale(1); pointer-events: auto; }
/* Pulse the newest reveal on entry */
.reveal.active.newly-active {
  animation: pulseIn 0.9s ease-out;
}
@keyframes pulseIn {
  0% { filter: drop-shadow(0 0 0 rgba(200,169,81,0)); }
  40% { filter: drop-shadow(0 0 8px rgba(200,169,81,0.6)); }
  100% { filter: drop-shadow(0 0 0 rgba(200,169,81,0)); }
}
/* Baseline node subtle glow */
.node-persistent circle {
  filter: drop-shadow(0 4px 10px rgba(154,124,55,0.35));
}

.arch-narrative-wrap {
  position: sticky; top: 130px;
}
.narrative-header { margin-bottom: 18px; }
.narrative-click-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.narrative-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 10px;
}
.narrative-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  min-height: 120px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
}
html[dir="rtl"] .narrative-body { border-left: none; border-right: 3px solid var(--gold); }
.narrative-body strong { color: var(--gold-light); }
.narrative-body em { color: var(--gold); font-style: normal; font-weight: 600; }

.narrative-controls {
  display: flex; gap: 8px; margin: 18px 0;
  flex-wrap: wrap;
}
.ctrl-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  min-height: 40px;
}
.ctrl-btn:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.ctrl-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.ctrl-btn.ctrl-play { background: var(--gold); color: var(--navy); }
.ctrl-btn.ctrl-play:hover:not(.playing) { background: var(--gold-light); border-color: var(--gold-light); }
.ctrl-btn.ctrl-play.playing { background: var(--red); color: white; border-color: var(--red); }
.ctrl-btn.ctrl-reset { border-color: rgba(200,169,81,0.4); font-size: 12px; padding: 9px 14px; }

.narrative-jump { margin-top: 22px; }
.jump-label {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.jump-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.jump-btn {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid rgba(200,169,81,0.3);
  color: rgba(200,169,81,0.6);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  border-radius: 3px;
  transition: all 0.15s;
  padding: 0;
  min-height: 32px;
}
.jump-btn:hover { border-color: var(--gold); color: var(--gold); }
.jump-btn.done { background: rgba(200,169,81,0.15); color: var(--gold); border-color: var(--gold); }
.jump-btn.current { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.1); }

/* ═══════════ MIZAN STORES · VISION ═══════════ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px 0;
}
.vision-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}
.vision-media {
  position: relative;
  overflow: hidden;
}
.vision-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s;
}
.vision-card:hover .vision-media img { transform: scale(1.03); }
.vision-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10,31,56,0.92);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,169,81,0.4);
}
html[dir="rtl"] .vision-tag { left: auto; right: 14px; }
.vision-tag-gold { background: var(--gold); color: var(--navy); border-color: transparent; }

.vision-caption {
  padding: 24px 26px 28px;
  flex: 1;
}
.vision-caption h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.vision-caption p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.vision-caption p strong { color: var(--navy); }
.vision-note {
  background: rgba(200,169,81,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
}
html[dir="rtl"] .vision-note { border-left: none; border-right: 3px solid var(--gold); }
.vision-note em { font-style: italic; }
.vision-note strong { color: var(--navy); font-weight: 700; font-style: normal; }

/* ═══════════ THE LAUNCH · EVENT ═══════════ */
.launch-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 40px;
}
.meta-item {
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.4);
  padding: 8px 18px;
  border-radius: 3px;
}
.meta-label {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

/* ═══════════ VIDEO — full width (safe, no breakout hacks) ═══════════ */
.video-wrap {
  margin: 40px 0 50px;
  width: 100%;
  max-width: 100%;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  border: 2px solid rgba(200,169,81,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,169,81,0.15);
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 14px;
}
.video-caption a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
}
html[dir="rtl"] .video-caption a { margin-left: 0; margin-right: 6px; }
.video-caption a:hover { text-decoration: underline; }

/* ═══════════ EVENT GALLERY — hero + side-by-side grid ═══════════ */
.event-gallery {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.event-photo {
  border-radius: 10px;
  overflow: hidden;
  background: #0F2C4D;
  border: 1px solid rgba(200,169,81,0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  margin: 0;
}
.event-photo a { display: block; overflow: hidden; position: relative; }
.event-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.event-photo a:hover img { transform: scale(1.06); }
.event-photo figcaption {
  padding: 16px 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
  border-top: 1px solid rgba(200,169,81,0.1);
}

/* Hero photo — big, prominent */
.event-hero {
  border-color: rgba(200,169,81,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.event-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.event-hero figcaption {
  font-size: 15px;
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(200,169,81,0.08), rgba(200,169,81,0.12));
  border-top: 1px solid rgba(200,169,81,0.35);
  padding: 20px 26px;
  font-weight: 500;
}

/* Thumbnails — 4-across on desktop, 2-across on tablet, 1-across on small mobile */
.event-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.event-thumbs .event-photo {
  cursor: pointer;
}
.event-thumbs .event-photo:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200,169,81,0.15);
}
.event-thumbs .event-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.event-thumbs .event-photo figcaption {
  font-size: 12px;
  padding: 12px 16px;
  min-height: 60px;
}

.launch-quote { margin-top: 44px; }

/* ═══════════ REALITY CHECK ═══════════ */
.reality-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
}
.reality-col {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.reality-col.reality-real { border-top: 6px solid var(--green); }
.reality-col.reality-proposed { border-top: 6px solid var(--gold); }
.reality-header { margin-bottom: 22px; }
.reality-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.reality-real .reality-badge { background: var(--green); color: white; }
.reality-proposed .reality-badge { background: var(--gold); color: var(--navy); }
.reality-flag { font-size: 12px; color: var(--muted); font-style: italic; }
.reality-list { list-style: none; }
.reality-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
html[dir="rtl"] .reality-list li { padding: 12px 28px 12px 0; }
.reality-list li:last-child { border-bottom: none; }
.reality-list li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 12px;
  font-size: 12px;
}
html[dir="rtl"] .reality-list li::before { left: auto; right: 0; }
.reality-real .reality-list li::before { color: var(--green); }
.reality-proposed .reality-list li::before { color: var(--gold); }

/* ═══════════ MIZAN INDEX ═══════════ */
.index-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
}
.matrix-axis { display: flex; flex-direction: column; gap: 8px; }
.axis-label {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.axis-band {
  padding: 11px 14px;
  border-left: 3px solid;
  font-size: 13px;
  font-weight: 600;
}
html[dir="rtl"] .axis-band { border-left: none; border-right: 3px solid; }
.band-excellent { border-color: var(--gold-light); background: rgba(240,217,138,0.15); color: var(--gold-light); }
.band-strong { border-color: var(--gold); background: rgba(200,169,81,0.1); color: var(--gold); }
.band-standard { border-color: var(--muted); background: rgba(107,124,147,0.15); color: rgba(255,255,255,0.7); }
.band-probation { border-color: #E8A85F; background: rgba(232,168,95,0.15); color: #E8A85F; }
.band-below { border-color: var(--red); background: rgba(181,69,58,0.15); color: var(--red-light); }
.tier-row {
  padding: 11px 14px;
  border-left: 3px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 10px;
}
html[dir="rtl"] .tier-row { border-left: none; border-right: 3px solid rgba(255,255,255,0.2); }
.tier-row.tier-highlight { background: rgba(200,169,81,0.1); border-color: var(--gold); }
.tier-badge {
  background: var(--navy);
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.tier-badge.tier-gold { background: var(--gold); color: var(--navy); }
.tier-row em { color: var(--gold); font-style: normal; margin-left: auto; font-size: 12px; }
html[dir="rtl"] .tier-row em { margin-left: 0; margin-right: auto; }

.parity-callout {
  background: rgba(200,169,81,0.1);
  border: 2px dashed var(--gold);
  padding: 26px;
  border-radius: 6px;
  margin-top: 28px;
}
.parity-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.parity-body {
  font-size: 15px;
  line-height: 1.7;
  color: white;
}
.parity-body strong { color: var(--gold-light); }

/* ═══════════ AUDIENCES ═══════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.audience-card {
  background: white;
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid var(--navy);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
.audience-card-gold { border-top-color: var(--gold); }
.audience-card-green { border-top-color: var(--green); }
.audience-icon { font-size: 36px; margin-bottom: 12px; }
.audience-role {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.audience-copy {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 18px;
}
.audience-list { list-style: none; margin-bottom: 22px; flex: 1; }
.audience-list li {
  padding: 8px 0 8px 20px;
  font-size: 13px;
  position: relative;
  color: var(--ink);
  line-height: 1.5;
}
html[dir="rtl"] .audience-list li { padding: 8px 20px 8px 0; }
.audience-list li::before {
  content: "◆";
  color: var(--gold);
  position: absolute; left: 0; top: 8px; font-size: 10px;
}
html[dir="rtl"] .audience-list li::before { left: auto; right: 0; }
.audience-btn {
  display: block;
  background: var(--navy);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  text-align: center;
}
.audience-card-gold .audience-btn { background: var(--gold); color: var(--navy); }
.audience-card-green .audience-btn { background: var(--green); color: white; }
.audience-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

/* ═══════════ PARTNERS ═══════════ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin: 36px 0;
}
.partner-tile {
  background: white;
  padding: 22px 14px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.partner-tile:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.partner-logo-placeholder {
  height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  border: 1px dashed var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
}
.partner-role {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.partner-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 28px;
  font-style: italic;
}

/* ═══════════ TEAM ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.team-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-3px); }
.team-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.team-place { font-size: 11px; color: var(--muted); font-style: italic; }

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 36px 0;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,81,0.3);
  padding: 22px;
  border-radius: 6px;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-value {
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  word-break: break-word;
}
.contact-value:hover { color: var(--gold); }
a.contact-value:hover { text-decoration: underline; }
.contact-sub { font-size: 12px; color: rgba(255,255,255,0.6); }
.contact-cta { text-align: center; margin-top: 36px; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #05121F;
  color: rgba(255,255,255,0.7);
  padding: 50px 28px 26px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { text-align: center; margin-bottom: 36px; }
.footer-logo {
  font-family: var(--font-display-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 5px;
}
.footer-ar {
  font-family: var(--font-body-ar);
  font-size: 22px;
  color: var(--gold-light);
  margin: 4px 0;
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.5;
  margin-top: 8px;
}
.footer-honesty {
  background: rgba(200,169,81,0.05);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  border-radius: 4px;
  margin: 28px 0;
  font-size: 13px;
  line-height: 1.7;
}
html[dir="rtl"] .footer-honesty { border-left: none; border-right: 3px solid var(--gold); }
.footer-honesty-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-honesty strong { color: var(--gold-light); }
.footer-honesty p { margin: 8px 0; }
.footer-eco { margin: 28px 0; text-align: center; }
.eco-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: linear-gradient(90deg, rgba(26,95,42,0.2), rgba(46,125,79,0.1));
  border: 1px solid rgba(26,95,42,0.6);
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.eco-mark {
  font-family: var(--font-mono);
  color: #7DD87F;
  font-weight: 700;
  font-size: 17px;
}
.eco-text { font-size: 12px; color: rgba(255,255,255,0.7); }
.footer-meta {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-meta a { color: var(--gold); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* Tablets (up to 960px) */
@media (max-width: 960px) {
  .arch-interactive {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .arch-narrative-wrap { position: static; }
  .arch-interactive.arch-stacked .arch-narrative-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .arch-interactive.arch-stacked .narrative-controls,
  .arch-interactive.arch-stacked .narrative-jump {
    grid-column: 1;
    grid-row: auto;
  }
  .arch-interactive.arch-stacked .narrative-controls { justify-content: flex-start; }
  .reality-split { grid-template-columns: 1fr; }
  .index-matrix { grid-template-columns: 1fr; gap: 32px; }
  .vision-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 24px; }
  .jump-grid { grid-template-columns: repeat(8, 1fr); }
  .event-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile menu breakpoint (up to 820px) */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a {
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(213, 221, 230, 0.5);
  }
  .nav-links a::after { display: none; }
  .nav { position: sticky; }
}

/* Mobile (up to 640px) */
@media (max-width: 640px) {
  html { font-size: 15px; }
  .honesty-ribbon {
    padding: 8px 14px;
    font-size: 11px;
    gap: 10px;
  }
  .ribbon-cta { padding: 4px 10px; font-size: 11px; }
  .ribbon-text { min-width: 100%; order: 2; }
  .ribbon-icon { order: 1; }
  .ribbon-cta { order: 3; }

  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 20px; letter-spacing: 1.5px; }
  .nav-ar { font-size: 15px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .lang-toggle { padding: 6px 10px; font-size: 12px; min-width: 38px; }

  .hero { padding: 40px 20px 60px; }
  .hero-badge { padding: 5px 14px; letter-spacing: 2px; font-size: 10px; }
  .hero-title { letter-spacing: 4px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 24px; }

  .section { padding: 56px 20px; }
  .section-title { font-size: 26px; }
  .section-lede { font-size: 15px; }

  .layer {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .layer-share {
    grid-column: 2;
    text-align: right;
    font-size: 22px;
  }
  html[dir="rtl"] .layer-share { text-align: left; }
  .layer-num { font-size: 32px; }

  .jump-grid { grid-template-columns: repeat(5, 1fr); }
  .ctrl-btn { flex: 1; min-width: 45%; }
  .narrative-controls { gap: 6px; }

  .quote-card {
    padding: 24px 20px 24px 44px;
    font-size: 15px;
  }
  html[dir="rtl"] .quote-card { padding: 24px 44px 24px 20px; }
  .quote-mark { font-size: 44px; top: 18px; left: 14px; }
  html[dir="rtl"] .quote-mark { left: auto; right: 14px; }

  .footer { padding: 40px 20px 24px; }
  .footer-logo { font-size: 30px; letter-spacing: 3px; }
  .footer-honesty { padding: 18px; font-size: 12px; }

  .contact-card { padding: 18px; }
  .contact-value { font-size: 14px; }

  .vision-caption { padding: 18px 20px 22px; }
  .vision-caption h3 { font-size: 19px; }
  .launch-meta { gap: 8px; }
  .meta-item { padding: 6px 12px; }
  .meta-label { font-size: 12px; }
  .event-thumbs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .event-thumbs figcaption { font-size: 11px; padding: 10px 12px; }
}

/* Small mobile (up to 400px) */
@media (max-width: 400px) {
  .nav-actions { gap: 8px; }
  .nav-cta { display: none; }
  .stat-number { font-size: 42px; }
  .arch-svg { min-height: 320px; }
  .team-avatar { width: 90px; height: 90px; }
  .team-name { font-size: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-orbit { animation: none; }
  .hero-scroll { animation: none; }
}
