/* ============================================================
   MBS — Unofficial Tribute · Royal Dark-Gold Design System
   ============================================================ */

:root {
  --gold-300: #f5d98b;
  --gold-400: #e8c46a;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --ink-900: #06080f;
  --ink-800: #0a0e1a;
  --ink-700: #101627;
  --ink-600: #182036;
  --sand-100: #f4ecdd;
  --sand-300: #d9cbb0;
  --text-dim: rgba(244, 236, 221, 0.62);
  --line: rgba(212, 175, 55, 0.18);
  --glow-gold: 0 0 40px rgba(212, 175, 55, 0.35);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-arabic: "Amiri", "Traditional Arabic", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
main { overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--sand-100);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold-500); color: var(--ink-900); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-600), var(--gold-500));
  border-radius: 10px;
}

.container { width: min(1180px, 92%); margin-inline: auto; }
.center { text-align: center; }

em { font-style: italic; color: var(--gold-400); }

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; transition: opacity 0.8s ease, visibility 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-crest { width: 96px; height: auto; }
.preloader-bar {
  width: 180px; height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  animation: loadBar 1.6s var(--ease-out) forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ============ Disclaimer Banner ============ */
.disclaimer-banner {
  position: relative; z-index: 1001;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: linear-gradient(90deg, #1a1206, #241a08 50%, #1a1206);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem; color: var(--sand-300);
}
.disc-icon { flex-shrink: 0; margin-top: 2px; filter: drop-shadow(0 0 6px rgba(212,175,55,.5)); }
.disclaimer-banner a {
  color: var(--gold-400); text-decoration: underline; text-underline-offset: 3px;
  transition: color .3s;
}
.disclaimer-banner a:hover { color: var(--gold-300); }
.disclaimer-banner.dismissed {
  opacity: 0; transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
  pointer-events: none;
}
.disc-ok {
  flex-shrink: 0; align-self: center;
  margin-inline-start: auto; padding: 6px 18px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-900); background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: none; border-radius: 99px; cursor: pointer;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.disc-ok:hover { transform: scale(1.06); box-shadow: 0 4px 18px rgba(212, 175, 55, 0.5); }
.disc-ok:active { transform: scale(0.97); }

/* ============ Navigation ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  transition: all 0.5s var(--ease-out);
}
.nav.scrolled {
  padding-block: 12px;
  background: rgba(6, 8, 15, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.22em; color: var(--ink-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  padding: 8px 14px; border-radius: 4px;
  box-shadow: var(--glow-gold);
}
.brand-text {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--sand-100); white-space: nowrap;
}
.nav-links {
  display: flex; gap: clamp(16px, 3vw, 38px); list-style: none;
}
.nav-links a {
  position: relative; color: var(--text-dim); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0%; height: 1px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--gold-300); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 1002; }

/* ---- Language switch badge ---- */
.lang-switch {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-300); text-decoration: none;
  font-family: "Amiri", serif; font-weight: 700; font-size: 1.15rem;
  transition: all 0.35s var(--ease-out);
}
.lang-switch:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900); border-color: transparent;
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
html[dir="rtl"] .lang-switch { font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.02em; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px 0;
  background: var(--gold-400); transition: 0.4s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Intro ============ */
.intro {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.intro-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(212,175,55,0.16), transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 110%, rgba(30,58,95,0.5), transparent 70%),
    radial-gradient(ellipse 55% 40% at 10% 100%, rgba(90,52,20,0.35), transparent 70%),
    var(--ink-900);
}
.intro-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift { to { background-position: 72px 72px, 72px 72px; } }

.intro-particles { position: absolute; inset: 0; pointer-events: none; }
.intro-particles canvas { width: 100%; height: 100%; }

.intro-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 980px; }
.intro-kicker {
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 28px;
}
.intro-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 1.02; letter-spacing: 0.01em;
}
.intro-title .line { display: block; }
.intro-title .gold {
  background: linear-gradient(105deg, var(--gold-300) 10%, #fff6dc 35%, var(--gold-500) 60%, var(--gold-300) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShimmer 6s linear infinite;
  filter: drop-shadow(0 6px 32px rgba(212, 175, 55, 0.28));
}
@keyframes goldShimmer { to { background-position: 200% center; } }

.intro-sub {
  max-width: 620px; margin: 30px auto 44px;
  color: var(--text-dim); font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 300;
}
.intro-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.45s var(--ease-out); overflow: hidden;
}
.btn-gold {
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(212, 175, 55, 0.45); }
.btn-outline {
  color: var(--sand-100); border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--gold-400); color: var(--gold-300);
  background: rgba(212, 175, 55, 0.1); transform: translateY(-3px);
}

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--text-dim); z-index: 2;
}
.scroll-hint span {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold-400), transparent);
  animation: hintDrop 2s ease-in-out infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ Stats Bar ============ */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--ink-800); padding: 44px 20px; text-align: center;
  transition: background 0.4s;
}
.stat:hover { background: var(--ink-700); }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ============ Sections ============ */
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.section.dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.06), transparent 70%),
    var(--ink-800);
}

.section-head { text-align: center; margin-bottom: clamp(50px, 7vw, 84px); }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); line-height: 1.1;
}
.section-desc { max-width: 640px; margin: 20px auto 0; color: var(--text-dim); }
.eyebrow {
  display: block; font-size: 0.72rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: 16px;
}
.section-head.light h2 { color: var(--sand-100); }

/* ============ Profile ============ */
.profile-grid {
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.portrait-frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: var(--ink-700);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(212, 175, 55, 0.08);
}
.portrait-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 30%;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1s var(--ease-out), filter 0.6s;
}
.portrait-frame:hover .portrait-img { transform: scale(1.045); filter: saturate(1) contrast(1.08); }
.portrait-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 8, 15, 0.88) 100%),
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.1), transparent 55%);
}
.portrait-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 24px; text-align: center;
}
.portrait-caption .arabic-name {
  display: block; direction: rtl;
  font-family: var(--font-arabic); font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: var(--gold-300); margin-bottom: 6px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}
.portrait-caption .portrait-title {
  font-size: 0.64rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(244, 236, 221, 0.75);
}
.frame-corner {
  position: absolute; width: 34px; height: 34px;
  border-color: var(--gold-500); border-style: solid; border-width: 0;
  z-index: 2;
}
.frame-corner.tl { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; }
.frame-corner.tr { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; }
.frame-corner.bl { bottom: 14px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; }
.frame-corner.br { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }

.profile-bio h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 18px;
}
.profile-bio .lead { color: var(--sand-100); font-size: 1.06rem; margin-bottom: 16px; }
.profile-bio p:not(.lead) { color: var(--text-dim); margin-bottom: 30px; }

.fact-list { list-style: none; border-top: 1px solid var(--line); }
.fact-list li {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s;
}
.fact-list li:hover { background: rgba(212, 175, 55, 0.04); padding-left: 12px; }
.fact-list strong {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-400); align-self: center;
}
.fact-list span { color: var(--sand-300); font-size: 0.94rem; }

/* ============ Vision Pillars ============ */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.pillar {
  position: relative; padding: 44px 34px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line); border-radius: 6px;
  backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1), transparent 65%);
  opacity: 0; transition: opacity 0.5s;
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), var(--glow-gold);
}
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  width: 58px; height: 58px; margin-bottom: 22px;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.4));
  transition: transform 0.6s var(--ease-out), filter 0.5s;
}
.pillar:hover .pillar-icon {
  transform: translateY(-4px) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.65));
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.55rem; margin-bottom: 12px;
}
.pillar p { color: var(--text-dim); font-size: 0.95rem; }

.vision-quote { margin-top: clamp(60px, 8vw, 100px); text-align: center; }
.vision-quote .vision-statement {
  max-width: 780px; margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.5;
  color: var(--sand-100); position: relative; padding-inline: 30px;
}

/* ============ Timeline ============ */
.timeline {
  list-style: none; position: relative; max-width: 760px; margin-inline: auto;
  padding-left: 40px;
}
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(var(--gold-500), rgba(212, 175, 55, 0.08));
}
.timeline li {
  position: relative; padding: 0 0 46px 34px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -37px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink-800); border: 2px solid var(--gold-500);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.55);
  transition: transform 0.3s, background 0.3s;
}
.timeline li:hover::before { transform: scale(1.4); background: var(--gold-400); }
.tl-year {
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1.1;
}
.tl-body h4 {
  font-size: 1.02rem; font-weight: 600; letter-spacing: 0.04em;
  margin: 6px 0 6px;
}
.tl-body p { color: var(--text-dim); font-size: 0.92rem; max-width: 520px; }

/* ============ Legacy ============ */
.legacy {
  background:
    radial-gradient(ellipse 55% 65% at 50% 110%, rgba(212, 175, 55, 0.14), transparent 70%),
    var(--ink-900);
  text-align: center;
}
.legacy-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.08;
  margin-bottom: 26px;
}
.legacy-text {
  max-width: 640px; margin: 0 auto 44px; color: var(--text-dim);
  font-size: 1.05rem; font-weight: 300;
}
.legacy-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-800);
  text-align: center; padding: 70px 24px 40px;
}
.footer-crest {
  width: 84px; height: auto; margin-bottom: 18px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}
.footer-arabic {
  direction: rtl; font-family: var(--font-arabic); font-weight: 700;
  font-size: 1.45rem; line-height: 1.7; color: var(--gold-300); margin-bottom: 26px;
}
.footer-dob { display: flex; flex-direction: column; gap: 6px; margin-bottom: 30px; }
.dob-nums {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; letter-spacing: 0.28em;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dob-label {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-dim);
}
.footer-disclaimer {
  max-width: 720px; margin: 0 auto 30px;
  font-size: 0.78rem; line-height: 1.8; color: rgba(244, 236, 221, 0.45);
  border: 1px dashed rgba(212, 175, 55, 0.25); border-radius: 6px;
  padding: 18px 24px;
}
.footer-disclaimer a { color: var(--gold-400); }
.footer-copy { font-size: 0.72rem; letter-spacing: 0.14em; color: rgba(244, 236, 221, 0.35); }

/* ============ Reveal Animations ============ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; will-change: transform, opacity;
}
.reveal-up { transform: translateY(46px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.revealed {
  opacity: 1 !important; transform: none !important;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .profile-grid { grid-template-columns: 1fr; gap: 44px; }
  .portrait-frame { max-width: 420px; margin-inline: auto; width: 100%; }
  .pillars { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .pillar { padding: 36px 28px; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 1001;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 34px; background: rgba(6, 8, 15, 0.96);
    backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transition: 0.45s var(--ease-out);
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.15rem; letter-spacing: 0.24em; }
  .nav-toggle { display: block; order: 3; margin-inline-start: 18px; }
  .brand-text { display: none; }
  .reveal-left, .reveal-right { transform: translateY(46px); }
  .lang-switch { position: relative; z-index: 1002; order: 2; margin-inline-start: auto; }
  .fact-list li { grid-template-columns: 1fr; gap: 4px; }
  .disclaimer-banner { font-size: 0.72rem; padding-block: 10px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .intro-content { padding-top: 140px; }
  .intro-cta .btn { width: 100%; justify-content: center; }
  .timeline { padding-left: 28px; }
  .timeline li { padding-left: 24px; }
  .timeline li::before { left: -25px; }
  .footer-disclaimer { padding: 14px 16px; }
}

@media (max-width: 380px) {
  .stats-bar { grid-template-columns: 1fr; }
  .intro-title { font-size: clamp(2.4rem, 13vw, 3.2rem); }
}
