@font-face {
  font-family: "Gantari";
  src: url("fonts/gantari-latin-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Arabic";
  src: url("fonts/noto-sans-arabic-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --atlas: oklch(18% 0.032 158);
  --deep: oklch(23% 0.038 158);
  --deep-2: oklch(28% 0.04 158);
  --limestone: oklch(96% 0.012 105);
  --paper: oklch(93% 0.016 112);
  --mist: oklch(90% 0.018 145);
  --ink: oklch(23% 0.026 158);
  --muted: oklch(48% 0.025 158);
  --accent: oklch(72% 0.145 142);
  --accent-dark: oklch(47% 0.105 146);
  --light-text: oklch(95% 0.012 112);
  --light-muted: oklch(77% 0.025 145);
  --rule-dark: oklch(38% 0.035 158);
  --rule-light: oklch(83% 0.02 135);
  --error: oklch(54% 0.18 28);
  --focus: oklch(82% 0.14 134);
  --radius: 18px;
  --radius-control: 999px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-deep: 0 30px 90px oklch(9% 0.025 158 / .35);
  --shadow-light: 0 26px 70px oklch(29% 0.035 150 / .13);
  --page: min(92vw, 1380px);
  --safe-bottom: max(1.25rem, env(safe-area-inset-bottom));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--atlas); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--limestone);
  font-family: "Gantari", "Avenir Next", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body { font-family: "Noto Arabic", Tahoma, sans-serif; }
img, svg, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, dl, dd { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section { position: relative; scroll-margin-top: 104px; }
.dark-section { color: var(--light-text); background: var(--atlas); }
.light-section { color: var(--ink); background: var(--limestone); }
.section-pad { padding: clamp(6rem, 10vw, 10rem) max(4vw, calc((100vw - 1380px) / 2)); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  inset-inline-start: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--atlas);
  background: var(--focus);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.concept-bar {
  position: relative;
  z-index: 301;
  min-height: 32px;
  padding: 6px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--atlas);
  background: var(--accent);
  font-size: .74rem;
  letter-spacing: .025em;
  text-align: center;
}
.concept-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--atlas); }

.site-header {
  position: sticky;
  z-index: 300;
  top: 0;
  height: 72px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  color: var(--light-text);
  background: oklch(18% 0.032 158 / .94);
  border-bottom: 1px solid oklch(95% 0.012 112 / .12);
  backdrop-filter: blur(18px) saturate(1.2);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; min-height: 48px; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong { font-size: .92rem; letter-spacing: .08em; }
.brand-copy small { max-width: 190px; color: var(--light-muted); font-size: .62rem; }
.primary-nav { display: flex; align-items: center; gap: clamp(12px, 1.45vw, 26px); }
.primary-nav a { position: relative; padding: 25px 0 23px; color: var(--light-muted); font-size: .78rem; font-weight: 570; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: 17px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform 280ms var(--ease); }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--light-text); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.language-switch { display: flex; padding: 3px; border: 1px solid var(--rule-dark); border-radius: var(--radius-control); }
.language-switch button { min-width: 44px; min-height: 44px; padding: 0 9px; border: 0; border-radius: var(--radius-control); color: var(--light-muted); background: transparent; cursor: pointer; font-size: .72rem; }
.language-switch button[aria-pressed="true"] { color: var(--atlas); background: var(--light-text); }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100dvh - 104px);
  padding: clamp(3rem, 7vh, 5rem) 4vw 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .65fr) minmax(220px, .36fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 3vw;
  isolation: isolate;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, oklch(15% 0.034 158 / .98) 0%, oklch(15% 0.034 158 / .84) 38%, oklch(15% 0.034 158 / .18) 65%, oklch(15% 0.034 158 / .68) 100%), radial-gradient(circle at 66% 43%, oklch(51% 0.12 145 / .12), transparent 31%); }
.hero-atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; opacity: .78; contain: layout paint; }
.topography { position: absolute; width: 65vw; aspect-ratio: 1; border: 1px solid oklch(74% 0.09 145 / .12); border-radius: 42% 58% 60% 40%; }
.topography::before, .topography::after { content: ""; position: absolute; border: 1px solid oklch(74% 0.09 145 / .13); border-radius: inherit; }
.topography::before { inset: 8%; }
.topography::after { inset: 17%; }
.topo-a { right: -16vw; top: -22vw; animation: topoDrift 18s ease-in-out infinite alternate; }
.topo-b { left: -30vw; bottom: -42vw; transform: rotate(55deg); animation: topoDrift 23s ease-in-out infinite alternate-reverse; }
.hero-orbit { position: absolute; border: 1px solid oklch(73% 0.1 143 / .13); border-radius: 50%; }
.orbit-a { width: 46vw; height: 46vw; right: 2vw; top: 6vh; }
.orbit-b { width: 30vw; height: 30vw; right: 10vw; top: 14vh; }
@keyframes topoDrift { to { transform: translate3d(3vw, 2vw, 0) rotate(8deg); border-radius: 57% 43% 38% 62%; } }

.hero-copy { position: relative; z-index: 2; grid-column: 1; grid-row: 1; max-width: 780px; align-self: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--accent-dark); font-size: .72rem; font-weight: 720; letter-spacing: .14em; text-transform: uppercase; }
.dark-section .eyebrow { color: var(--accent); }
.eyebrow::before { content: ""; width: 26px; height: 2px; flex: 0 0 auto; background: currentColor; }
.hero h1 { max-width: 790px; color: var(--light-text); font-size: clamp(3.1rem, 5.3vw, 5.7rem); font-weight: 720; letter-spacing: -.068em; line-height: .91; }
.hero h1 em, h2 em { color: var(--accent); font-style: italic; font-weight: 430; }
.hero-lead { max-width: 620px; margin-top: 26px; color: var(--light-muted); font-size: clamp(1.05rem, 1.45vw, 1.35rem); line-height: 1.45; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; border-radius: var(--radius-control); font-size: .86rem; font-weight: 700; white-space: nowrap; transition: transform 180ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease); }
.button svg, .hero-actions svg, .notice-list svg, .contact-routes svg, .guide-runway svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(.985); }
.button-primary { color: var(--atlas); background: var(--accent); box-shadow: 0 14px 40px oklch(72% 0.145 142 / .15); }
.button-primary:hover { background: oklch(79% 0.145 142); }
.button-outline { color: var(--light-text); border-color: var(--rule-dark); background: var(--deep); }
.button-outline:hover { border-color: var(--accent); }
.text-link { min-height: 46px; display: inline-flex; align-items: center; border-bottom: 1px solid currentColor; color: var(--light-text); font-size: .86rem; font-weight: 650; }
.dark-link { color: var(--ink); }

.hero-visual { position: absolute; z-index: -2; inset: 0; overflow: hidden; contain: layout paint; }
.hero-media, .hero-media img { display: block; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; filter: saturate(.94) contrast(1.025); }
.hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, var(--atlas) 0%, oklch(18% 0.032 158 / .84) 28%, transparent 58%), linear-gradient(180deg, oklch(13% 0.03 158 / .12), transparent 36%, oklch(11% 0.028 158 / .38)); box-shadow: inset 0 0 120px oklch(8% 0.02 158 / .42); }
.terrain-scan { position: absolute; z-index: 2; top: 16%; right: 5%; width: 58%; height: 68%; overflow: hidden; opacity: .48; pointer-events: none; mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent); }
.terrain-scan::after { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 25px var(--accent); animation: terrainScan 5.8s var(--ease) infinite alternate; }
@keyframes terrainScan { from { transform: translate3d(0, 0, 0); opacity: .18; } to { transform: translate3d(0, 52vh, 0); opacity: .8; } }

.pulse-panel { align-self: center; position: relative; z-index: 2; grid-column: 3; grid-row: 1; padding-inline: 18px; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); background: oklch(16% 0.034 158 / .76); box-shadow: 0 24px 70px oklch(8% 0.02 158 / .22); }
.pulse-head { min-height: 58px; display: flex; align-items: center; gap: 8px; color: var(--light-muted); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.pulse-head small { margin-inline-start: auto; color: var(--accent); font-size: .62rem; }
.live-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 oklch(72% 0.145 142 / .45); animation: livePulse 2s infinite; }
@keyframes livePulse { 60% { box-shadow: 0 0 0 9px oklch(72% 0.145 142 / 0); } }
.pulse-panel dl > div { padding: 18px 0; display: grid; gap: 4px; border-top: 1px solid var(--rule-dark); }
.pulse-panel dt { color: var(--light-muted); font-size: .69rem; }
.pulse-panel dd { color: var(--light-text); font-variant-numeric: tabular-nums; }
.pulse-panel dd strong { font-size: clamp(1.65rem, 2vw, 2.25rem); font-weight: 650; letter-spacing: -.04em; }
.pulse-panel dd span { color: var(--accent); font-size: .76rem; }
.pulse-panel > p { padding: 14px 0; display: flex; gap: 8px; color: var(--light-muted); border-top: 1px solid var(--rule-dark); font-size: .64rem; }
.pulse-panel > p svg { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.scroll-cue { grid-column: 1 / -1; justify-self: start; display: flex; align-items: center; gap: 14px; color: var(--light-muted); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.scroll-cue i { width: 44px; height: 1px; overflow: hidden; background: var(--rule-dark); }
.scroll-cue i::after { content: ""; display: block; width: 18px; height: 1px; background: var(--accent); animation: scrollCue 2.2s var(--ease) infinite; }
@keyframes scrollCue { from { transform: translateX(-20px); } to { transform: translateX(46px); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.section-intro { max-width: 1050px; }
.section-intro h2, .data-heading h2, .citizen-lead h2, .notices-head h2, .contact-copy h2 { font-size: clamp(2.55rem, 5vw, 5.45rem); line-height: .98; letter-spacing: -.058em; font-weight: 700; }
.light-section h2 em { color: var(--accent-dark); }

.authority { overflow: hidden; contain: layout paint; }
.authority::before { content: "SWMA"; position: absolute; right: -2vw; top: 4vw; color: oklch(24% 0.03 150 / .035); font-size: clamp(7rem, 19vw, 20rem); font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.authority-layout { position: relative; margin-top: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; }
.authority-statement { align-self: end; padding-bottom: 26px; }
.lead-copy { max-width: 490px; margin-bottom: 32px; font-size: clamp(1.3rem, 2vw, 2rem); line-height: 1.28; letter-spacing: -.025em; }
.mandate-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule-light); }
.mandate-list li { padding: 28px 0; display: grid; grid-template-columns: 56px 1fr; gap: 24px; border-bottom: 1px solid var(--rule-light); }
.mandate-list > li > span { color: var(--accent-dark); font-size: .72rem; font-variant-numeric: tabular-nums; }
.mandate-list h3 { margin-bottom: 7px; font-size: 1.45rem; letter-spacing: -.03em; }
.mandate-list p { max-width: 650px; color: var(--muted); }
.governance-band { margin-top: 7rem; min-height: 84px; padding: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.governance-band span { min-height: 44px; padding: 0 22px; display: flex; align-items: center; gap: 12px; border-inline-end: 1px solid var(--rule-light); font-size: .8rem; font-weight: 650; }
.governance-band b { font-weight: inherit; }
.governance-band span:last-child { border-inline-end: 0; }
.governance-band svg { width: 22px; height: 22px; fill: none; stroke: var(--accent-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.flow-story { min-height: 280vh; }
.flow-scroll-space { height: 280vh; }
.flow-sticky { position: sticky; top: 72px; height: calc(100dvh - 72px); padding: clamp(2rem, 5vw, 5rem) 4vw; display: grid; grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr); align-items: center; gap: 4vw; overflow: hidden; }
.flow-sticky::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 50%, oklch(55% 0.11 145 / .15), transparent 34%); }
.flow-copy { position: relative; z-index: 2; }
.flow-copy h2 { font-size: clamp(2.6rem, 4.5vw, 5.2rem); line-height: .96; letter-spacing: -.055em; }
.flow-copy > p:not(.eyebrow) { max-width: 470px; margin-top: 20px; color: var(--light-muted); }
.flow-progress { margin-top: 32px; height: 2px; overflow: hidden; background: var(--rule-dark); }
.flow-progress span { display: block; width: 100%; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .flow-progress span { transform-origin: right; }
.flow-steps { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; list-style: none; }
.flow-steps li { min-width: 0; padding-top: 12px; color: var(--light-muted); border-top: 1px solid var(--rule-dark); transition: color 220ms var(--ease), border-color 220ms var(--ease); }
.flow-steps li span, .flow-steps li small { display: block; font-size: .6rem; }
.flow-steps li strong { display: block; margin: 6px 0 2px; font-size: .76rem; }
.flow-steps li.is-active { color: var(--accent); border-color: var(--accent); }
.flow-theatre { position: relative; z-index: 1; min-width: 0; width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr); gap: 18px; align-items: stretch; }
.flow-canvas-wrap { position: relative; z-index: 1; width: 100%; max-height: min(75vh, 850px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--rule-dark); border-radius: var(--radius); background: var(--deep); box-shadow: var(--shadow-deep); }
#flow-canvas, #flow-webgl { position: absolute; inset: 0; width: 100%; height: 100%; }
#flow-canvas { z-index: 0; opacity: 1; transition: opacity 360ms var(--ease); }
#flow-webgl { z-index: 1; max-width: none; opacity: 0; touch-action: pan-y; user-select: none; transition: opacity 500ms var(--ease); }
.flow-canvas-wrap.has-3d-hit #flow-webgl,
.flow-canvas-wrap.has-3d-focus #flow-webgl { cursor: pointer; }
.flow-object-label {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  min-width: 74px;
  padding: 8px 12px 7px;
  color: var(--atlas);
  border: 1px solid oklch(91% 0.08 142 / .78);
  border-radius: var(--radius-control);
  background: var(--accent);
  box-shadow: 0 8px 28px oklch(8% 0.025 158 / .3), 0 0 26px oklch(72% 0.145 142 / .18);
  opacity: 0;
  pointer-events: none;
  font-family: "Gantari", "Avenir Next", system-ui, sans-serif;
  font-size: .64rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .13em;
  text-align: center;
  transition: opacity 220ms var(--ease);
  will-change: transform, opacity;
}
.flow-object-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 11px;
  background: var(--accent);
  transform: translateX(-50%);
}
.flow-object-label.is-visible { opacity: 1; }
.flow-object-label[hidden] { display: none !important; }
.flow-stage-annotation {
  position: absolute;
  z-index: 1;
  inset: 50% 0 auto;
  width: 100%;
  padding: 22px 20px 24px;
  color: var(--light-text);
  border-block: 1px solid var(--rule-dark);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, -42%, 0);
  transition: opacity 280ms var(--ease), transform 360ms var(--ease);
  will-change: transform, opacity;
}
.flow-stage-rail { position: relative; min-width: 0; min-height: 100%; overflow: hidden; border-radius: var(--radius); background: linear-gradient(180deg, oklch(27% 0.04 158 / .6), oklch(15% 0.032 158 / .78)); box-shadow: inset 0 0 0 1px var(--rule-dark); }
.flow-stage-rail::before { content: ""; position: absolute; inset: 18px 18px auto; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); opacity: .72; }
.flow-stage-annotation span,
.flow-stage-annotation strong,
.flow-stage-annotation small { display: block; }
.flow-stage-annotation span { color: var(--accent); font-size: .61rem; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.flow-stage-annotation strong { margin-top: 12px; font-size: clamp(1rem, 1.25vw, 1.28rem); line-height: 1.12; letter-spacing: -.025em; }
.flow-stage-annotation small { margin-top: 10px; color: var(--light-muted); font-size: .72rem; line-height: 1.45; }
.flow-stage-annotation.is-active { opacity: 1; transform: translate3d(0, -50%, 0); }
[dir="rtl"] .flow-stage-annotation { transform: translate3d(-18px, -42%, 0); }
[dir="rtl"] .flow-stage-annotation.is-active { transform: translate3d(0, -50%, 0); }
.flow-3d-poster { position: absolute; z-index: 3; inset: 0; display: block; opacity: 0; pointer-events: none; }
.flow-3d-poster img { width: 100%; height: 100%; object-fit: cover; }
.flow-canvas-wrap.is-webgl-ready #flow-canvas { opacity: 0; }
.flow-canvas-wrap.is-webgl-ready #flow-webgl { opacity: 1; }
.flow-canvas-wrap.is-poster-ready #flow-canvas { opacity: 0; }
.flow-canvas-wrap.is-poster-ready .flow-3d-poster { opacity: 1; }
.flow-3d-loader { position: absolute; z-index: 5; inset: 50% auto auto 50%; padding: 10px 14px; color: var(--light-muted); border: 1px solid var(--rule-dark); border-radius: 8px; background: oklch(15% 0.034 158 / .88); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; transform: translate(-50%, -50%); }
.flow-3d-loader[hidden], .flow-canvas-wrap.is-webgl-fallback .flow-3d-loader { display: none; }
.canvas-grid { position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: .13; background-image: linear-gradient(var(--light-muted) 1px, transparent 1px), linear-gradient(90deg, var(--light-muted) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent); }
.frame-readout { position: absolute; z-index: 4; top: 16px; right: 18px; color: var(--light-muted); font-size: .62rem; letter-spacing: .12em; }

.split-intro { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: 8vw; align-items: end; }
.split-intro > p { max-width: 480px; padding-bottom: 8px; color: var(--muted); font-size: 1.06rem; }
.roadmap { margin-top: 6rem; }
.roadmap-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule-light); }
.roadmap-tabs button { min-height: 112px; padding: 20px 18px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 2px 18px; text-align: start; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid var(--rule-light); border-inline-end: 1px solid var(--rule-light); cursor: pointer; transition: color 220ms var(--ease), background-color 220ms var(--ease); }
.roadmap-tabs button:last-child { border-inline-end: 0; }
.roadmap-tabs button span { grid-row: 1 / 3; color: var(--accent-dark); font-size: .7rem; }
.roadmap-tabs button strong { align-self: end; font-size: 1rem; }
.roadmap-tabs button small { font-size: .68rem; }
.roadmap-tabs button[aria-selected="true"] { color: var(--limestone); background: var(--atlas); }
.roadmap-tabs button[aria-selected="true"] span { color: var(--accent); }
.phase-panel { min-height: 390px; padding: clamp(2.2rem, 5vw, 5rem); display: grid; grid-template-columns: .32fr 1fr .9fr; gap: 5vw; align-items: center; color: var(--light-text); background: var(--deep); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-light); }
.phase-number { color: var(--accent); font-size: clamp(5rem, 11vw, 11rem); font-weight: 220; line-height: 1; letter-spacing: -.08em; }
.phase-kicker { margin-bottom: 10px; color: var(--accent); font-size: .72rem; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.phase-panel h3 { max-width: 510px; margin-bottom: 16px; font-size: clamp(1.9rem, 3vw, 3.4rem); line-height: 1.02; letter-spacing: -.045em; }
.phase-panel > div:nth-child(2) > p:last-child { color: var(--light-muted); }
.phase-panel ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule-dark); }
.phase-panel li { padding: 14px 0; border-bottom: 1px solid var(--rule-dark); color: var(--light-muted); font-size: .82rem; }
.demo-tag { grid-column: 2 / -1; display: flex; align-items: center; gap: 8px; color: var(--light-muted); font-size: .66rem; }
.demo-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.atlas-section { overflow: hidden; }
.atlas-section::before { content: ""; position: absolute; left: -14vw; top: -16vw; width: 52vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--rule-dark); box-shadow: 0 0 0 7vw oklch(72% 0.145 142 / .025), 0 0 0 14vw oklch(72% 0.145 142 / .02); }
.atlas-section .split-intro > p { color: var(--light-muted); }
.facility-media { position: relative; margin: 5rem 0 18px; min-height: 390px; overflow: hidden; border: 1px solid var(--rule-dark); border-radius: var(--radius); background: var(--deep); box-shadow: var(--shadow-deep); }
.facility-media picture, .facility-media img { display: block; width: 100%; height: 100%; }
.facility-media picture { position: absolute; inset: 0; }
.facility-media img { object-fit: cover; object-position: center 55%; filter: saturate(.82) contrast(1.04); }
.facility-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 42%, oklch(13% 0.034 158 / .92)); }
.facility-media figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.facility-media figcaption span, .facility-media figcaption small { color: var(--accent); font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }
.facility-media figcaption strong { font-size: clamp(1.35rem, 2.4vw, 2.65rem); letter-spacing: -.035em; }
.facility-media figcaption small { color: var(--light-muted); }
.atlas-interface { overflow: clip; border: 1px solid var(--rule-dark); border-radius: var(--radius); background: var(--deep); box-shadow: var(--shadow-deep); }
.atlas-toolbar { position: sticky; z-index: 4; top: 72px; min-height: 68px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-bottom: 1px solid var(--rule-dark); background: oklch(23% 0.038 158 / .97); }
.atlas-status, .map-legend, .map-legend span { display: flex; align-items: center; gap: 8px; }
.atlas-status { color: var(--light-text); font-size: .76rem; }
.atlas-status small { color: var(--accent); }
.status-light, .map-legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.map-legend { color: var(--light-muted); font-size: .68rem; }
.map-legend b, .shell-state b { font-weight: inherit; }
.map-legend .legend-planned { border: 1px solid var(--light-muted); background: transparent; }
.map-layout { min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(285px, .36fr); }
.map-stage { position: relative; min-height: 650px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 50%, oklch(49% 0.09 150 / .13), transparent 40%), var(--atlas); }
.map-stage::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(var(--light-muted) 1px, transparent 1px), linear-gradient(90deg, var(--light-muted) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle, black 20%, transparent 72%); }
.map-loading { display: flex; align-items: center; gap: 10px; color: var(--light-muted); font-size: .78rem; }
.map-loading span { width: 18px; height: 18px; border: 2px solid var(--rule-dark); border-top-color: var(--accent); border-radius: 50%; animation: spin 900ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.map-stage > svg { position: relative; z-index: 1; width: min(74%, 560px); height: min(75vh, 660px); overflow: visible; filter: drop-shadow(0 28px 28px oklch(8% 0.025 155 / .42)); }
.map-stage svg #features path { fill: oklch(37% 0.055 155); stroke: oklch(76% 0.03 145); stroke-width: 1.2; vector-effect: non-scaling-stroke; cursor: pointer; transition: fill 220ms var(--ease), filter 220ms var(--ease), transform 220ms var(--ease); transform-origin: center; }
.map-stage svg #features path:hover, .map-stage svg #features path:focus-visible { fill: oklch(52% 0.105 148); filter: drop-shadow(0 0 14px oklch(72% 0.145 142 / .38)); outline: 0 !important; }
.map-stage svg #features path.is-selected { fill: var(--accent); stroke: var(--light-text); stroke-width: 2; filter: drop-shadow(0 0 20px oklch(72% 0.145 142 / .32)); }
.map-stage svg #points { display: none; }
.map-stage svg #label_points { display: block; }
.map-stage svg #label_points circle { fill: transparent; stroke: transparent; stroke-width: 2; cursor: pointer; pointer-events: all; vector-effect: non-scaling-stroke; }
.map-stage svg #label_points circle:focus, .map-stage svg #label_points circle:focus-visible { fill: oklch(72% 0.145 142 / .09); stroke: var(--focus); outline: 0 !important; }
.map-stage svg circle { outline: 0 !important; }
.region-panel { padding: clamp(2rem, 4vw, 4rem); display: flex; flex-direction: column; justify-content: center; border-inline-start: 1px solid var(--rule-dark); }
.region-label { color: var(--accent); font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.region-panel h3 { margin-top: 14px; font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1; letter-spacing: -.045em; }
.region-panel > p:nth-of-type(2) { margin-top: 10px; color: var(--light-muted); font-family: "Noto Arabic", Tahoma, sans-serif; font-size: 1.1rem; }
.region-panel dl { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.region-panel dl > div { padding: 16px 8px 16px 0; }
.region-panel dt { color: var(--light-muted); font-size: .62rem; }
.region-panel dd { margin-top: 6px; color: var(--light-text); font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.capacity-meter { height: 3px; margin-top: 25px; overflow: hidden; background: var(--rule-dark); }
.capacity-meter span { display: block; width: var(--capacity); height: 100%; background: var(--accent); transition: width 500ms var(--ease); }
.region-types { margin: 22px 0 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.region-types span { padding: 7px 10px; color: var(--light-muted); border: 1px solid var(--rule-dark); border-radius: var(--radius-control); font-size: .64rem; }
.map-disclaimer { padding: 14px 22px; color: var(--light-muted); border-top: 1px solid var(--rule-dark); font-size: .62rem; }

.data-heading { display: grid; grid-template-columns: 1fr .6fr; gap: 5vw; align-items: end; }
.data-heading .eyebrow { grid-column: 1 / -1; }
.data-heading > p:last-child { max-width: 430px; padding-bottom: 8px; color: var(--muted); }
.dashboard-shell { margin-top: 5rem; overflow: hidden; border: 1px solid var(--rule-light); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-light); }
.dashboard-shell > header { min-height: 70px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--light-text); background: var(--atlas); }
.dashboard-shell > header > div { display: flex; align-items: center; gap: 12px; }
.shell-mark { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 8px; color: var(--accent); font-size: .65rem; font-weight: 750; }
.shell-state { color: var(--light-muted); font-size: .7rem; }
.shell-state span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.dashboard-body { min-height: 550px; display: grid; grid-template-columns: 190px 1fr; }
.dash-nav { padding: 22px 12px; display: flex; flex-direction: column; gap: 5px; border-inline-end: 1px solid var(--rule-light); }
.dash-nav button { min-height: 44px; padding: 0 13px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 10px; color: var(--muted); background: transparent; cursor: pointer; text-align: start; font-size: .72rem; }
.dash-nav button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dash-nav button.is-active { color: var(--limestone); background: var(--deep); }
.dash-main { padding: clamp(1.5rem, 3.5vw, 3.5rem); }
.dash-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dash-topline small { color: var(--muted); }
.dash-topline h3 { margin-top: 3px; font-size: 1.55rem; }
.dash-topline button { min-height: 44px; padding: 0 14px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--rule-light); border-radius: var(--radius-control); color: var(--ink); background: var(--limestone); cursor: pointer; font-size: .68rem; }
.dash-topline svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.chart-area { margin-top: 38px; display: grid; grid-template-columns: minmax(260px, .46fr) minmax(400px, 1fr); gap: 4vw; }
.donut-wrap { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 24px; }
.donut { position: relative; width: min(100%, 220px); aspect-ratio: 1; display: grid; place-content: center; border-radius: 50%; background: conic-gradient(var(--accent-dark) 0 28%, oklch(67% 0.065 145) 28% 49%, oklch(79% 0.02 145) 49% 100%); text-align: center; }
.donut::after { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: var(--paper); }
.donut strong, .donut span { position: relative; z-index: 1; }
.donut strong { font-size: 2rem; line-height: 1; }
.donut span { color: var(--muted); font-size: .65rem; }
.donut-wrap ul { margin: 0; padding: 0; list-style: none; }
.donut-wrap li { padding: 11px 0; display: grid; grid-template-columns: 8px 1fr auto; gap: 8px; align-items: center; border-bottom: 1px solid var(--rule-light); color: var(--muted); font-size: .7rem; }
.donut-wrap li i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-dark); }
.donut-wrap li:nth-child(2) i { background: oklch(67% 0.065 145); }.donut-wrap li:nth-child(3) i { background: oklch(79% 0.02 145); }
.donut-wrap li strong { color: var(--ink); }
.trend-chart { position: relative; min-height: 270px; padding-top: 20px; }
.chart-grid-lines { position: absolute; inset: 20px 0 30px; background-image: linear-gradient(var(--rule-light) 1px, transparent 1px); background-size: 100% 25%; }
.trend-chart svg { position: absolute; inset: 20px 0 30px; width: 100%; height: calc(100% - 50px); overflow: visible; }
.trend-chart .area { fill: oklch(68% 0.12 143 / .15); }.trend-chart .line { fill: none; stroke: var(--accent-dark); stroke-width: 4; vector-effect: non-scaling-stroke; }.trend-chart circle { fill: var(--paper); stroke: var(--accent-dark); stroke-width: 4; vector-effect: non-scaling-stroke; }
.chart-labels { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; color: var(--muted); font-size: .62rem; }
.ledger-row { margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.ledger-row span { min-height: 58px; padding: 0 14px; display: flex; align-items: center; gap: 8px; border-inline-end: 1px solid var(--rule-light); color: var(--muted); font-size: .66rem; }
.ledger-row small { color: inherit; font-size: inherit; }
.ledger-row span:last-child { border-inline-end: 0; }
.ledger-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-dark); }

.citizen-section { overflow: hidden; contain: layout paint; }
.citizen-section::before { content: ""; position: absolute; right: -18vw; bottom: -24vw; width: 58vw; aspect-ratio: 1; border: 1px solid var(--rule-dark); border-radius: 50%; box-shadow: 0 0 0 6vw oklch(72% 0.145 142 / .025), 0 0 0 12vw oklch(72% 0.145 142 / .018); }
.citizen-lead { position: relative; z-index: 1; max-width: 970px; }
.citizen-lead > p:last-child { max-width: 560px; margin-top: 24px; color: var(--light-muted); }
.guide-runway { position: relative; z-index: 1; margin-top: 5rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.guide-runway article { position: relative; height: 500px; min-height: 0; max-height: 520px; overflow: hidden; display: grid; grid-template-rows: auto minmax(0, 1fr); border: 1px solid var(--rule-dark); border-radius: var(--radius); background: var(--deep); }
.guide-feature, .guide-minor { padding: 0; isolation: isolate; }
.guide-card-copy, .guide-minor-copy { position: relative; z-index: 2; min-height: 0; padding: 18px 24px 20px; display: flex; align-items: flex-start; flex-direction: column; }
.guide-runway article span { color: var(--accent); font-size: .68rem; }
.guide-runway h3 { margin: 8px 0 8px; font-size: clamp(1.45rem, 1.8vw, 1.78rem); line-height: 1; letter-spacing: -.04em; }
.guide-runway p { color: var(--light-muted); font-size: .76rem; line-height: 1.45; }
.guide-runway a { min-height: 40px; margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-size: .7rem; font-weight: 700; }
.guide-graphic { position: relative; align-self: stretch; display: block; width: 100%; min-height: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--atlas); }
.guide-graphic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.03); transition: transform 700ms var(--ease); }
.guide-feature:hover .guide-graphic img, .guide-minor:hover .guide-graphic img { transform: scale(1.025); }
.guide-minor-copy small { margin-top: 3px; color: var(--light-muted); font-size: .58rem; font-weight: 650; letter-spacing: .075em; text-transform: uppercase; }
.guide-minor h3 { max-width: 15ch; }
.guide-minor p { min-height: 0; }

.notices-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.notices-head > div:first-child { max-width: 870px; }
.notice-filter { display: flex; padding: 3px; border: 1px solid var(--rule-light); border-radius: var(--radius-control); }
.notice-filter button { min-height: 44px; padding: 0 14px; border: 0; border-radius: var(--radius-control); color: var(--muted); background: transparent; cursor: pointer; font-size: .68rem; }
.notice-filter button.is-active { color: var(--limestone); background: var(--deep); }
.notice-list { margin-top: 5rem; border-top: 1px solid var(--rule-light); }
.notice-list article { min-height: 132px; padding: 24px 0; display: grid; grid-template-columns: 110px 130px 1fr 56px; gap: 20px; align-items: center; border-bottom: 1px solid var(--rule-light); transition: opacity 220ms var(--ease), transform 220ms var(--ease); }
.notice-list article[hidden] { display: none !important; }
.notice-list time { color: var(--muted); font-size: .72rem; font-variant-numeric: tabular-nums; }
.notice-type { width: fit-content; padding: 6px 9px; color: var(--accent-dark); border: 1px solid var(--rule-light); border-radius: var(--radius-control); font-size: .62rem; }
.tender-type { color: var(--ink); border-color: var(--accent-dark); }
.notice-list h3 { max-width: 790px; font-size: clamp(1.1rem, 1.6vw, 1.45rem); letter-spacing: -.025em; }
.notice-list article > a { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--rule-light); border-radius: 50%; color: var(--ink); transition: color 220ms var(--ease), background-color 220ms var(--ease); }
.notice-list article:hover > a { color: var(--limestone); background: var(--accent-dark); }
.procurement-panel { margin-top: 7rem; padding: clamp(2.5rem, 5vw, 5rem); display: grid; grid-template-columns: .7fr 1.3fr; gap: 6vw; color: var(--light-text); background: var(--atlas); border-radius: var(--radius); box-shadow: var(--shadow-light); }
.procurement-panel h3 { font-size: clamp(2rem, 3.4vw, 3.7rem); line-height: 1; letter-spacing: -.045em; }
.procurement-register { align-self: center; }
.procurement-row { min-height: 96px; padding: 18px 0; display: grid; grid-template-columns: 52px 1fr auto auto; gap: 20px; align-items: center; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.procurement-row > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 10px; color: var(--accent); font-size: .68rem; }
.procurement-row div { display: grid; }.procurement-row small { color: var(--light-muted); }
.procurement-row time { color: var(--light-muted); font-size: .72rem; }
.procurement-row b { padding: 6px 9px; color: var(--atlas); background: var(--accent); border-radius: var(--radius-control); font-size: .62rem; }
.procurement-register > p { margin-top: 15px; color: var(--light-muted); font-size: .66rem; }

.contact-section { min-height: 90vh; padding: clamp(6rem, 10vw, 10rem) 4vw; display: grid; grid-template-columns: minmax(0, .85fr) minmax(400px, 1fr); gap: 8vw; align-items: center; overflow: hidden; contain: layout paint; }
.contact-atmosphere { position: absolute; right: -10vw; top: 50%; width: 54vw; aspect-ratio: 1; border: 1px solid var(--rule-dark); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 90px oklch(72% 0.145 142 / .08), inset 0 0 90px oklch(72% 0.145 142 / .05); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy > p:last-child { max-width: 540px; margin-top: 26px; color: var(--light-muted); }
.contact-routes { position: relative; z-index: 1; overflow: clip; border-top: 1px solid var(--rule-dark); }
.contact-routes a { min-width: 0; min-height: 96px; padding: 17px 4px; display: grid; grid-template-columns: 150px minmax(0, 1fr) 42px; gap: 16px; align-items: center; overflow: clip; border-bottom: 1px solid var(--rule-dark); }
.contact-routes a:focus-visible { outline-offset: -3px; }
.contact-routes span { color: var(--accent); font-size: .68rem; }
.contact-routes strong { font-size: 1.15rem; }
.contact-routes svg { justify-self: end; transition: transform 220ms var(--ease); }
.contact-routes a:hover svg { transform: translateX(5px); }
[dir="rtl"] .contact-routes a:hover svg { transform: translateX(-5px); }

.site-footer { padding: 4rem 4vw var(--safe-bottom); display: grid; grid-template-columns: 1fr auto; gap: 4rem; color: var(--light-text); background: oklch(13% 0.026 158); border-top: 1px solid var(--rule-dark); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand > div { display: grid; }.footer-brand small { color: var(--light-muted); font-size: .66rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: var(--light-muted); font-size: .72rem; }
.site-footer nav a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.footer-meta { grid-column: 1 / -1; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: var(--light-muted); border-top: 1px solid var(--rule-dark); font-size: .66rem; }
.footer-meta a { color: var(--accent); }
.footer-meta a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; }

[dir="rtl"] .hero h1, [dir="rtl"] h2 { letter-spacing: -.03em; }
[dir="rtl"] .button svg, [dir="rtl"] .notice-list svg, [dir="rtl"] .contact-routes svg { transform: scaleX(-1); }
[dir="rtl"] .frame-readout { right: auto; left: 18px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: minmax(190px, 1fr) auto; }
  .menu-toggle { order: 2; display: grid; width: 46px; height: 46px; padding: 13px 10px; gap: 4px; border: 1px solid var(--rule-dark); border-radius: 12px; background: var(--deep); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { height: 1px; background: var(--light-text); transition: transform 220ms var(--ease), opacity 220ms var(--ease); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 299; top: 104px; left: 0; right: 0; padding: 28px 4vw 36px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--atlas); border-bottom: 1px solid var(--rule-dark); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform 300ms var(--ease), opacity 220ms var(--ease); }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { min-height: 44px; padding: 12px 0; }
  .language-switch { position: absolute; right: 88px; }
  [dir="rtl"] .language-switch { right: auto; left: 88px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); }
  .hero-visual { min-height: 480px; }.pulse-panel { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: .6fr 2fr; align-items: center; }.pulse-panel dl { display: grid; grid-template-columns: repeat(3, 1fr); }.pulse-panel dl > div { border-top: 0; border-inline-start: 1px solid var(--rule-dark); padding-inline-start: 20px; }.pulse-panel > p { grid-column: 1 / -1; }.scroll-cue { display: none; }
  .flow-sticky { gap: 3vw; }.flow-copy h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
  .map-layout { grid-template-columns: minmax(0, 1fr) 340px; }
  .chart-area { grid-template-columns: 1fr; }.trend-chart { min-height: 220px; }
  .guide-runway { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .concept-bar span:last-child { display: none; }
  .site-header { height: 68px; padding-inline: 20px; }
  .brand-copy small { display: none; }
  .language-switch { right: 78px; }.language-switch button { min-width: 44px; padding: 0 7px; }
  [dir="rtl"] .language-switch { right: auto; left: 78px; }
  .primary-nav { top: 100px; grid-template-columns: 1fr 1fr; }
  .hero { min-height: calc(100dvh - 100px); padding: 2.5rem 20px 2rem; grid-template-columns: 1fr; grid-template-rows: auto minmax(430px, 56vh) auto; gap: 20px; }
  .hero-copy { align-self: end; }
  .hero h1 { max-width: 690px; font-size: clamp(3rem, 12vw, 5.8rem); }
  .hero-lead { max-width: 600px; margin-top: 18px; font-size: 1rem; }
  .hero-actions { margin-top: 24px; }
  .hero-visual { position: relative; z-index: 1; inset: auto -20px; width: calc(100% + 40px); grid-column: 1; grid-row: 2; min-height: 430px; overflow: hidden; border: 0; border-radius: 0; box-shadow: none; }
  .hero-media img { object-position: center bottom; }
  .hero-visual::after { background: linear-gradient(180deg, var(--atlas) 0%, transparent 18%, transparent 76%, var(--atlas) 100%), linear-gradient(90deg, var(--atlas) 0%, transparent 18%, transparent 82%, var(--atlas) 100%); box-shadow: none; }
  .terrain-scan { top: 22%; right: 0; width: 100%; height: 68%; }
  .pulse-panel { order: 3; grid-column: 1; grid-row: 3; display: block; padding-inline: 0; background: transparent; box-shadow: none; }.pulse-panel dl { grid-template-columns: repeat(3, 1fr); }.pulse-panel dl > div { padding: 12px 8px; border-inline-start: 0; }.pulse-panel dd strong { font-size: 1.5rem; }.pulse-head { min-height: 44px; }
  .section-pad { padding: 6rem 20px; }
  .authority-layout { grid-template-columns: 1fr; gap: 4rem; }.authority-statement { padding-bottom: 0; }.governance-band { margin-top: 5rem; grid-template-columns: 1fr 1fr; }.governance-band span:nth-child(2) { border-inline-end: 0; }.governance-band span:nth-child(-n+2) { border-bottom: 1px solid var(--rule-light); }
  .flow-story { min-height: 240vh; }.flow-scroll-space { height: 240vh; }.flow-sticky { position: sticky; top: 68px; height: calc(100dvh - 68px); min-height: 0; padding: 1.1rem 20px; grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); gap: 12px; overflow: hidden; }.flow-copy .eyebrow { margin-bottom: 8px; }.flow-copy > p:not(.eyebrow) { display: none; }.flow-copy h2 { max-width: 680px; }.flow-progress { margin-top: 12px; }.flow-steps { margin-top: 10px; margin-bottom: 0; }.flow-theatre { min-height: 0; height: 100%; grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) 158px; gap: 10px; }.flow-canvas-wrap { height: 100%; max-height: none; aspect-ratio: auto; }.flow-stage-rail { min-height: 158px; }.flow-stage-rail::before { inset: 12px 14px auto; }.flow-stage-annotation { padding: 22px 16px 16px; transform: translate3d(0, 10px, 0); }.flow-stage-annotation.is-active { transform: none; }.flow-stage-annotation span { font-size: .55rem; }.flow-stage-annotation strong { margin-top: 7px; font-size: .88rem; }.flow-stage-annotation small { margin-top: 6px; font-size: .62rem; line-height: 1.38; }[dir="rtl"] .flow-stage-annotation, [dir="rtl"] .flow-stage-annotation.is-active { transform: none; }
  .split-intro, .data-heading { grid-template-columns: 1fr; gap: 25px; }.split-intro > p, .data-heading > p:last-child { max-width: 620px; }.data-heading .eyebrow { grid-column: auto; }
  .roadmap { margin-top: 4rem; }.roadmap-tabs { grid-template-columns: 1fr 1fr; }.roadmap-tabs button:nth-child(2) { border-inline-end: 0; }.phase-panel { grid-template-columns: .3fr 1fr; }.phase-panel ul { grid-column: 1 / -1; }.demo-tag { grid-column: 1 / -1; }
  .map-layout { grid-template-columns: 1fr; }.map-stage { min-height: 540px; }.region-panel { border-inline-start: 0; border-top: 1px solid var(--rule-dark); }.region-panel dl { max-width: 580px; }
  .dashboard-body { grid-template-columns: 1fr; }.dash-nav { padding: 8px; flex-direction: row; overflow-x: auto; border-inline-end: 0; border-bottom: 1px solid var(--rule-light); }.dash-nav button { flex: 0 0 auto; }.chart-area { grid-template-columns: 1fr; }.donut-wrap { max-width: 480px; }.ledger-row { grid-template-columns: 1fr 1fr; }.ledger-row span:nth-child(2) { border-inline-end: 0; }.ledger-row span:nth-child(-n+2) { border-bottom: 1px solid var(--rule-light); }
  .guide-runway { grid-template-columns: 1fr; }.guide-graphic { min-height: 0; }
  .notices-head { align-items: start; flex-direction: column; }.notice-list article { grid-template-columns: 90px 1fr 48px; }.notice-list .notice-type { grid-column: 2; grid-row: 1; }.notice-list h3 { grid-column: 1 / 3; }.notice-list article > a { grid-column: 3; grid-row: 1 / 3; }.procurement-panel { grid-template-columns: 1fr; }
  .contact-section { min-height: auto; padding: 6rem 20px; grid-template-columns: 1fr; }.contact-atmosphere { width: 90vw; right: -45vw; }.contact-routes a { grid-template-columns: 115px 1fr 40px; }
}

@media (max-width: 560px) {
  .concept-bar { min-height: 30px; }
  .site-header { top: 0; height: 66px; }
  .brand-mark { width: 36px; height: 36px; }.language-switch { right: 71px; }.language-switch button { min-width: 44px; min-height: 44px; padding: 0 5px; }[dir="rtl"] .language-switch { right: auto; left: 71px; }
  .menu-toggle { width: 44px; height: 44px; }
  .primary-nav { top: 96px; grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 2.2rem; grid-template-rows: auto 360px auto; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); line-height: .94; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }.button { width: 100%; }.text-link { width: fit-content; }
  .hero-visual { min-height: 430px; }
  .pulse-panel dl { gap: 0; }.pulse-panel dl > div { padding: 10px 4px; }.pulse-panel dt { font-size: .56rem; }.pulse-panel dd strong { font-size: 1.25rem; }.pulse-panel dd span { display: block; font-size: .58rem; }
  .section-intro h2, .data-heading h2, .citizen-lead h2, .notices-head h2, .contact-copy h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .authority-layout { margin-top: 3.5rem; }.mandate-list li { grid-template-columns: 38px 1fr; gap: 12px; }.governance-band { grid-template-columns: 1fr; }.governance-band span { border-inline-end: 0; border-bottom: 1px solid var(--rule-light); }.governance-band span:last-child { border-bottom: 0; }
  .flow-story { min-height: 250vh; }.flow-scroll-space { height: 250vh; }.flow-sticky { top: 66px; height: calc(100dvh - 66px); padding-block: .8rem; }.flow-copy h2 { font-size: 2.35rem; }.flow-steps { grid-template-columns: repeat(4, 1fr); gap: 5px; }.flow-steps li small { display: none; }.flow-canvas-wrap { min-height: 0; }.flow-theatre { grid-template-rows: minmax(0, 1fr) 170px; }.flow-stage-rail { min-height: 170px; }
  .roadmap-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }.roadmap-tabs button { min-width: 165px; scroll-snap-align: start; }.phase-panel { min-height: 0; padding: 28px 22px; grid-template-columns: 1fr; }.phase-number { font-size: 5rem; }.phase-panel ul, .demo-tag { grid-column: auto; }
  .facility-media { min-height: 430px; margin-top: 4rem; }.facility-media img { object-position: 54% center; }.facility-media figcaption { left: 20px; right: 20px; bottom: 20px; grid-template-columns: 1fr; gap: 5px; }.facility-media figcaption small { display: none; }
  .atlas-toolbar { top: 66px; min-height: 82px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 6px; }.map-stage { min-height: 470px; }.map-stage > svg { width: 88%; height: 500px; }.region-panel { padding: 30px 22px; }.region-panel dl { grid-template-columns: 1fr 1fr; }.region-panel dl > div:last-child { grid-column: 1 / -1; }
  .dashboard-shell > header { min-height: 82px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 7px; }.dash-main { padding: 22px 16px; }.dash-topline { align-items: flex-start; flex-direction: column; }.chart-area { margin-top: 28px; }.donut-wrap { grid-template-columns: 1fr; }.donut { width: 185px; margin-inline: auto; }.trend-chart { min-height: 200px; }.ledger-row { grid-template-columns: 1fr; }.ledger-row span { border-inline-end: 0; border-bottom: 1px solid var(--rule-light); }.ledger-row span:last-child { border-bottom: 0; }
  .guide-runway article { height: 500px; min-height: 0; max-height: 500px; }.guide-minor p { min-height: 0; }
  .notice-filter { width: 100%; }.notice-filter button { flex: 1; }.notice-list article { grid-template-columns: 1fr 48px; gap: 10px 16px; }.notice-list time, .notice-list .notice-type { grid-column: 1; }.notice-list .notice-type { grid-row: auto; }.notice-list h3 { grid-column: 1; }.notice-list article > a { grid-column: 2; grid-row: 1 / 4; }.procurement-panel { margin-top: 5rem; padding: 30px 22px; }.procurement-row { grid-template-columns: 44px 1fr; }.procurement-row time, .procurement-row b { grid-column: 2; }
  .contact-routes a { min-height: 105px; grid-template-columns: 1fr 40px; }.contact-routes span { grid-column: 1; }.contact-routes strong { grid-column: 1; }.contact-routes svg { grid-column: 2; grid-row: 1 / 3; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; }.site-footer nav { justify-content: flex-start; }.footer-meta { grid-column: auto; align-items: flex-start; flex-direction: column; }
}

@media (hover: none) {
  .button:hover, .map-stage svg #features path:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; }
  .topography, .terrain-scan::after { transform: none !important; translate: none !important; }
  .terrain-scan { display: none; }
  .flow-progress span { transform: scaleX(1) !important; }
  .flow-steps li { color: var(--light-text); }
  .flow-steps li:last-child { color: var(--accent); border-color: var(--accent); }
  #flow-webgl { display: none; }
}
