﻿:root {
  --perspective: 1200px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 0.7s;
  --green-deep: #0B3D2E;
  --green-dark: #08110F;
  --accent-lime: #B9E75D;
  --accent-cyan: #46C7D9;
  --sand: #D9C6A3;
  --off-white: #F5F3EC;
  --green-900: #0B3D2E;
  --green-800: #0B3D2E;
  --green-700: #0B3D2E;
  --green-600: #0B3D2E;
  --green-500: #B9E75D;
  --green-400: #B9E75D;
  --teal: #46C7D9;
  --gold: #D9C6A3;
  --gold-light: #F5F3EC;
  --bg: #F5F3EC;
  --surface: #FFFFFF;
  --surface-2: #F0EDE4;
  --dark: #08110F;
  --text: #08110F;
  --text-muted: #4A5C54;
  --border: #D5CFC0;
  --shadow: 0 4px 24px rgba(8, 17, 15, 0.08);
  --shadow-lg: 0 12px 48px rgba(8, 17, 15, 0.12);
  --radius: 12px;
  --font-ar: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-en: 'Inter', system-ui, sans-serif;
  --font-zh: 'Noto Sans SC', system-ui, sans-serif;
}

[lang="en"] body { font-family: var(--font-en); }
[lang="zh"] body { font-family: var(--font-zh); }
html { scroll-behavior: smooth; }
:focus-visible {
  outline: 2px solid var(--accent-cyan, #46C7D9);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }
.svg-icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.svg-icon svg { width: 1.5rem; height: 1.5rem; }
.invest-advantage-card .svg-icon svg,
.invest-incentive-card .svg-icon svg { width: 2rem; height: 2rem; color: var(--accent-lime, #B9E75D); }
.feasibility-card .svg-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent-cyan, #46C7D9); }
.invest-doc-card .doc-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent-lime, #B9E75D); }
.kemet-theme .invest-advantage-card h3,
.kemet-theme .invest-incentive-card h3 { color: var(--text); }
.kemet-theme .invest-advantage-card p,
.kemet-theme .invest-incentive-card p { color: var(--text-muted); }
.kemet-theme .invest-table th { color: var(--accent-cyan); }
.kemet-theme .invest-table-wrap { border-color: var(--border); background: var(--surface); }
.kemet-theme .invest-doc-card { background: var(--surface); border-color: var(--border); color: var(--text); }
.kemet-theme .invest-cta-box { background: var(--surface-2); border: 1px solid var(--border); }
body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--bg) 100%);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1001;
  background: linear-gradient(90deg, var(--green-500), var(--teal), var(--green-400));
  box-shadow: 0 0 12px rgba(16,185,129,0.5);
  transition: width 0.1s linear;
}
.site-load-bar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 2200;
  height: 6px;
  pointer-events: none;
  background: rgba(8, 17, 15, 0.08);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-load-fill {
  display: block;
  width: 16%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan), var(--sand));
  box-shadow: 0 0 18px rgba(70, 199, 217, 0.45);
  transition: width 0.28s ease;
}
.site-load-percent {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-end: max(12px, env(safe-area-inset-right));
  min-width: 46px;
  padding: 0.24rem 0.45rem;
  border: 1px solid rgba(160,245,234,0.24);
  border-radius: 999px;
  background: rgba(3, 12, 13, 0.82);
  color: var(--accent-lime);
  font-size: 0.72rem;
  line-height: 1;
  text-align: center;
  direction: ltr;
  box-shadow: 0 10px 26px rgba(0,0,0,0.24);
  backdrop-filter: blur(14px) saturate(1.2);
}
.site-load-bar.is-done {
  opacity: 0;
  transform: translateY(-100%);
}
.progressive-img {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.01);
  transition: opacity 0.35s ease, filter 0.45s ease, transform 0.45s ease;
}
.progressive-img.is-loaded {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
.lightbox::after,
.invest-image-lightbox::after {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan), var(--sand));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.is-loading::after,
.invest-image-lightbox.is-loading::after {
  opacity: 1;
  animation: lightboxLoading 1.15s ease-in-out infinite;
}
.lightbox.is-loading img,
.invest-image-lightbox.is-loading img {
  opacity: 0.62;
}
@keyframes lightboxLoading {
  0% { transform: scaleX(0.08); }
  48% { transform: scaleX(0.72); }
  100% { transform: scaleX(1); opacity: 0.15; }
}

/* Motion — scroll reveal & 3D fill */
.reveal-up, .reveal-3d, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up {
  transform: translateY(48px);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.reveal-left {
  transform: translateX(-40px);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.reveal-right {
  transform: translateX(40px);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.reveal-scale {
  transform: scale(0.92);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.reveal-3d {
  transform: perspective(var(--perspective)) rotateX(8deg) translateY(40px) scale(0.97);
  transform-origin: center bottom;
  transition: opacity 1s var(--motion-ease), transform 1s var(--motion-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 100ms);
}
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-3d.is-visible {
  opacity: 1;
  transform: perspective(var(--perspective)) rotateX(0deg) translateY(0) scale(1);
}

/* Hero load animation */
.reveal-load {
  opacity: 0;
  transform: perspective(var(--perspective)) rotateX(12deg) translateY(32px);
  animation: heroFillIn 1s var(--motion-ease) forwards;
  animation-delay: calc(var(--load-delay, 0) * 120ms);
}
@keyframes heroFillIn {
  to { opacity: 1; transform: perspective(var(--perspective)) rotateX(0deg) translateY(0); }
}

/* 3D interactive cards */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}
.card-3d-inner { transform: translateZ(20px); }
.card-3d-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.card-3d:hover .card-3d-shine,
.card-3d.is-tilting .card-3d-shine { opacity: 1; }

/* Hero orbs */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 320px; height: 320px;
  background: var(--green-500);
  top: 15%; inset-inline-start: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 240px; height: 240px;
  background: var(--teal);
  bottom: 25%; inset-inline-end: 15%;
  animation-delay: -4s;
}
.orb-3 {
  width: 180px; height: 180px;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
  opacity: 0.2;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-3d, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-load, .hero-bg, .hero-content { opacity: 1; transform: none; animation: none; transition: none; }
  .orb { animation: none; }
  .card-3d { transition: none; }
  .nav-links::before,
  .nav-dropdown {
    animation: none;
  }
  .nav-root,
  .nav-group summary,
  .nav-tree-link,
  .nav-root:hover,
  .nav-group summary:hover,
  .nav-group[open] summary,
  .nav-tree-link:hover,
  .nav-tree-link.active {
    transform: none;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: clip; }
.hidden { display: none !important; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Nav */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 17, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.topnav.scrolled {
  background: rgba(12, 26, 20, 0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0.65rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: white; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; padding: 0;
}
.logo-mark img, .logo-mark-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.logo-text strong { font-size: 0.85rem; }
.logo-text small { font-size: 0.65rem; opacity: 0.7; }
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.25rem;
  border: 1px solid rgba(160,245,234,0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(8,17,15,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 14px 34px rgba(0,0,0,0.22);
  isolation: isolate;
  overflow: visible;
  perspective: 900px;
  transform-style: preserve-3d;
}
.nav-links::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(70,199,217,0.16) 28%, rgba(200,245,66,0.14) 48%, transparent 68%);
  opacity: 0.55;
  transform: translateX(-42%);
  animation: navTaskbarSweep 7s ease-in-out infinite;
}
.nav-links::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.8rem;
  padding: 0.4rem 0.75rem; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(16,185,129,0.2); }
.nav-group { position: relative; }
.nav-root,
.nav-group summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: color 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s var(--motion-ease);
  will-change: transform;
}
.nav-root::before,
.nav-group summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 38%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.nav-task-index { display: none; }
.nav-task-label {
  line-height: 1.2;
}
.nav-group summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
  content: '+';
  font-weight: 700;
  opacity: 0.65;
  transform: translateY(-1px) rotate(0deg);
  transition: transform 0.22s var(--motion-ease), opacity 0.22s;
}
.nav-group[open] summary::after {
  content: '-';
  opacity: 0.95;
  transform: translateY(-1px) rotate(180deg);
}
.nav-root:hover,
.nav-group summary:hover,
.nav-group[open] summary {
  color: white;
  border-color: rgba(160,245,234,0.22);
  background: linear-gradient(145deg, rgba(70,199,217,0.16), rgba(200,245,66,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 28px rgba(0,0,0,0.2), 0 0 24px rgba(70,199,217,0.13);
  transform: translateY(-2px) translateZ(18px) rotateX(4deg);
}
.nav-root:hover::before,
.nav-group summary:hover::before,
.nav-group[open] summary::before {
  opacity: 1;
}
.nav-root:active,
.nav-group summary:active {
  transform: translateY(0) translateZ(4px) scale(0.98);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  inset-inline-start: 0;
  z-index: 1002;
  display: grid;
  gap: 0.15rem;
  min-width: 240px;
  padding: 0.55rem 0.55rem 0.55rem 1.05rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: rgba(8,17,15,0.96);
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px) saturate(1.2);
  transform-origin: top center;
  animation: navTreeOpen 0.24s var(--motion-ease) both;
}
html[dir="rtl"] .nav-dropdown {
  inset-inline-start: auto;
  inset-inline-end: 0;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  inset-inline-start: 0.75rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(70,199,217,0.45), rgba(200,245,66,0.18));
}
html[dir="rtl"] .nav-dropdown::before {
  inset-inline-start: auto;
  inset-inline-end: 0.75rem;
}
.nav-dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: normal;
  line-height: 1.35;
  padding: 0.62rem 0.68rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(255,255,255,0.018);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s var(--motion-ease), box-shadow 0.2s;
}
.nav-tree-dot {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 0.48rem;
  border-radius: 50%;
  border: 1px solid rgba(200,245,66,0.5);
  background: rgba(70,199,217,0.22);
  box-shadow: 0 0 0 3px rgba(70,199,217,0.07);
}
.nav-tree-link::before {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: -0.3rem;
  width: 0.42rem;
  height: 1px;
  background: rgba(70,199,217,0.34);
}
html[dir="rtl"] .nav-tree-link::before {
  inset-inline-start: auto;
  inset-inline-end: -0.3rem;
}
.nav-tree-link:hover,
.nav-tree-link.active {
  color: white;
  border-color: rgba(160,245,234,0.18);
  background: rgba(70,199,217,0.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  transform: translateX(3px);
}
html[dir="rtl"] .nav-tree-link:hover,
html[dir="rtl"] .nav-tree-link.active {
  transform: translateX(-3px);
}
.nav-tree-link:hover .nav-tree-dot,
.nav-tree-link.active .nav-tree-dot {
  background: var(--accent-lime);
  border-color: rgba(255,255,255,0.65);
  box-shadow: 0 0 0 4px rgba(200,245,66,0.11), 0 0 18px rgba(200,245,66,0.38);
}
@keyframes navTaskbarSweep {
  0%, 100% { transform: translateX(-48%); opacity: 0.22; }
  45%, 55% { opacity: 0.62; }
  50% { transform: translateX(48%); }
}
@keyframes navTreeOpen {
  from { opacity: 0; transform: perspective(700px) rotateX(-12deg) translateY(-6px) scale(0.96); }
  to { opacity: 1; transform: perspective(700px) rotateX(0deg) translateY(0) scale(1); }
}
.lang-switch { display: flex; gap: 2px; background: rgba(255,255,255,0.08); border-radius: 8px; padding: 3px; }
.lang-btn {
  background: transparent; border: none; color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.75rem; cursor: pointer;
  font-family: inherit; transition: all 0.2s;
}
.lang-btn.active { background: var(--green-600); color: white; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; color: white; padding: 6rem 1.5rem 4rem;
  overflow: hidden; isolation: isolate; z-index: 1;
}
.hero-media {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-bg {
  position: absolute; inset: -8% 0; background-size: cover; background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,30,20,0.75) 0%, rgba(6,30,20,0.55) 50%, rgba(6,30,20,0.92) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 820px; will-change: transform, opacity; }
.hero-scroll { z-index: 3; }
.hero-badge {
  display: inline-block; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.4);
  padding: 0.35rem 1rem; border-radius: 20px; font-size: 0.8rem; margin-bottom: 1.25rem;
  color: var(--green-400);
  backdrop-filter: blur(8px);
}
.hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.25; margin-bottom: 0.75rem; }
.hero-sub { font-size: 1.05rem; opacity: 0.85; margin-bottom: 0.5rem; }
.hero-tagline { font-size: 0.95rem; color: var(--green-400); margin-bottom: 2rem; max-width: 600px; margin-inline: auto; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-video-link { text-align: center; margin: 0 0 2rem; }
.hero-video-link .btn-text { font-size: 0.85rem; opacity: 0.85; }
.btn {
  display: inline-flex; padding: 0.75rem 1.75rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.25s;
  font-family: inherit; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--teal));
  color: white; box-shadow: 0 4px 24px rgba(5,150,105,0.45);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--green-500), var(--green-600)); transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(5,150,105,0.5); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 640px; margin: 0 auto;
}
.hero-stat {
  background: rgba(255,255,255,0.08); border-radius: 12px; padding: 0.75rem;
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform-style: flat;
}
.hero-stat .val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--green-400); }
.hero-stat .lbl { font-size: 0.7rem; opacity: 0.7; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; opacity: 0.5; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  isolation: isolate;
  background: inherit;
}
.section-head { text-align: center; margin-bottom: 3rem; transform-style: preserve-3d; }
.section-tag {
  display: inline-block; background: var(--surface-2); color: var(--green-700);
  padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 0.75rem; border: 1px solid var(--border);
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.section-head p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Location */
.location-section { background: var(--surface); }
.location-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.location-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.loc-card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; transition: transform 0.25s var(--motion-ease), box-shadow 0.25s;
  transform-style: preserve-3d;
}
.loc-card:hover { box-shadow: var(--shadow-lg); }
.loc-card .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.loc-card .dist { font-size: 1.25rem; font-weight: 700; color: var(--green-700); }
.loc-card .label { font-size: 0.8rem; color: var(--text-muted); }
.transport-badge, .foundation-card {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: white; border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
}
.transport-badge h3, .foundation-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--green-400); }
.transport-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; padding: 0.35rem 0; opacity: 0.9; }
.transport-item::before { content: '✓'; color: var(--green-400); font-weight: 700; }
.foundation-card p { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; }
.cluster-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cluster-tag {
  background: rgba(255,255,255,0.12); padding: 0.25rem 0.6rem;
  border-radius: 6px; font-size: 0.75rem;
}

/* Video Section */
.video-section { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.video-layout { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 1.5rem; align-items: start; }
.video-player-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--dark);
  transform-style: flat;
}
.main-video { width: 100%; display: block; aspect-ratio: 16/9; background: var(--dark); }
.video-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(6,30,20,0.35); border: none; cursor: pointer; transition: background 0.25s;
}
.video-play-overlay.hidden { display: none; }
.video-play-overlay:hover { background: rgba(6,30,20,0.5); }
.play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-600); color: white; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(5,150,105,0.5); padding-inline-start: 4px;
}
.video-aside { display: flex; flex-direction: column; gap: 1rem; }
.video-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.video-thumbs { display: flex; flex-direction: column; gap: 0.6rem; }
.video-thumb {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; text-align: start; font-family: inherit; transition: border-color 0.25s, box-shadow 0.25s;
  transform-style: preserve-3d;
}
.video-thumb:hover, .video-thumb.active { border-color: var(--green-500); box-shadow: var(--shadow); }
.video-thumb img { width: 80px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.video-thumb span { font-size: 0.78rem; color: var(--text); line-height: 1.35; }

/* Vision Carousel */
.vision-section { background: var(--dark); color: white; }
.vision-section .section-tag { background: rgba(16,185,129,0.15); color: var(--green-400); border-color: rgba(16,185,129,0.3); }
.vision-section .section-head h2 { color: white; }
.vision-section .section-head p { color: rgba(255,255,255,0.6); }
.vision-carousel { position: relative; display: flex; align-items: center; gap: 1rem; }
.vision-stage {
  flex: 1; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; max-height: 520px; cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: #0a1410;
}
.vision-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.6s var(--motion-ease), transform 0.8s var(--motion-ease);
}
.vision-stage img.vision-img-active { opacity: 1; z-index: 1; }
.vision-stage img.vision-img-prev { opacity: 0; z-index: 0; }
.vision-stage:hover img.vision-img-active { transform: scale(1.03); }
.vision-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2.5rem 1.5rem 1.25rem;
  pointer-events: none;
}
.vision-angle {
  display: inline-block; font-size: 0.7rem; background: rgba(16,185,129,0.25);
  color: var(--green-400); padding: 0.2rem 0.55rem; border-radius: 4px; margin-bottom: 0.4rem;
}
.vision-caption h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.vision-caption p { font-size: 0.85rem; opacity: 0.8; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: white; font-size: 1.1rem; cursor: pointer;
  flex-shrink: 0; transition: background 0.2s;
}
.carousel-btn:hover { background: var(--green-600); }
.vision-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }
.vision-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s;
}
.vision-dot.active { background: var(--green-500); width: 28px; border-radius: 5px; }

/* Map */
.map-section { padding-bottom: 0; background: var(--surface-2); }
.map-layout {
  display: grid; grid-template-columns: 300px 1fr;
  height: 70vh; min-height: 480px; max-width: 1400px; margin: 0 auto;
  transform-style: preserve-3d;
}
.sidebar {
  background: var(--surface); border-inline-start: 1px solid var(--border);
  overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.panel {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem;
}
.panel h3 { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.layer-controls { display: flex; flex-direction: column; gap: 0.35rem; }
.layer-option { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem; border-radius: 6px; cursor: pointer; font-size: 0.8rem; }
.layer-option:hover { background: rgba(0,0,0,0.03); }
.layer-option input { accent-color: var(--green-600); }
.layer-preview { width: 36px; height: 24px; border-radius: 4px; border: 1px solid var(--border); }
.layer-preview.street { background: linear-gradient(135deg, #e8e4d9, #c5d4e8); }
.layer-preview.satellite { background: linear-gradient(135deg, #2d5016, #1a3a0a); }
.layer-preview.hybrid { background: linear-gradient(135deg, #2d5016 50%, #e8e4d9 50%); }
.zone-filters { display: flex; flex-direction: column; gap: 0.25rem; }
.zone-filter { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; cursor: pointer; padding: 0.25rem 0.4rem; border-radius: 4px; }
.zone-filter:hover { background: rgba(0,0,0,0.03); }
.zone-color-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.legend { display: flex; flex-direction: column; gap: 0.35rem; }
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; }
.legend-swatch { width: 18px; height: 12px; border-radius: 2px; opacity: 0.75; border: 1px solid rgba(0,0,0,0.1); }
.info-panel .placeholder { color: var(--text-muted); font-size: 0.8rem; }
.zone-detail h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--green-700); }
.zone-detail .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin: 0.6rem 0; }
.meta-item { background: var(--surface); padding: 0.4rem; border-radius: 6px; text-align: center; border: 1px solid var(--border); }
.meta-item .value { display: block; font-weight: 700; color: var(--green-700); font-size: 0.95rem; }
.meta-item .label { font-size: 0.65rem; color: var(--text-muted); }
.zone-detail p { font-size: 0.8rem; color: var(--text-muted); }
.zone-tagline { font-size: 0.78rem; color: var(--green-700); font-weight: 600; margin-bottom: 0.5rem; }
.zone-extra { font-size: 0.75rem; margin-top: 0.5rem; }
.zone-extra.muted { color: var(--text-muted); }
.zone-highlights-block { margin: 0.5rem 0; font-size: 0.75rem; }
.zone-highlights-block strong { display: block; margin-bottom: 0.25rem; color: var(--green-700); }
.zone-highlight-list { padding-inline-start: 1.1rem; color: var(--text-muted); }
.zone-highlight-list li { margin-bottom: 0.15rem; }
.zone-render-preview, .zone-layout-preview {
  margin-top: 0.75rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); position: relative;
}
.zone-render-preview img, .zone-layout-preview img { width: 100%; display: block; }
.render-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white; font-size: 0.65rem; padding: 0.5rem 0.6rem;
}
.map-container { position: relative; }
#map { width: 100%; height: 100%; }
.map-toolbar { position: absolute; top: 0.75rem; inset-inline-start: 0.75rem; z-index: 500; display: flex; flex-direction: column; gap: 0.4rem; }
.map-toolbar button {
  width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.map-toolbar button:hover, .map-toolbar button.active { background: var(--green-600); color: white; border-color: var(--green-600); }
.map-toolbar button svg { width: 16px; height: 16px; }
.master-plan-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.5rem; background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: white; margin-top: 0;
  box-shadow: 0 -8px 40px rgba(6,78,59,0.2);
}
.master-item { transform-style: preserve-3d; padding: 0.5rem; border-radius: 10px; }
.master-item { text-align: center; }
.master-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--green-400); }
.master-lbl { font-size: 0.75rem; opacity: 0.8; }

/* Plan Gallery */
.plan-section { background: var(--surface-2); }
.plan-filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.plan-filter {
  background: var(--surface); border: 1px solid var(--border); padding: 0.45rem 1rem;
  border-radius: 20px; font-size: 0.8rem; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.plan-filter.active { background: var(--green-700); color: white; border-color: var(--green-700); }
.plan-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.plan-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.plan-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-lg); }
.plan-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--surface-2); }
.plan-card-body { padding: 1rem; }
.plan-card-body .page-num { font-size: 0.7rem; color: var(--green-700); font-weight: 600; }
.plan-card-body h4 { font-size: 0.9rem; margin: 0.25rem 0; }
.plan-card-body .type-badge {
  display: inline-block; font-size: 0.65rem; background: var(--surface-2);
  padding: 0.15rem 0.5rem; border-radius: 4px; color: var(--text-muted);
}
.zone-layout-preview {
  margin-top: 0.75rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--border);
}
.zone-layout-preview img { width: 100%; display: block; }
.zone-industries { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.6rem; }
.zone-industry-tag {
  font-size: 0.68rem; background: var(--surface); border: 1px solid var(--border);
  padding: 0.15rem 0.45rem; border-radius: 4px; color: var(--text-muted);
}
.zone-card-render { position: relative; height: 180px; overflow: hidden; }
.zone-card-render img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.zone-card:hover .zone-card-render img { transform: scale(1.05); }
.zone-angle-badge {
  position: absolute; bottom: 0.5rem; inset-inline-start: 0.5rem;
  background: rgba(6,30,20,0.75); color: white; font-size: 0.65rem;
  padding: 0.2rem 0.5rem; border-radius: 4px; backdrop-filter: blur(4px);
}
.zone-card-tagline { font-size: 0.78rem; color: var(--green-700); font-weight: 600; margin-bottom: 0.5rem; }
.zone-card-layout { margin-top: 0.75rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.zone-card-layout img { width: 100%; height: 140px; object-fit: cover; }

/* Kemet Dark Theme — Five Sectors */
.kemet-dark-theme {
  padding: 4rem 2rem;
  background: #1a1a1a;
  color: #fff;
  position: relative;
  isolation: isolate;
}
.kemet-dark-theme::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,168,83,0.06), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(5,150,105,0.04), transparent 50%);
  pointer-events: none;
}
.kemet-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.kemet-title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.kemet-title .kemet-dot {
  color: var(--gold);
  margin: 0 0.5rem;
}
.kemet-title .kemet-sub {
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
  font-weight: 500;
}
.kemet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.kemet-card {
  border: 1px solid #2a2a2a;
  background: rgba(0,0,0,0.4);
  padding: 1.5rem;
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s;
  cursor: pointer;
}
.kemet-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,168,83,0.12);
}
.kemet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}
.kemet-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.kemet-percent {
  color: var(--gold);
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
  background: rgba(212,168,83,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212,168,83,0.25);
}
.kemet-area {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1rem 0;
  font-family: 'Consolas', 'Courier New', monospace;
  letter-spacing: -0.02em;
}
.kemet-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}
.kemet-card-num {
  color: var(--gold);
  font-weight: 700;
}

/* Zones Grid */
.zones-section { background: var(--surface); }
.zone-tabs { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.zone-tab {
  background: var(--surface-2); border: 1px solid var(--border); padding: 0.45rem 1rem;
  border-radius: 20px; font-size: 0.8rem; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.zone-tab.active { background: var(--green-600); color: white; border-color: var(--green-600); }
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.zone-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; cursor: pointer;
  transform-style: preserve-3d;
}
.zone-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-lg); }
.zone-card-header { padding: 1.15rem; display: flex; align-items: center; gap: 0.85rem; border-bottom: 3px solid; }
.zone-card-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.zone-card-header h3 { font-size: 0.95rem; font-weight: 600; }
.zone-card-header .status-badge { font-size: 0.7rem; color: var(--text-muted); }
.zone-card-body { padding: 1.15rem; }
.zone-card-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.zone-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.zone-stat { text-align: center; padding: 0.45rem; background: var(--surface-2); border-radius: 6px; }
.zone-stat .val { display: block; font-weight: 700; color: var(--green-700); font-size: 0.85rem; }
.zone-stat .lbl { font-size: 0.65rem; color: var(--text-muted); }

/* Highlights */
.highlights-section { background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.highlight-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  position: relative; overflow: hidden; transition: all 0.25s;
}
.highlight-card.has-image { cursor: pointer; padding: 0; }
.highlight-card.has-image:hover { border-color: var(--green-500); box-shadow: var(--shadow-lg); }
.highlight-card { transform-style: preserve-3d; }
.highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--green-500), var(--teal));
}
.highlight-image { height: 160px; overflow: hidden; }
.highlight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.highlight-card:hover .highlight-image img { transform: scale(1.05); }
.highlight-body { padding: 1.25rem 1.5rem 1.5rem; }
.highlight-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.highlight-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.highlight-card .sub { font-size: 0.8rem; color: var(--green-700); font-weight: 600; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.82rem; color: var(--text-muted); }

/* Benefits */
.benefits-section { background: var(--dark); color: white; }
.benefits-section .section-tag { background: rgba(16,185,129,0.15); color: var(--green-400); border-color: rgba(16,185,129,0.3); }
.benefits-section .section-head h2 { color: white; }
.benefits-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.benefits-table-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.benefits-table-wrap h3 { padding: 1rem 1.25rem; font-size: 1rem; background: rgba(16,185,129,0.15); color: var(--green-400); }
.benefits-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.benefits-table th, .benefits-table td { padding: 0.65rem 1rem; text-align: start; border-bottom: 1px solid rgba(255,255,255,0.06); }
.benefits-table th { color: var(--green-400); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; }
.benefits-table tr.total { background: rgba(16,185,129,0.12); font-weight: 700; }
.benefits-table tr.total td { color: var(--green-400); }
.timeline-section h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.15rem; }
.timeline-track { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.timeline-item { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 1.5rem 1rem; position: relative; }
.timeline-item .year { display: inline-block; background: var(--green-600); color: white; padding: 0.3rem 0.85rem; border-radius: 20px; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.75rem; }
.timeline-item.pending .year { background: rgba(255,255,255,0.15); }
.timeline-item p { font-size: 0.85rem; opacity: 0.8; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.hidden { display: none; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; inset-inline-start: 1.5rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }
.lightbox-caption { margin-top: 1rem; text-align: center; color: rgba(255,255,255,0.7); max-width: 600px; padding: 0 1rem; }

/* Investment — teaser on index */
.investment-teaser-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-top: 1px solid var(--border);
}
.invest-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.invest-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.invest-teaser-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow);
}
.invest-teaser-card .icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.invest-teaser-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--green-800); }
.invest-teaser-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.invest-teaser-cta { text-align: center; }

/* Investment — dedicated page */
.invest-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 7rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.invest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}
.invest-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(8, 17, 15, 0.88) 0%, rgba(8, 17, 15, 0.52) 45%, rgba(8, 17, 15, 0.78) 100%);
}
.invest-hero-content { position: relative; z-index: 2; max-width: 780px; }
.invest-hero-tag {
  background: rgba(16,185,129,0.2) !important;
  color: var(--green-400) !important;
  border-color: rgba(16,185,129,0.35) !important;
  margin-bottom: 1rem;
}
.invest-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.invest-pitch-sub {
  font-size: 1.05rem;
  color: var(--green-400);
  margin-bottom: 1rem;
  font-weight: 500;
}
.invest-pitch-desc {
  font-size: 0.92rem;
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.invest-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.invest-kpi-bar {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  padding: 2rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}
.invest-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.invest-kpi-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.invest-kpi-item .val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-400);
}
.invest-kpi-item .unit { font-size: 0.85rem; color: var(--green-400); }
.invest-kpi-item .lbl { font-size: 0.72rem; opacity: 0.75; color: white; margin-top: 0.2rem; display: block; }

.invest-section { background: var(--surface); }
.invest-feasibility-section { background: var(--surface-2); }
.invest-incentives-section { background: linear-gradient(180deg, var(--surface-2), var(--bg)); }

.invest-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.invest-advantage-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.invest-advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--teal));
}
.invest-advantage-card .icon { font-size: 2rem; margin-bottom: 0.65rem; }
.invest-advantage-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--green-800); }
.invest-advantage-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.feasibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}
.feasibility-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s;
}
.feasibility-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feasibility-card-media {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  background: var(--green-900);
}
.feasibility-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 17, 15, 0.35) 100%);
  pointer-events: none;
}
.feasibility-card-media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center;
  display: block; transition: transform 0.35s ease;
}
.feasibility-card:hover .feasibility-card-media img { transform: scale(1.04); }
.feasibility-card-header {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feasibility-card-header .icon { font-size: 1.75rem; flex-shrink: 0; }
.feasibility-card-header h3 { font-size: 0.95rem; color: var(--green-800); line-height: 1.35; }
.feasibility-card-body { padding: 0 1.25rem 1.25rem; }
.feasibility-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.feasibility-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.feasibility-metric {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.feasibility-metric .m-val { display: block; font-weight: 700; font-size: 0.85rem; color: var(--green-700); }
.feasibility-metric .m-lbl { font-size: 0.62rem; color: var(--text-muted); }
.feasibility-card-footer {
  padding: 0.75rem 1.25rem;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.feasibility-page-link {
  font-size: 0.75rem;
  color: var(--green-700);
  text-decoration: none;
  font-weight: 600;
}
.feasibility-page-link:hover { text-decoration: underline; }

.invest-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.invest-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.invest-table th {
  background: var(--green-800);
  color: white;
  padding: 0.85rem 1rem;
  text-align: start;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.invest-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.invest-table tr:hover td { background: var(--surface-2); }
.invest-table .sector-cell { font-weight: 600; color: var(--green-800); }
.invest-table .status-badge-inv {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.invest-table .status-badge-inv.active {
  background: rgba(5,150,105,0.12);
  color: var(--green-700);
  border-color: var(--green-500);
}
.invest-table .zone-link {
  color: var(--green-700);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}
.invest-table .zone-link:hover { text-decoration: underline; }

.invest-incentives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.invest-incentive-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.invest-incentive-card .invest-incentive-icon {
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
  background: rgba(185, 231, 93, 0.08); border-radius: 10px;
  border: 1px solid rgba(185, 231, 93, 0.2);
}
.invest-incentive-card .icon { font-size: 1.5rem; flex-shrink: 0; }
.invest-incentive-card h3 { font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--green-800); }
.invest-incentive-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

.invest-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.invest-doc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}
.invest-doc-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.invest-doc-card .doc-icon { font-size: 1.75rem; }
.invest-doc-card h3 { font-size: 0.9rem; color: var(--green-800); margin-bottom: 0.15rem; }
.invest-doc-card span { font-size: 0.72rem; color: var(--text-muted); }

.invest-cta-section {
  padding: 4rem 0;
  background: var(--dark);
  color: white;
}
.invest-cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.invest-cta-box h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--green-400);
}
.invest-cta-box p { font-size: 0.9rem; opacity: 0.85; line-height: 1.7; margin-bottom: 1.5rem; }
.invest-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.invest-cta-partners { font-size: 0.75rem; opacity: 0.5; }

.section-lead { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 720px; }
.invest-sczone-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(160, 245, 234, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(6, 17, 15, 0.96), rgba(7, 22, 22, 0.9));
}
.invest-egypt-section { background: var(--surface); }
.invest-gallery-section { background: var(--surface-2); }
.invest-sczone-section .section-head {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.invest-sczone-section .section-lead {
  margin-inline: auto;
}
.invest-sczone-intro {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: rgba(238, 255, 248, 0.78);
  margin: 0 auto 1.4rem;
  max-width: 920px;
  text-align: center;
}
.invest-sczone-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.invest-sczone-stat {
  min-height: 84px;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 32, 33, 0.92), rgba(8, 24, 24, 0.78));
  border: 1px solid rgba(160, 245, 234, 0.22);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.invest-sczone-stat .val { display: block; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 800; color: var(--accent-lime); }
.invest-sczone-stat .unit { font-size: 0.75rem; color: var(--accent-cyan); margin-inline-start: 0.15rem; }
.invest-sczone-stat .lbl { display: block; font-size: 0.7rem; color: rgba(238, 255, 248, 0.74); margin-top: 0.35rem; line-height: 1.45; }
.invest-sczone-visuals {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .invest-sczone-connectivity,
  .invest-sczone-markets {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    column-gap: 1.25rem;
    align-items: center;
  }
  .invest-sczone-connectivity h3,
  .invest-sczone-connectivity p,
  .invest-sczone-markets h3,
  .invest-sczone-markets p {
    grid-column: 1;
  }
  .invest-sczone-connectivity .invest-sczone-figure,
  .invest-sczone-markets .invest-sczone-figure {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
.invest-sczone-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(160, 245, 234, 0.24);
  background: #f7faf9;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}
.invest-sczone-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f7faf9;
  transition: filter 0.25s ease;
}
.invest-sczone-figure:hover {
  border-color: rgba(205, 255, 79, 0.38);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(205, 255, 79, 0.14) inset;
}
.invest-sczone-figure:hover img { filter: saturate(1.08) contrast(1.03); }
.invest-sczone-figure figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.75rem;
  color: rgba(238, 255, 248, 0.76);
  background: rgba(7, 24, 24, 0.94);
  border-top: 1px solid rgba(160, 245, 234, 0.16);
}
.invest-sczone-connectivity,
.invest-sczone-markets {
  padding: clamp(0.85rem, 1.6vw, 1.25rem);
  border: 1px solid rgba(160, 245, 234, 0.2);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  backdrop-filter: blur(14px) saturate(1.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 44px rgba(0, 0, 0, 0.18);
}
.invest-sczone-connectivity h3, .invest-sczone-markets h3 {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  margin-bottom: 0.55rem;
  color: var(--text);
}
.invest-sczone-connectivity p, .invest-sczone-markets p {
  font-size: 0.86rem;
  color: rgba(238, 255, 248, 0.76);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.invest-source-note { font-size: 0.72rem; color: var(--text-muted); opacity: 0.75; margin-top: 1.5rem; }

.invest-egypt-kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.invest-egypt-kpi {
  padding: 1.1rem; border-radius: 10px; background: var(--surface-2);
  border: 1px solid var(--border); text-align: center;
}
.invest-egypt-kpi .val { display: block; font-size: 1.4rem; font-weight: 700; color: var(--accent-cyan); }
.invest-egypt-kpi .lbl { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }
.invest-egypt-outlook {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; gap: 0.5rem;
}
.invest-egypt-outlook li {
  padding: 0.65rem 1rem; border-radius: 8px; background: var(--surface-2);
  border-inline-start: 3px solid var(--accent-lime);
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.55;
}
.invest-egypt-2030 h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.invest-egypt-2030-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.invest-2030-item {
  padding: 1rem; border-radius: 10px; background: var(--surface-2);
  border: 1px solid var(--border); text-align: center;
}
.invest-2030-item .val { display: block; font-size: 1.25rem; font-weight: 700; color: var(--accent-lime); }
.invest-2030-item .lbl { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 0.25rem; }
.invest-egypt-banner {
  margin: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: var(--green-900);
}
.invest-egypt-banner img {
  width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: center;
  display: block; transition: transform 0.35s ease;
}
.invest-egypt-banner:hover img { transform: scale(1.02); }

.invest-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.invest-ref-card {
  display: flex; flex-direction: column; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; background: var(--surface);
  text-align: start; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.invest-ref-card:hover { border-color: var(--accent-cyan); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(8, 17, 15, 0.12); }
.invest-ref-thumb, .invest-doc-thumb {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  background: var(--surface-2); cursor: zoom-in; overflow: hidden;
}
.invest-ref-thumb img, .invest-doc-thumb img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center;
  display: block; transition: transform 0.25s ease;
  filter: saturate(1.05);
}
.invest-ref-thumb::after, .invest-doc-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 17, 15, 0.25) 100%);
  pointer-events: none;
}
.invest-ref-card:hover .invest-ref-thumb img, .invest-ref-doc-card:hover .invest-doc-thumb img { transform: scale(1.03); }
.invest-ref-preview-badge {
  position: absolute; inset-inline-end: 0.55rem; bottom: 0.55rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(8, 17, 15, 0.78); color: var(--accent-lime);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); pointer-events: none;
}
.invest-ref-preview-badge .svg-icon svg { width: 1rem; height: 1rem; }
.invest-ref-body { padding: 0.85rem 0.95rem 1rem; display: flex; flex-direction: column; flex: 1; gap: 0.35rem; }
.invest-ref-tag { font-size: 0.65rem; color: var(--accent-cyan); font-weight: 600; letter-spacing: 0.02em; }
.invest-ref-body h3 { font-size: 0.88rem; line-height: 1.4; color: var(--text); margin: 0; }
.invest-ref-file { font-size: 0.65rem; color: var(--text-muted); word-break: break-all; opacity: 0.85; }
.invest-ref-includes-title { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); margin: 0.35rem 0 0; }
.invest-ref-includes {
  list-style: none; padding: 0; margin: 0 0 0.5rem;
  display: grid; gap: 0.25rem; flex: 1;
}
.invest-ref-includes li {
  font-size: 0.72rem; color: var(--text-muted); line-height: 1.45;
  padding-inline-start: 0.85rem; position: relative;
}
.invest-ref-includes li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 0.55em;
  width: 0.3rem; height: 0.3rem; border-radius: 50%; background: var(--accent-lime);
}
.invest-ref-actions {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: auto; padding-top: 0.35rem;
}
.invest-ref-actions .btn-sm { font-size: 0.72rem; padding: 0.4rem 0.7rem; min-height: 36px; display: inline-flex; align-items: center; gap: 0.35rem; }
.invest-ref-actions .svg-icon svg { width: 0.9rem; height: 0.9rem; }
.invest-ref-doc-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 0.75rem;
  align-items: stretch; padding: 0.65rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-2); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.invest-ref-doc-card:hover {
  border-color: var(--accent-cyan); transform: translateY(-2px); box-shadow: var(--shadow);
}
.invest-ref-doc-card .invest-doc-thumb { border-radius: 8px; height: 100%; }
.invest-ref-doc-card .invest-doc-thumb img { aspect-ratio: 3 / 4; height: 100%; min-height: 120px; object-position: center; }
.invest-ref-doc-card .invest-ref-body { padding: 0.15rem 0 0; }
.invest-ref-doc-card .invest-ref-actions { margin-top: 0.5rem; }
.invest-ref-includes-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin: 0.5rem 0 0.25rem; }
.invest-ref-includes-list {
  list-style: disc; padding-inline-start: 1.1rem; margin: 0 0 0.75rem;
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.invest-lightbox-download { margin-top: 0.75rem; }
.invest-lightbox-download .btn { display: inline-flex; align-items: center; gap: 0.35rem; }

.invest-enlargeable {
  position: relative; cursor: zoom-in; border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.invest-enlargeable:hover, .invest-enlargeable:focus-visible {
  box-shadow: 0 8px 32px rgba(70, 199, 217, 0.15);
  transform: translateY(-2px);
  outline: 2px solid var(--accent-cyan); outline-offset: 2px;
}
.invest-enlargeable::after {
  content: ''; position: absolute; inset-inline-end: 0.75rem; bottom: 0.75rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(8, 17, 15, 0.8) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23c8f542' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center/1rem no-repeat;
  border: 1px solid rgba(255,255,255,0.2); pointer-events: none;
}

.invest-incentives-split {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .invest-incentives-split { grid-template-columns: 1fr 1fr; }
}
.invest-incentives-block h3 {
  font-size: 0.95rem; color: var(--accent-cyan); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.invest-docs-heading {
  font-size: 0.85rem; color: var(--accent-lime); margin: 1.5rem 0 0.75rem;
  letter-spacing: 0.03em;
}
.invest-docs-heading:first-of-type { margin-top: 0; }
.invest-gov-docs .invest-doc-card { border-color: rgba(70, 199, 217, 0.25); }
.doc-tag { font-size: 0.72rem; color: var(--text-muted); }

.invest-phase-strip { margin-bottom: 1.5rem; }
.invest-kpi-item .final-vision-badge,
.final-vision-badge {
  display: inline-block; font-size: 0.58rem; color: var(--accent-cyan);
  margin-inline-start: 0.35rem; vertical-align: middle;
  padding: 0.1rem 0.35rem; border: 1px solid rgba(70, 199, 217, 0.35); border-radius: 4px;
}

.invest-image-lightbox {
  position: fixed; inset: 0; z-index: 10001; background: rgba(8, 17, 15, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.invest-image-lightbox.hidden { display: none; }
.invest-lightbox-figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.invest-lightbox-figure img { max-width: 100%; max-height: 75vh; border-radius: 8px; }
.invest-lightbox-figure figcaption { margin-top: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.invest-lightbox-close {
  position: absolute; top: 1rem; inset-inline-end: 1rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: white; width: 44px; height: 44px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.invest-lightbox-prev, .invest-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.invest-lightbox-prev { inset-inline-start: 1rem; }
.invest-lightbox-next { inset-inline-end: 1rem; }
html[dir="rtl"] .invest-lightbox-prev .svg-icon svg,
html[dir="rtl"] .invest-lightbox-next .svg-icon svg { transform: scaleX(-1); }

.kemet-theme .invest-sczone-stat,
.kemet-theme .invest-egypt-kpi,
.kemet-theme .invest-2030-item { background: var(--surface); }
.kemet-theme .invest-ref-card, .kemet-theme .invest-ref-doc-card { background: var(--surface); }
.kemet-theme .invest-sczone-figure,
.kemet-theme .invest-egypt-banner { background: var(--surface-2); }

@media (max-width: 767px) {
  .section { padding: 3.25rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: 1.35rem; }
  .sticky-cta-inner { justify-content: center; text-align: center; }
  .sticky-cta-text { flex-basis: 100%; font-size: 0.82rem; }
  .invest-sczone-connectivity,
  .invest-sczone-markets { display: block; }
  .invest-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-lightbox-prev { inset-inline-start: 0.25rem; }
  .invest-lightbox-next { inset-inline-end: 0.25rem; }
}

.legal-regime-warning-wrap { margin-bottom: 1.75rem; }
.legal-warning-banner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: 14px;
  border: 1px solid rgba(70, 199, 217, 0.45);
  background-image: linear-gradient(90deg, rgba(8, 17, 15, 0.92) 0%, rgba(8, 17, 15, 0.78) 55%, rgba(8, 17, 15, 0.65) 100%), var(--legal-banner-bg);
  background-size: cover; background-position: center;
  box-shadow: 0 8px 32px rgba(8, 17, 15, 0.18);
  overflow: hidden; position: relative;
}
.legal-warning-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid rgba(185, 231, 93, 0.45); object-fit: cover;
  box-shadow: 0 0 0 4px rgba(70, 199, 217, 0.12);
}
.legal-warning-text {
  margin: 0; font-size: 0.92rem; line-height: 1.7; color: var(--off-white, #F5F3EC);
  font-weight: 500;
}
.invest-incentives-block .legal-warning-banner { margin-bottom: 1.25rem; }
.invest-framework-note, .regime-disclaimer {
  font-size: 0.82rem; color: var(--accent-cyan); line-height: 1.65;
  margin: 0;
}
.invest-incentives-regimes { display: grid; gap: 2rem; }
.regime-header {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.regime-header-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid rgba(70, 199, 217, 0.35); object-fit: cover;
}
.regime-header h3 {
  margin: 0 0 0.35rem; font-size: 1.05rem; color: var(--accent-lime);
}
.invest-incentives-block[data-regime="sczone"] .regime-header h3 { color: var(--accent-cyan); }
.legal-label-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.62rem; padding: 0.2rem 0.5rem;
  border-radius: 999px; border: 1px solid rgba(185, 231, 93, 0.35);
  color: var(--accent-lime); margin-bottom: 0.5rem; width: fit-content;
  background: rgba(8, 17, 15, 0.04);
}
.legal-label-icon { width: 20px; height: 20px; flex-shrink: 0; }
.source-link-btn {
  margin-top: 0.5rem; background: transparent; border: 1px solid var(--border);
  color: var(--accent-cyan); font-size: 0.72rem; padding: 0.35rem 0.65rem;
  border-radius: 6px; cursor: pointer; min-height: 44px;
}
.cooperation-aggregates {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cooperation-aggregate-card {
  padding: 1rem; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface);
}
.cooperation-aggregate-card h3 { font-size: 0.88rem; margin-bottom: 0.35rem; }
.coop-status { font-size: 0.72rem; color: var(--accent-cyan); }
.governance-disclaimer {
  font-size: 0.68rem; opacity: 0.7; line-height: 1.6; margin-top: 0.75rem; max-width: 720px;
}
.investor-form .form-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}
.investor-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.8rem; }
.investor-form input, .investor-form select, .investor-form textarea {
  padding: 0.6rem 0.75rem; border-radius: 8px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); min-height: 44px;
}
.investor-form .form-file-field {
  border: 1px dashed rgba(70, 199, 217, 0.38);
  border-radius: 10px;
  padding: 0.75rem;
  background: rgba(70, 199, 217, 0.06);
}
.investor-form .form-file-field input[type="file"] {
  padding: 0.5rem;
  background: rgba(255,255,255,0.04);
}
.investor-form .form-file-field small {
  color: var(--text-muted);
  font-size: 0.68rem;
}
.form-privacy-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.75rem; }
.form-status {
  font-size: 0.82rem; margin-top: 0.85rem; padding: 0.65rem 0.9rem;
  border-radius: 8px; line-height: 1.55;
}
.form-status--pending {
  background: rgba(70, 199, 217, 0.12); color: var(--accent-cyan);
  border: 1px solid rgba(70, 199, 217, 0.3);
}
.form-status--success {
  background: rgba(185, 231, 93, 0.12); color: var(--accent-lime);
  border: 1px solid rgba(185, 231, 93, 0.35);
}
.form-status--error {
  background: rgba(239, 68, 68, 0.1); color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.investor-form button[type="submit"]:disabled { opacity: 0.65; cursor: wait; }
.admin-settings-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1rem; }
.admin-settings-wrap { width: min(720px, 100%); }
.admin-settings-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.admin-settings-card.hidden { display: none; }
.admin-settings-head { display: flex; justify-content: space-between; gap: 1rem; align-items: start; margin-bottom: 1rem; }
.admin-eyebrow { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 0.35rem; }
.admin-lead, .admin-field-help, .admin-hint { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.admin-hint { margin-top: 1rem; }
.admin-form { margin-top: 1rem; }
.admin-fieldset {
  border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1rem 0.75rem;
  margin: 0 0 1rem; display: grid; gap: 0.75rem;
}
.admin-fieldset legend { padding: 0 0.35rem; font-size: 0.78rem; color: var(--accent-lime); }
.admin-smtp-grid {
  display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.admin-smtp-grid.hidden { display: none; }
.admin-full { grid-column: 1 / -1; }
.admin-checkbox { flex-direction: row !important; align-items: center; gap: 0.55rem !important; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

/* Admin dashboard shell */
.admin-dashboard-page {
  display: block;
  place-items: initial;
  padding: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(70,199,217,0.16), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(200,245,66,0.12), transparent 24rem),
    linear-gradient(135deg, #030c0d 0%, #081b1f 52%, #101713 100%);
  color: var(--text);
}
.admin-dashboard-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}
.admin-leftbar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 1rem;
  border-inline-end: 1px solid rgba(160,245,234,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(3,12,13,0.9);
  box-shadow: 18px 0 44px rgba(0,0,0,0.24);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.65rem;
  border: 1px solid rgba(160,245,234,0.12);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.045);
}
.admin-brand img {
  width: 52px;
  height: 34px;
  object-fit: contain;
}
.admin-brand strong,
.admin-brand small {
  display: block;
}
.admin-brand strong {
  font-size: 0.9rem;
  line-height: 1.1;
}
.admin-brand small {
  margin-top: 0.18rem;
  color: var(--text-muted);
  font-size: 0.72rem;
}
.admin-task-tree {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.admin-task-tree details {
  border: 1px solid rgba(160,245,234,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.admin-task-tree summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem;
  color: rgba(245,243,236,0.92);
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  list-style: none;
}
.admin-task-tree summary::-webkit-details-marker {
  display: none;
}
.admin-task-tree summary::after {
  content: '+';
  margin-inline-start: auto;
  color: var(--accent-cyan);
  font-weight: 900;
}
.admin-task-tree details[open] summary::after {
  content: '-';
}
.admin-tree-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent-lime);
  box-shadow: 0 0 18px rgba(200,245,66,0.45);
}
.admin-task-tree a {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0.45rem 0.45rem;
  padding: 0.58rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(245,243,236,0.74);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.admin-task-tree a:hover,
.admin-task-tree a.active {
  color: var(--accent-lime);
  border-color: rgba(200,245,66,0.24);
  background: rgba(200,245,66,0.08);
  transform: translateX(2px);
}
.admin-leftbar-foot {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(70,199,217,0.18);
  border-radius: 12px;
  background: rgba(70,199,217,0.08);
}
.admin-leftbar-foot span,
.admin-leftbar-foot small {
  display: block;
}
.admin-leftbar-foot span {
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 800;
}
.admin-leftbar-foot small {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}
.admin-dashboard-main {
  width: min(1220px, 100%);
  padding: clamp(1rem, 2.8vw, 2rem);
}
.admin-dashboard-main .admin-settings-card {
  width: 100%;
  border-color: rgba(160,245,234,0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    rgba(8,17,15,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 22px 70px rgba(0,0,0,0.26);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}
.admin-dashboard-main .admin-settings-head {
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(160,245,234,0.12);
}
.admin-dashboard-main h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}
.admin-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}
.admin-metric-card {
  min-height: 94px;
  padding: 0.95rem;
  border: 1px solid rgba(160,245,234,0.13);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(200,245,66,0.12), transparent 5rem),
    rgba(255,255,255,0.045);
}
.admin-metric-card strong {
  display: block;
  color: var(--accent-lime);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1;
}
.admin-metric-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.76rem;
}
.admin-workflow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.admin-workflow span,
.admin-workflow button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  font-size: 0.72rem;
  font-weight: 700;
}
.admin-workflow button {
  cursor: pointer;
  font-family: inherit;
}
.admin-workflow button:hover {
  color: var(--accent-lime);
  border-color: rgba(200,245,66,0.3);
  background: rgba(200,245,66,0.08);
}
.admin-workflow span.active,
.admin-workflow button.active {
  color: var(--green-dark);
  border-color: rgba(200,245,66,0.48);
  background: var(--accent-lime);
}
.admin-desk-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}
.admin-content-panel,
.admin-task-card {
  min-width: 0;
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.admin-content-panel {
  padding: 1rem;
}
.admin-content-panel.analytics-panel-pulse {
  animation: analytics-panel-pulse 1.1s ease;
}
@keyframes analytics-panel-pulse {
  0% {
    border-color: rgba(200,245,66,0.68);
    box-shadow: 0 0 0 0 rgba(200,245,66,0.38), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  100% {
    border-color: rgba(160,245,234,0.14);
    box-shadow: 0 0 0 18px rgba(200,245,66,0), inset 0 1px 0 rgba(255,255,255,0.08);
  }
}
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(160,245,234,0.12);
}
.admin-panel-head span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
}
.admin-panel-head small {
  color: var(--text-muted);
  font-size: 0.72rem;
}
.admin-help-panel {
  margin-top: 1rem;
}
.admin-setup-list {
  margin: 0;
  padding-inline-start: 1.2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.75;
}
.admin-task-card {
  display: grid;
  gap: 0.45rem;
  min-height: 150px;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.admin-task-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,245,66,0.32);
  background: rgba(200,245,66,0.07);
}
.admin-task-card > span {
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 900;
}
.admin-task-card strong {
  color: var(--accent-lime);
  font-size: 1.05rem;
}
.admin-task-card small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.request-tracker-panel {
  margin-top: 1rem;
}
.request-tracker-panel .admin-panel-head {
  align-items: center;
}
.admin-inline-login {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1rem;
}
.admin-inline-login.hidden {
  display: none;
}
.admin-inline-login label {
  flex: 1 1 260px;
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
}
.admin-inline-login input {
  min-height: 44px;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}
.request-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.85rem;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 8%, rgba(70,199,217,0.12), transparent 8rem),
    rgba(255,255,255,0.045);
}
.request-logo {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(160,245,234,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.request-logo--image {
  display: grid;
  place-items: center;
  padding: 0.55rem;
}
.request-logo--image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.request-logo--fallback {
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--accent-lime), rgba(70,199,217,0.82));
  font-size: 1.35rem;
  font-weight: 900;
}
.request-card-body {
  min-width: 0;
}
.request-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}
.request-card-head strong,
.request-card-head small {
  display: block;
}
.request-card-head strong {
  color: var(--text);
  font-size: 0.98rem;
}
.request-card-head small {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.68rem;
}
.request-status-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(200,245,66,0.32);
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  color: var(--accent-lime);
  background: rgba(200,245,66,0.08);
  font-size: 0.62rem;
  font-weight: 900;
}
.request-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.55rem;
  font-size: 0.72rem;
}
.request-contact a,
.request-contact span {
  color: var(--accent-cyan);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.request-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.65rem;
}
.request-chips span {
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.045);
  font-size: 0.64rem;
}
.request-card p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.55;
}
.admin-dashboard-main .news-admin-list {
  max-height: 66vh;
  overflow-y: auto;
  padding-inline-end: 0.25rem;
}
.admin-dashboard-main .news-admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  background: rgba(255,255,255,0.045);
}
.admin-dashboard-main .news-admin-item-actions {
  width: 100%;
}
.admin-dashboard-main .news-admin-item-actions .btn {
  flex: 1 1 130px;
  justify-content: center;
}
.analytics-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.analytics-live-card {
  border-color: rgba(200,245,66,0.22);
  background:
    radial-gradient(circle at 88% 12%, rgba(200,245,66,0.18), transparent 5rem),
    rgba(200,245,66,0.055);
}
.analytics-live-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-inline-end: 0.35rem;
  border-radius: 999px;
  background: var(--accent-lime);
  box-shadow: 0 0 16px rgba(200,245,66,0.6);
  vertical-align: middle;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.analytics-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.analytics-summary-card,
.analytics-most-card {
  min-height: 220px;
}
.analytics-summary-text {
  margin: 0;
  color: rgba(245,243,236,0.88);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.7;
}
.analytics-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.analytics-summary-chips span {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 128px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.045);
  font-size: 0.72rem;
}
.analytics-summary-chips strong {
  color: var(--accent-cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.analytics-most-pages {
  display: grid;
  gap: 0.65rem;
}
.analytics-most-page {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(160,245,234,0.12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}
.analytics-rank {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--accent-lime);
  font-weight: 900;
}
.analytics-most-copy {
  min-width: 0;
}
.analytics-most-copy strong,
.analytics-most-copy small {
  display: block;
}
.analytics-most-copy strong {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.25;
}
.analytics-most-copy small {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.analytics-most-count {
  text-align: end;
}
.analytics-most-count strong,
.analytics-most-count span {
  display: block;
}
.analytics-most-count strong {
  color: var(--accent-cyan);
  font-size: 1.05rem;
}
.analytics-most-count span {
  color: var(--text-muted);
  font-size: 0.72rem;
}
.analytics-bars {
  display: grid;
  gap: 0.75rem;
}
.analytics-bar-row {
  display: grid;
  gap: 0.35rem;
}
.analytics-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.76rem;
}
.analytics-bar-label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.analytics-bar-label strong {
  color: var(--accent-cyan);
}
.analytics-bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.analytics-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lime));
  box-shadow: 0 0 18px rgba(70,199,217,0.22);
}
.analytics-recent-panel {
  min-width: 0;
  margin-top: 1rem;
}
.analytics-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.analytics-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: var(--text);
  font-size: 0.78rem;
}
.analytics-table th,
.analytics-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(160,245,234,0.1);
  text-align: start;
  vertical-align: top;
}
.analytics-table th {
  color: var(--accent-cyan);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(70,199,217,0.055);
}
.analytics-table small {
  color: var(--text-muted);
  font-size: 0.68rem;
  word-break: break-all;
}
@media (max-width: 980px) {
  .admin-dashboard-shell {
    grid-template-columns: 1fr;
  }
  .admin-leftbar {
    position: relative;
    height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(160,245,234,0.16);
  }
  .admin-dashboard-main {
    padding: 1rem;
  }
  .admin-desk-layout,
  .admin-dashboard-metrics,
  .analytics-metrics,
  .analytics-grid,
  .analytics-summary-grid {
    grid-template-columns: 1fr;
  }
  .admin-dashboard-main .news-admin-list {
    max-height: none;
  }
}
@media (max-width: 640px) {
  .admin-settings-head {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-dashboard-main .admin-settings-card {
    padding: 1rem;
    border-radius: 12px;
  }
  .admin-brand,
  .admin-task-tree summary,
  .admin-task-tree a {
    min-height: 48px;
  }
  .admin-actions .btn,
  .admin-actions button,
  .admin-actions a {
    width: 100%;
    justify-content: center;
  }
  .request-card {
    grid-template-columns: 1fr;
  }
  .request-logo {
    width: 100%;
    height: 112px;
  }
  .admin-inline-login .btn {
    width: 100%;
    justify-content: center;
  }
}
.source-drawer {
  position: fixed; inset: 0; z-index: 10002; background: rgba(8, 17, 15, 0.75);
  display: flex; justify-content: flex-end;
}
.source-drawer.hidden { display: none; }
.source-drawer-panel {
  width: min(420px, 92vw); height: 100%; background: var(--surface);
  border-inline-start: 1px solid var(--border); padding: 1.25rem; overflow-y: auto;
}
.source-drawer-close {
  background: transparent; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text); float: inline-end;
}
.source-drawer-item { margin-bottom: 1.25rem; font-size: 0.82rem; line-height: 1.6; }
.source-drawer-item p { margin: 0.25rem 0; }
.source-drawer-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem;
}
.source-drawer-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem !important; padding: 0.45rem 0.75rem !important; min-height: 40px;
  text-decoration: none;
}
.source-drawer-btn .svg-icon { width: 14px; height: 14px; }
.source-no-file {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 0.65rem; font-style: italic;
}
.source-note { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }
.value-chain-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.value-chain-card {
  padding: 1rem; border-radius: 10px; border: 1px solid var(--border); background: var(--surface);
}
.value-chain-card h3 { font-size: 0.9rem; margin: 0.5rem 0 0.25rem; }
.vc-status { font-size: 0.72rem; color: var(--accent-cyan); }
.china-desk-badge {
  display: inline-block; font-size: 0.72rem; color: var(--accent-lime);
  border: 1px solid rgba(185, 231, 93, 0.4); padding: 0.2rem 0.5rem; border-radius: 4px;
  margin-bottom: 0.5rem;
}
.china-benefits-section { background: var(--surface-2); color: var(--text); }
.china-benefits-section .section-head h2 { color: var(--text); }
.china-benefits-section .section-tag { background: rgba(70, 199, 217, 0.12); color: var(--accent-cyan); border-color: rgba(70, 199, 217, 0.3); }
.china-benefits-intro { max-width: 780px; margin: 0 auto; text-align: center; }
.china-benefits-subhead { font-size: 1rem; margin: 2rem 0 1rem; color: var(--text); }
.china-vision-disclaimer {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
  padding: 0.75rem 1rem; border-radius: 8px;
  border-inline-start: 3px solid var(--accent-lime);
  background: var(--surface); margin-bottom: 1rem;
}
.china-market-kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 0.5rem;
}
.china-market-kpi {
  padding: 1.1rem; border-radius: 12px; background: var(--surface);
  border: 1px solid var(--border); text-align: center;
}
.china-market-kpi .val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--accent-cyan); }
.china-market-kpi .unit { font-size: 0.75rem; margin-inline-start: 0.2rem; }
.china-market-kpi .lbl { display: block; font-size: 0.72rem; color: var(--text-muted); margin: 0.35rem 0; }
.china-kpi-note { display: block; font-size: 0.65rem; color: var(--text-muted); opacity: 0.85; margin-bottom: 0.5rem; line-height: 1.45; }
.china-kpi-source { font-size: 0.68rem; margin-top: 0.25rem; }
.china-localization-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.china-localization-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.china-localization-table th, .china-localization-table td { padding: 0.65rem 0.85rem; text-align: start; border-bottom: 1px solid var(--border); }
.china-localization-table th { background: var(--surface-2); font-weight: 600; font-size: 0.72rem; color: var(--text-muted); }
.china-localization-table .chain-cell { font-weight: 600; color: var(--text); white-space: nowrap; }
.china-benefits-tables { display: grid; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 900px) { .china-benefits-tables { grid-template-columns: 1fr 1fr; } }
.china-milestones-track { margin-top: 0.5rem; }
.china-public-sources {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem; margin-bottom: 1rem;
}
.china-ref-card {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s;
}
.china-ref-card:hover { border-color: var(--accent-cyan); transform: translateY(-2px); }
.china-ref-card h4 { font-size: 0.82rem; margin: 0 0 0.2rem; color: var(--text); }
.china-ref-path { font-size: 0.62rem; color: var(--text-muted); word-break: break-all; }
.china-benefits-source { text-align: center; opacity: 0.8; margin-top: 1rem; }

.services-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service-card {
  padding: 1.1rem 1.15rem; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--accent-cyan); transform: translateY(-2px); }
.service-card h3 { font-size: 0.88rem; margin: 0 0 0.45rem; color: var(--text); }
.service-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.value-chains-wrap {
  overflow-x: auto; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
}
.value-chains-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.value-chains-table th, .value-chains-table td {
  padding: 0.7rem 0.9rem; text-align: start; border-bottom: 1px solid var(--border);
}
.value-chains-table th {
  background: var(--surface-2); font-weight: 600; font-size: 0.72rem; color: var(--text-muted);
}
.value-chains-table .chain-cell { font-weight: 600; color: var(--text); white-space: nowrap; }
.value-chains-table .status {
  display: inline-block; font-size: 0.72rem; padding: 0.2rem 0.55rem;
  border-radius: 4px; font-weight: 500; line-height: 1.4;
}
.value-chains-table .status.planned { background: rgba(70, 199, 217, 0.12); color: var(--accent-cyan); }
.value-chains-table .status.pilot { background: rgba(185, 231, 93, 0.15); color: var(--accent-lime); }
.value-chains-table .status.study { background: rgba(255, 193, 7, 0.12); color: #c9a227; }

.warning-box {
  padding: 0.9rem 1.1rem; border-radius: 10px; margin-bottom: 1.25rem;
  background: rgba(255, 193, 7, 0.08); border: 1px solid rgba(255, 193, 7, 0.35);
  font-size: 0.82rem; line-height: 1.65; color: var(--text);
}
.warning-box strong { color: #c9a227; }
.water-pathway-stages-head { font-size: 1rem; margin: 0 0 0.85rem; color: var(--text); }

.china-cta-section { margin-top: 0; }
.water-pathway-stages { counter-reset: stage; list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.water-pathway-stages li {
  padding: 0.65rem 1rem; border-radius: 8px; background: var(--surface);
  border: 1px solid var(--border); font-size: 0.82rem;
}
.water-pathway-stages .stage-n {
  display: inline-flex; width: 1.5rem; height: 1.5rem; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--green-deep); color: var(--accent-lime);
  font-size: 0.7rem; margin-inline-end: 0.5rem;
}
.teda-lessons-list { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.teda-lessons-list li {
  padding: 0.65rem 1rem; border-radius: 8px; background: var(--surface-2); font-size: 0.82rem;
}

.gcl-powerhouse-section {
  scroll-margin-top: 96px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,12,13,0.95), rgba(7,27,36,0.9)),
    radial-gradient(circle at 18% 14%, rgba(24,199,216,0.18), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(200,245,66,0.12), transparent 22rem),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover fixed;
}
.gcl-powerhouse-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(24,199,216,0.16) 39%, transparent 45%),
    linear-gradient(145deg, transparent 0 62%, rgba(200,245,66,0.11) 63%, transparent 69%);
  mix-blend-mode: screen;
  opacity: 0.8;
}
.gcl-powerhouse-shell {
  position: relative;
  z-index: 1;
}
.gcl-powerhouse-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
  perspective: 1200px;
}
.gcl-powerhouse-profile,
.gcl-chairman-card,
.gcl-power-pillar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 18px 54px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px) saturate(1.24);
}
.gcl-powerhouse-profile {
  padding: clamp(1.2rem, 2.5vw, 2rem);
}
.gcl-powerhouse-logo {
  display: block;
  width: min(18rem, 72%);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.24));
}
.gcl-powerhouse-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(200,245,66,0.22);
  color: var(--accent-lime);
  background: rgba(200,245,66,0.08);
  font-size: 0.72rem;
  font-weight: 800;
}
.gcl-powerhouse-profile p {
  max-width: 62rem;
  color: rgba(226,245,238,0.8);
  line-height: 1.75;
}
.gcl-powerhouse-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.gcl-power-stat {
  padding: 0.8rem;
  border: 1px solid rgba(160,245,234,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.gcl-power-stat strong {
  display: block;
  color: var(--accent-lime);
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  line-height: 1.05;
}
.gcl-power-stat span {
  display: block;
  color: rgba(226,245,238,0.72);
  font-size: 0.76rem;
  margin-top: 0.25rem;
}
.gcl-powerhouse-source-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(70,199,217,0.38);
}
.gcl-powerhouse-source-link:hover { color: var(--accent-lime); }
.gcl-chairman-card {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
}
.gcl-chairman-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}
.gcl-chairman-card figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(160,245,234,0.14);
  background: rgba(3,12,13,0.62);
}
.gcl-chairman-card strong { color: #fff; }
.gcl-chairman-card span {
  color: rgba(226,245,238,0.78);
  font-size: 0.84rem;
}
.gcl-chairman-card small {
  color: rgba(226,245,238,0.52);
  font-size: 0.7rem;
}
.gcl-powerhouse-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  perspective: 1200px;
}
.gcl-power-pillar {
  min-height: 230px;
  padding: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gcl-power-pillar:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(200,245,66,0.42);
  box-shadow: 0 24px 62px rgba(0,0,0,0.3), 0 0 30px rgba(200,245,66,0.13);
}
.gcl-power-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  border: 1px solid rgba(200,245,66,0.22);
  color: var(--accent-lime);
  background: rgba(200,245,66,0.075);
}
.gcl-power-pillar h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1rem;
}
.gcl-power-pillar p {
  margin: 0;
  color: rgba(226,245,238,0.72);
  font-size: 0.84rem;
  line-height: 1.62;
}

.arts-powerhouse-section {
  scroll-margin-top: 96px;
  --arts-charcoal: #060708;
  --arts-charcoal-2: #101215;
  --arts-gold: #d6aa51;
  --arts-gold-soft: #f4cf7a;
  --arts-white: #f8f8f4;
  position: relative;
  overflow: hidden;
  color: var(--arts-white);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(6,7,8,0.96), rgba(13,15,18,0.92)),
    radial-gradient(circle at 78% 8%, rgba(214,170,81,0.18), transparent 28rem),
    radial-gradient(circle at 12% 80%, rgba(70,199,217,0.08), transparent 24rem);
}

.arts-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6,7,8,0.94) 0%, rgba(6,7,8,0.76) 48%, rgba(6,7,8,0.9) 100%),
    url("assets/images/optimized/partners/arts-tech-project-3.webp") center / cover no-repeat;
  background-attachment: fixed;
  filter: saturate(0.9) contrast(1.12);
  opacity: 0.42;
  transform: scale(1.08);
}

.arts-powerhouse-section::before {
  content: '';
  position: absolute;
  inset: -25% -10% auto auto;
  width: 45rem;
  height: 45rem;
  z-index: -1;
  background: radial-gradient(circle, rgba(214,170,81,0.2), transparent 62%);
  filter: blur(10px);
  opacity: 0.8;
}

.arts-shell { position: relative; }
.arts-head { max-width: 920px; margin-inline: auto; text-align: center; }
.arts-head .section-tag {
  border-color: rgba(214,170,81,0.38);
  color: var(--arts-gold-soft);
  background: rgba(214,170,81,0.11);
}
.arts-head h2 { color: var(--arts-white); }
.arts-head .section-lead { color: rgba(248,248,244,0.78); }
.arts-cta {
  margin-top: 1.1rem;
  border-color: rgba(214,170,81,0.45) !important;
  color: var(--arts-white) !important;
}
.arts-cta:hover {
  border-color: var(--arts-gold-soft) !important;
  box-shadow: 0 0 0 1px rgba(244,207,122,0.2), 0 18px 48px rgba(214,170,81,0.24) !important;
}

.arts-heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(1.1rem, 3vw, 2.2rem);
  align-items: center;
  margin-top: 2.5rem;
}

.arts-copy-panel,
.arts-transfer-panel,
.arts-kemet-strip,
.arts-capability-card {
  border: 1px solid rgba(244,207,122,0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    rgba(7,8,10,0.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 24px 70px rgba(0,0,0,0.34);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.arts-copy-panel {
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.arts-logo-img {
  display: block;
  width: min(245px, 64vw);
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.32));
}

.arts-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.6rem;
  color: var(--arts-gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.arts-copy-panel h3,
.arts-transfer-copy h3 {
  margin: 0 0 0.75rem;
  color: var(--arts-white);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.18;
}

.arts-copy-panel p,
.arts-transfer-copy p,
.arts-flow-text,
.arts-capability-card p,
.arts-kemet-copy p {
  margin: 0;
  color: rgba(248,248,244,0.73);
  line-height: 1.7;
}

.arts-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.arts-stat {
  min-width: 0;
  padding: 0.75rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(244,207,122,0.18);
  background: rgba(244,207,122,0.08);
}
.arts-stat strong {
  display: block;
  color: var(--arts-gold-soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}
.arts-stat span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(248,248,244,0.68);
  font-size: 0.72rem;
  line-height: 1.35;
}

.arts-photo-stack {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  transform-style: preserve-3d;
}
.arts-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 68px rgba(0,0,0,0.32);
}
.arts-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.06);
}
.arts-photo-main {
  inset: 0 20% 0 18%;
  transform: translateZ(50px);
}
.arts-photo-secondary {
  top: 9%;
  bottom: 14%;
  inset-inline-start: 0;
  width: 33%;
  transform: translateZ(86px) rotateY(6deg);
}
.arts-photo-tertiary {
  top: 18%;
  bottom: 7%;
  inset-inline-end: 0;
  width: 38%;
  transform: translateZ(72px) rotateY(-7deg);
}
.arts-photo-secondary,
.arts-photo-tertiary { animation: artsFloat 6.5s ease-in-out infinite alternate; }
.arts-photo-tertiary { animation-delay: 0.8s; }

.arts-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
  perspective: 1200px;
}
.arts-capability-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 1.15rem;
  border-radius: 8px;
  transform-style: preserve-3d;
  transition: transform 0.28s var(--motion-ease), border-color 0.28s var(--motion-ease), box-shadow 0.28s var(--motion-ease);
}
.arts-capability-card:hover {
  border-color: rgba(244,207,122,0.54);
  box-shadow: 0 26px 76px rgba(0,0,0,0.36), 0 0 34px rgba(214,170,81,0.12);
}
.arts-capability-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(244,207,122,0.28);
  background: rgba(214,170,81,0.1);
  color: var(--arts-gold-soft);
}
.arts-capability-icon svg { width: 24px; height: 24px; }
.arts-capability-card h3 {
  margin: 0 0 0.55rem;
  color: var(--arts-white);
  font-size: 0.98rem;
  line-height: 1.32;
}
.arts-capability-card p { font-size: 0.82rem; }

.arts-transfer-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin-top: 1.5rem;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214,170,81,0.13), rgba(255,255,255,0.045)),
    rgba(7,8,10,0.72);
}
.arts-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.7vw, 1rem);
  align-items: stretch;
  min-height: 270px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.arts-flow::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 2.1rem;
  inset-inline: 9%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(244,207,122,0.78), rgba(70,199,217,0.28), rgba(244,207,122,0.78), transparent);
  box-shadow: 0 0 22px rgba(214,170,81,0.2);
}
.arts-flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 255px;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(244,207,122,0.2);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045) 48%, rgba(214,170,81,0.08)),
    rgba(8,9,12,0.72);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: start;
  touch-action: manipulation;
  user-select: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 48px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.03);
  transform:
    perspective(950px)
    rotateX(var(--flow-rotate-x, 0deg))
    rotateY(var(--flow-rotate-y, 0deg))
    translateY(var(--flow-lift, 0))
    translateZ(var(--flow-depth, 0));
  transform-style: preserve-3d;
  transition:
    transform 0.24s var(--motion-ease),
    border-color 0.24s var(--motion-ease),
    box-shadow 0.24s var(--motion-ease),
    background 0.24s var(--motion-ease);
}
.arts-flow-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(244,207,122,0.18) 44%, transparent 56%);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 0.24s var(--motion-ease), transform 0.42s var(--motion-ease);
}
.arts-flow-step:hover,
.arts-flow-step:focus-visible,
.arts-flow-step.is-active {
  --flow-lift: -8px;
  --flow-depth: 18px;
  border-color: rgba(244,207,122,0.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 30px 74px rgba(0,0,0,0.38),
    0 0 38px rgba(214,170,81,0.16);
  background:
    linear-gradient(155deg, rgba(244,207,122,0.16), rgba(255,255,255,0.08) 48%, rgba(70,199,217,0.08)),
    rgba(8,9,12,0.82);
}
.arts-flow-step:hover::before,
.arts-flow-step:focus-visible::before,
.arts-flow-step.is-active::before {
  opacity: 1;
  transform: translateX(34%);
}
.arts-flow-step.is-pressed {
  --flow-lift: -2px;
  --flow-depth: 6px;
}
.arts-flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--arts-gold-soft), var(--arts-gold));
  color: #080806;
  font-weight: 800;
  font-size: 0.72rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -8px 16px rgba(8,8,6,0.16),
    0 14px 26px rgba(0,0,0,0.28),
    0 0 24px rgba(244,207,122,0.22);
  transform: translateZ(34px);
  z-index: 1;
}
.arts-flow-node-copy {
  display: block;
  min-width: 0;
  transform: translateZ(24px);
}
.arts-flow-title {
  display: block;
  margin: 0 0 0.28rem;
  color: var(--arts-gold-soft);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.arts-flow-text {
  display: block;
  font-size: 0.82rem;
}

.arts-kemet-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
}
.arts-local-brand-stack {
  display: grid;
  align-items: center;
  justify-items: start;
  gap: 0.58rem;
  min-width: min(380px, 44vw);
  color: var(--arts-gold-soft);
  flex: 0 1 420px;
}
.arts-kemet-img {
  display: block;
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.34)) drop-shadow(0 0 18px rgba(214,170,81,0.14));
}
.arts-brand-divider {
  display: block;
  width: min(300px, 92%);
  height: 1px;
  background: linear-gradient(90deg, rgba(190,28,35,0.72), rgba(214,170,81,0.76), transparent);
  opacity: 0.82;
}
.arts-weacan-img {
  display: block;
  width: min(350px, 100%);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.36)) drop-shadow(0 0 14px rgba(190,28,35,0.16));
}
.arts-kemet-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(244,207,122,0.48);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(244,207,122,0.18), rgba(214,170,81,0.06));
  font-weight: 800;
  font-size: 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 0 28px rgba(214,170,81,0.14);
}
.arts-kemet-logo strong,
.arts-kemet-logo small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}
.arts-kemet-logo strong { font-size: 1.08rem; }
.arts-kemet-logo small { margin-top: 0.16rem; font-size: 0.68rem; color: rgba(244,207,122,0.7); }
.arts-kemet-copy {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
}
.arts-source-link {
  width: fit-content;
  color: var(--arts-gold-soft);
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,207,122,0.42);
}
.arts-source-link:hover { color: white; border-bottom-color: white; }

@keyframes artsFloat {
  from { transform: translateY(0) translateZ(78px) rotateY(5deg); }
  to { transform: translateY(-12px) translateZ(88px) rotateY(-4deg); }
}

@media (max-width: 1100px) {
  .gcl-powerhouse-grid { grid-template-columns: 1fr; }
  .gcl-powerhouse-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arts-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arts-heritage-grid,
  .arts-transfer-panel { grid-template-columns: 1fr; }
  .arts-photo-stack { min-height: 520px; }
}

@media (max-width: 700px) {
  .gcl-powerhouse-stats,
  .gcl-powerhouse-pillars { grid-template-columns: 1fr; }
  .gcl-chairman-card { grid-template-rows: auto auto; }
  .gcl-chairman-card img { min-height: 0; aspect-ratio: 4 / 3; }
  .arts-parallax-bg { background-attachment: scroll; }
  .arts-head { text-align: start; }
  .arts-heritage-grid { margin-top: 1.7rem; }
  .arts-copy-panel,
  .arts-transfer-panel,
  .arts-kemet-strip,
  .arts-capability-card { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .arts-logo-img { width: min(220px, 78vw); }
  .arts-stat-row { grid-template-columns: 1fr; }
  .arts-photo-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    min-height: 0;
  }
  .arts-photo {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 4 / 5;
    transform: none !important;
    animation: none;
  }
  .arts-photo-main { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .arts-icon-grid { grid-template-columns: 1fr; }
  .arts-capability-card { min-height: 0; }
  .arts-flow {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.75rem;
  }
  .arts-flow::before {
    display: block;
    top: 1.5rem;
    bottom: 1.5rem;
    inset-inline-start: 1.5rem;
    inset-inline-end: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(244,207,122,0.72), rgba(70,199,217,0.24), transparent);
  }
  .arts-flow-step {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    min-height: 0;
    gap: 0.8rem;
    padding: 0.95rem;
  }
  .arts-flow-index {
    width: 2.7rem;
    height: 2.7rem;
  }
  .arts-kemet-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .arts-local-brand-stack {
    min-width: 0;
    width: 100%;
    justify-items: start;
  }
  .arts-kemet-img { width: min(100%, 330px); }
  .arts-weacan-img { width: min(100%, 320px); }
}

@media (prefers-reduced-motion: reduce) {
  .arts-photo-secondary,
  .arts-photo-tertiary { animation: none; }
}

/* ARTS / Suzhou standalone page */
.arts-suzhou-hero,
.arts-suzhou-section,
.arts-suzhou-transfer-section,
.arts-suzhou-sources-section {
  --suzhou-ink: #050708;
  --suzhou-panel: rgba(10, 13, 16, 0.68);
  --suzhou-line: rgba(244, 207, 122, 0.22);
  --suzhou-gold: #f4cf7a;
  --suzhou-cyan: #8fe8ff;
  --suzhou-white: #f8f8f4;
}

.arts-suzhou-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4.5rem;
  overflow: hidden;
  color: var(--suzhou-white);
  isolation: isolate;
  background: #050708;
}
.arts-suzhou-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/images/optimized/partners/suzhou-arts/sip-overview-01.webp") center / cover no-repeat;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.08);
}
.arts-suzhou-hero .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0.76) 46%, rgba(3, 5, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.96));
}
.arts-suzhou-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(5,7,8,0.96));
  pointer-events: none;
}
.arts-suzhou-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}
.arts-suzhou-hero-copy {
  max-width: 820px;
}
.arts-suzhou-hero h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.2rem, 5.8vw, 5.5rem);
  line-height: 1.02;
  color: white;
  text-wrap: balance;
}
.arts-suzhou-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(248,248,244,0.82);
  font-size: clamp(0.96rem, 1.65vw, 1.16rem);
  line-height: 1.72;
}
.arts-suzhou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.arts-suzhou-hero-card,
.arts-suzhou-model-card,
.arts-suzhou-capability,
.arts-suzhou-project,
.arts-profile-visual,
.arts-profile-copy,
.arts-profile-metric,
.arts-profile-proof,
.arts-suzhou-transfer-panel,
.arts-suzhou-sources-box {
  border: 1px solid var(--suzhou-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
    var(--suzhou-panel);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 78px rgba(0,0,0,0.36);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
}
.arts-suzhou-hero-card {
  padding: clamp(1rem, 2vw, 1.4rem);
  transform-style: preserve-3d;
}
.arts-suzhou-hero-logo {
  display: block;
  width: min(280px, 82%);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.4));
}
.arts-suzhou-stats {
  display: grid;
  gap: 0.72rem;
}
.arts-suzhou-stat {
  padding: 0.85rem;
  border: 1px solid rgba(244,207,122,0.16);
  border-radius: 8px;
  background: rgba(244,207,122,0.075);
}
.arts-suzhou-stat strong {
  display: flex;
  align-items: baseline;
  gap: 0.32rem;
  color: var(--suzhou-gold);
  font-size: clamp(1.28rem, 3vw, 2rem);
  line-height: 1.08;
}
.arts-suzhou-stat strong span {
  font-size: 0.74rem;
  color: rgba(248,248,244,0.74);
}
.arts-suzhou-stat p {
  margin: 0.28rem 0 0;
  color: rgba(248,248,244,0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.arts-suzhou-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(244,207,122,0.12), transparent 24rem),
    radial-gradient(circle at 14% 82%, rgba(143,232,255,0.08), transparent 28rem),
    linear-gradient(180deg, #050708, #0b1013);
  color: var(--suzhou-white);
}
.arts-suzhou-section .section-head,
.arts-suzhou-transfer-section .section-head {
  max-width: 920px;
}
.arts-suzhou-section .section-head h2,
.arts-suzhou-transfer-section .section-head h2,
.arts-suzhou-sources-box h2 {
  color: white;
}
.arts-suzhou-section .section-head p,
.arts-suzhou-sources-box p {
  color: rgba(248,248,244,0.76);
}
.arts-suzhou-model-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: 2rem;
}
.arts-suzhou-feature-image {
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
}
.arts-suzhou-feature-image img,
.arts-suzhou-project figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.arts-suzhou-model-grid,
.arts-suzhou-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
.arts-suzhou-model-card,
.arts-suzhou-capability {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 1.1rem;
  transform-style: preserve-3d;
  transition: transform 0.26s var(--motion-ease), border-color 0.26s var(--motion-ease), box-shadow 0.26s var(--motion-ease);
}
.arts-suzhou-model-card:hover,
.arts-suzhou-capability:hover,
.arts-suzhou-project:hover,
.arts-profile-proof:hover {
  transform: translateY(-7px) rotateX(1deg);
  border-color: rgba(244,207,122,0.58);
  box-shadow: 0 30px 84px rgba(0,0,0,0.4), 0 0 34px rgba(244,207,122,0.13);
}
.arts-suzhou-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(244,207,122,0.28);
  border-radius: 8px;
  color: var(--suzhou-gold);
  background: rgba(244,207,122,0.1);
}
.arts-suzhou-model-card h3,
.arts-suzhou-capability h3,
.arts-suzhou-project h3,
.arts-profile-proof h3 {
  margin: 0 0 0.5rem;
  color: white;
  font-size: 1.03rem;
  line-height: 1.32;
}
.arts-suzhou-model-card p,
.arts-suzhou-capability p,
.arts-suzhou-project p,
.arts-profile-proof p {
  margin: 0;
  color: rgba(248,248,244,0.72);
  font-size: 0.84rem;
  line-height: 1.68;
}
.arts-profile-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(244,207,122,0.16), transparent 24rem),
    radial-gradient(circle at 8% 84%, rgba(143,232,255,0.09), transparent 28rem),
    linear-gradient(180deg, #080c0f, #10171b 48%, #080b0d);
}
.arts-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.arts-profile-visual,
.arts-profile-copy,
.arts-profile-proof {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.arts-profile-visual {
  min-height: 520px;
  margin: 0;
}
.arts-profile-visual img,
.arts-profile-proof img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.arts-profile-copy {
  padding: clamp(1.15rem, 2.5vw, 2rem);
}
.arts-profile-copy h2 {
  margin: 0.6rem 0 0.85rem;
  color: white;
  font-size: clamp(1.72rem, 3.4vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}
.arts-profile-copy > p {
  margin: 0;
  color: rgba(248,248,244,0.76);
  line-height: 1.78;
}
.arts-profile-image-note {
  display: grid;
  gap: 0.35rem;
  margin: 0.95rem 0 0;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(244,207,122,0.22);
  border-radius: 8px;
  background: rgba(244,207,122,0.08);
  color: rgba(248,248,244,0.76);
  font-size: 0.8rem;
  line-height: 1.58;
}
.arts-profile-image-note strong {
  color: var(--suzhou-gold);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.arts-profile-image-note span {
  display: block;
}
.arts-profile-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.3rem 0 1rem;
}
.arts-profile-metric {
  padding: 0.9rem;
  background:
    linear-gradient(145deg, rgba(244,207,122,0.12), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.045);
}
.arts-profile-metric strong {
  display: block;
  color: var(--suzhou-gold);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}
.arts-profile-metric span {
  display: block;
  margin-top: 0.42rem;
  color: rgba(248,248,244,0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}
.arts-profile-source {
  color: rgba(248,248,244,0.56) !important;
  font-size: 0.75rem;
}
.arts-profile-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 1rem;
}
.arts-profile-proof {
  min-height: 100%;
  transition: transform 0.26s var(--motion-ease), border-color 0.26s var(--motion-ease), box-shadow 0.26s var(--motion-ease);
}
.arts-profile-proof figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.arts-profile-proof div {
  padding: 0.9rem;
}
.arts-suzhou-experience {
  background:
    linear-gradient(180deg, #0b1013, #06080a),
    url("assets/images/optimized/partners/suzhou-arts/sip-overview-02.webp") center / cover fixed;
}
.arts-suzhou-experience-grid {
  margin-top: 1.6rem;
}
.arts-suzhou-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.7rem;
}
.arts-suzhou-project {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.26s var(--motion-ease), border-color 0.26s var(--motion-ease), box-shadow 0.26s var(--motion-ease);
}
.arts-suzhou-project figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}
.arts-suzhou-project-copy {
  padding: 1rem;
}
.arts-suzhou-project-copy > span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--suzhou-gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.arts-suzhou-transfer-section,
.arts-suzhou-sources-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(143,232,255,0.08), transparent 28rem),
    linear-gradient(180deg, #06080a, #050708);
  color: var(--suzhou-white);
}
.arts-suzhou-transfer-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.arts-suzhou-transfer-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  perspective: 1200px;
}
.arts-suzhou-step {
  min-height: 260px;
}
.arts-suzhou-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--suzhou-gold), #d6aa51);
  color: #060606;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.54), 0 16px 30px rgba(0,0,0,0.32);
}
.arts-suzhou-step strong {
  color: var(--suzhou-gold);
}
.arts-suzhou-step > span:last-child {
  color: rgba(248,248,244,0.72);
  font-size: 0.84rem;
  line-height: 1.62;
}
.arts-suzhou-sources-box {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.arts-suzhou-source-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0;
}
.arts-suzhou-source-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 74px;
  padding: 0.9rem;
  border: 1px solid rgba(244,207,122,0.18);
  border-radius: 8px;
  color: var(--suzhou-white);
  text-decoration: none;
  background: rgba(255,255,255,0.055);
  transition: border-color 0.2s var(--motion-ease), transform 0.2s var(--motion-ease), background 0.2s var(--motion-ease);
}
.arts-suzhou-source-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,207,122,0.5);
  background: rgba(244,207,122,0.11);
}
.arts-suzhou-source-card .svg-icon {
  flex: 0 0 auto;
  color: var(--suzhou-gold);
}

@media (max-width: 1100px) {
  .arts-suzhou-hero-inner,
  .arts-suzhou-model-layout,
  .arts-profile-layout {
    grid-template-columns: 1fr;
  }
  .arts-suzhou-project-grid,
  .arts-profile-proof-grid,
  .arts-suzhou-transfer-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .arts-suzhou-feature-image {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .arts-suzhou-hero {
    min-height: auto;
    padding: 6.2rem 0 3rem;
  }
  .arts-suzhou-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,5,8,0.88), rgba(3,5,8,0.96)),
      linear-gradient(90deg, rgba(3,5,8,0.86), rgba(3,5,8,0.52));
  }
  .arts-suzhou-hero-inner,
  .arts-suzhou-model-layout,
  .arts-profile-layout {
    gap: 1rem;
  }
  .arts-suzhou-model-grid,
  .arts-suzhou-experience-grid,
  .arts-suzhou-project-grid,
  .arts-profile-proof-grid,
  .arts-suzhou-transfer-flow,
  .arts-suzhou-source-links {
    grid-template-columns: 1fr;
  }
  .arts-suzhou-feature-image,
  .arts-profile-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .arts-profile-metrics {
    grid-template-columns: 1fr;
  }
  .arts-suzhou-model-card,
  .arts-suzhou-capability,
  .arts-profile-proof,
  .arts-suzhou-step {
    min-height: 0;
  }
  .arts-suzhou-source-card {
    min-height: 64px;
  }
}

/* News */
.news-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.news-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/images/optimized/invest/gallery/gallery-sczone-destination.webp') center / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
}
.news-hero .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,12,13,0.92) 0%, rgba(3,12,13,0.72) 46%, rgba(3,12,13,0.34) 100%),
    linear-gradient(180deg, rgba(3,12,13,0.12), rgba(3,12,13,0.95));
}
.news-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline-start: 0;
}
.news-hero h1 {
  max-width: 820px;
  margin: 0.65rem 0 0.85rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
  text-wrap: balance;
}
.news-hero p {
  max-width: 720px;
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  color: rgba(245, 243, 236, 0.86);
}
.news-hero-note {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  max-width: 660px;
  border: 1px solid rgba(160,245,234,0.2);
  border-radius: 8px;
  background: rgba(8,17,15,0.42);
  backdrop-filter: blur(14px);
  font-size: 0.82rem !important;
}
.news-section {
  background:
    linear-gradient(180deg, rgba(6,17,15,0.94), rgba(7,27,36,0.88)),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover fixed;
}
.news-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}
.news-category-links a,
.news-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(160,245,234,0.2);
  border-radius: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  background: rgba(255,255,255,0.055);
}
.news-category-links a:hover,
.news-back-link:hover {
  color: var(--accent-lime);
  border-color: rgba(200,245,66,0.38);
  background: rgba(200,245,66,0.1);
}
.news-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.home-news-teaser { background: linear-gradient(180deg, var(--surface), var(--bg)); }
.home-news-more-wrap { text-align: center; margin-top: 1.5rem; }
.home-news-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1001;
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(8,17,15,0.2), rgba(8,17,15,0.96) 35%);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(160,245,234,0.18);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s var(--motion-ease), opacity 0.28s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.sticky-cta-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1 1 12rem;
}
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.82rem; }
body.has-sticky-cta { padding-bottom: 4.5rem; }
.kemet-fudan-strip {
  scroll-margin-top: 6rem;
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(11,61,46,0.55), rgba(8,17,15,0.98));
  border-top: 1px solid rgba(184,144,66,0.28);
}
.kemet-fudan-inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2rem;
  align-items: start;
}
.kemet-fudan-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.kemet-fudan-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.kemet-fudan-divider {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B89042, transparent);
}
.kemet-fudan-fudan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 19rem);
  padding: 0.75rem;
  border: 1px solid rgba(184,144,66,0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(245,248,246,0.9));
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.8);
  transform-style: preserve-3d;
}
.kemet-fudan-fudan-logo {
  display: block;
  width: min(100%, 17.5rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.14));
}
.kemet-fudan-fudan-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(160,245,234,0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
}
.kemet-fudan-fudan-label {
  font-size: 0.82rem;
  color: #19392f;
  max-width: 14rem;
  line-height: 1.35;
  font-weight: 600;
}
.kemet-fudan-candas {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  width: min(100%, 14rem);
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(24, 199, 216, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 42px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px) saturate(1.22);
}
.kemet-fudan-candas-kicker {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-weight: 700;
}
.kemet-fudan-candas-logo {
  width: min(100%, 11.5rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18));
}
.kemet-fudan-lead { color: var(--text-muted); max-width: 52rem; }
.kemet-fudan-campaign {
  font-weight: 600;
  color: #D8BD7A;
  margin: 0.75rem 0 1rem;
}
.kemet-fudan-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.kemet-fudan-timeline li {
  flex: 1 1 160px;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(160,245,234,0.16);
  background: rgba(255,255,255,0.04);
}
.kemet-fudan-edition-num {
  display: block;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  margin-bottom: 0.2rem;
}
.kemet-fudan-edition-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.kemet-fudan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.kemet-fudan-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 52rem;
}
@media (max-width: 767px) {
  .kemet-fudan-inner { grid-template-columns: 1fr; }
  .kemet-fudan-logos { flex-direction: column; justify-content: center; }
  .kemet-fudan-divider { width: 2.5rem; height: 1px; }
  .kemet-fudan-fudan { width: min(100%, 18rem); }
}
.news-featured-section { margin-bottom: 2.25rem; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.news-featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.news-card {
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.052));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 18px 54px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px) saturate(1.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  border-color: rgba(24,199,216,0.5);
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28), 0 0 28px rgba(24,199,216,0.14);
}
.news-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(8,17,15,0.65);
}
.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.news-card:hover .news-card-media img {
  transform: scale(1.04);
  filter: saturate(1.16) contrast(1.05);
}
.news-card-body {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 1rem;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  color: var(--accent-cyan);
}
.news-meta span {
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(70,199,217,0.2);
  border-radius: 6px;
  background: rgba(70,199,217,0.075);
}
.news-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  line-height: 1.35;
}
.news-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.news-card h3 a:hover { color: var(--accent-lime); }
.news-card p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}
.news-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}
.news-keywords span {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(200,245,66,0.2);
  color: var(--accent-lime);
  font-size: 0.65rem;
}
.news-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(160,245,234,0.12);
  font-size: 0.72rem;
  color: rgba(226,245,238,0.62);
}
.news-card-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
}
.news-group {
  margin-top: 2.5rem;
  scroll-margin-top: 96px;
}
.news-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(160,245,234,0.16);
}
.news-group-head h2 {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}
.news-group-head span {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(200,245,66,0.22);
  color: var(--accent-lime);
}
.news-detail-section {
  background:
    linear-gradient(180deg, rgba(6,17,15,0.94), rgba(7,27,36,0.88)),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover fixed;
}
.news-article {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}
.news-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}
.news-article-copy {
  padding: 1.25rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.052));
  backdrop-filter: blur(18px) saturate(1.2);
}
.news-article h1 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.12;
  text-wrap: balance;
}
.news-article-summary {
  color: var(--accent-cyan);
  font-size: 1rem;
  line-height: 1.75;
}
.news-article-copy p {
  margin: 0.85rem 0;
  color: var(--text-muted);
  line-height: 1.8;
}
.news-article-media {
  position: sticky;
  top: 92px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: rgba(8,17,15,0.65);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
}
.news-article-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}
.news-source-box {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(160,245,234,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}
.news-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  background: rgba(70,199,217,0.07);
}
.news-source-links a:hover {
  color: var(--accent-lime);
  border-color: rgba(200,245,66,0.32);
  background: rgba(200,245,66,0.09);
}
.news-source-box strong,
.news-article-keywords strong {
  color: var(--accent-lime);
}
.news-article-keywords {
  align-items: center;
  margin-top: 1rem;
}
.news-video-block {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 18px 48px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px) saturate(1.22);
}
.news-video-copy h2 {
  margin: 0.55rem 0 0.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.25;
}
.news-video-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(200,245,66,0.28);
  color: var(--accent-lime);
  text-decoration: none;
  background: rgba(200,245,66,0.08);
}
.news-video-preview {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.16);
  border-radius: 8px;
  background: rgba(8,17,15,0.65);
  box-shadow: 0 14px 38px rgba(0,0,0,0.24);
}
.news-video-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.news-video-preview:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}
.news-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8,17,15,0.78);
  border: 2px solid rgba(200,245,66,0.72);
  box-shadow: 0 0 32px rgba(200,245,66,0.28);
}
.news-video-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--accent-lime);
}
.news-activities-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(160,245,234,0.12);
}
.activity-video-head {
  align-items: end;
}
.activity-video-head p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.activity-video-head > a,
.activity-video-actions > a,
.activity-video-embed summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(200,245,66,0.28);
  border-radius: 8px;
  color: var(--accent-lime);
  text-decoration: none;
  background: rgba(200,245,66,0.08);
  cursor: pointer;
}
.activity-video-head > a:hover,
.activity-video-actions > a:hover,
.activity-video-embed summary:hover {
  border-color: rgba(200,245,66,0.5);
  background: rgba(200,245,66,0.14);
  box-shadow: 0 0 24px rgba(200,245,66,0.12);
}
.activity-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.activity-video-card {
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)),
    radial-gradient(circle at 18% 0%, rgba(70,199,217,0.16), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 48px rgba(0,0,0,0.22);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.activity-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,245,66,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 24px 64px rgba(0,0,0,0.3);
}
.activity-video-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(3,12,13,0.76);
}
.activity-video-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.activity-video-card:hover .activity-video-media img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
}
.activity-video-play {
  position: absolute;
  inset: 0;
  width: 58px;
  height: 58px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid rgba(200,245,66,0.74);
  background: rgba(3,12,13,0.76);
  box-shadow: 0 0 36px rgba(200,245,66,0.28);
}
.activity-video-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--accent-lime);
}
.activity-video-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}
.activity-video-copy h3 {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.35;
  color: var(--text);
}
.activity-video-copy p {
  margin: 0;
  color: rgba(226,245,238,0.76);
  line-height: 1.7;
}
.activity-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: flex-start;
}
.activity-video-embed {
  min-width: min(100%, 220px);
}
.activity-video-embed summary {
  list-style: none;
}
.activity-video-embed summary::-webkit-details-marker {
  display: none;
}
.activity-video-embed .news-video-iframe-wrap {
  margin-top: 0.75rem;
}
.activity-video-source {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.news-photo-count {
  position: absolute;
  inset-inline-end: 0.65rem;
  bottom: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(3, 12, 13, 0.78);
  color: var(--accent-lime);
  font-size: 0.68rem;
  border: 1px solid rgba(200, 245, 66, 0.28);
}
.news-card-media { position: relative; }
.news-article-hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0 0 16px 16px;
}
.news-article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.news-article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,12,13,0.15) 0%, rgba(3,12,13,0.55) 45%, rgba(3,12,13,0.95) 100%),
    linear-gradient(90deg, rgba(3,12,13,0.88) 0%, rgba(3,12,13,0.35) 70%, rgba(3,12,13,0.2) 100%);
}
.news-article-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 3rem;
  max-width: 920px;
}
.news-article-hero-content h1 {
  margin: 0.65rem 0 0.85rem;
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  text-wrap: balance;
  color: #fff;
}
.news-article-hero-content .news-article-summary {
  max-width: 760px;
  color: rgba(245, 243, 236, 0.9);
}
.news-article-body-wrap {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}
.news-gallery-block h2,
.news-related-block h2 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin: 0 0 1rem;
}
.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.news-gallery-thumb {
  padding: 0;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8,17,15,0.55);
  cursor: zoom-in;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.news-gallery-thumb:hover {
  border-color: rgba(200,245,66,0.45);
  transform: translateY(-2px);
}
.news-gallery-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.news-related-block {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(160,245,234,0.12);
}
.news-source-box a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.news-card {
  position: relative;
  isolation: isolate;
}
.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 32%),
    radial-gradient(circle at 20% 0%, rgba(24,199,216,0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.news-card:hover::before {
  opacity: 1;
}
.news-card--featured {
  border-color: rgba(200,245,66,0.24);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06)),
    linear-gradient(45deg, rgba(24,199,216,0.08), rgba(200,245,66,0.05));
}
.news-card-category {
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 0.7rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(3,12,13,0.72);
  color: rgba(245,243,236,0.94);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}
.news-card-footer > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(70,199,217,0.22);
  border-radius: 999px;
  background: rgba(70,199,217,0.07);
}
.news-read-link:hover {
  border-color: rgba(200,245,66,0.38);
  background: rgba(200,245,66,0.1);
}
.news-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.25rem;
  align-items: start;
}
.news-article-copy {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 2rem);
}
.news-article-copy::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-lime), var(--accent-cyan));
}
.news-article-copy p {
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: rgba(226,245,238,0.78);
}
.news-article-copy p:first-of-type {
  color: rgba(245,243,236,0.92);
  font-size: clamp(1.06rem, 1.55vw, 1.2rem);
}
.news-article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.75rem;
}
.news-aside-card,
.news-source-box,
.news-article-keywords {
  border-color: rgba(160,245,234,0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 42px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px) saturate(1.16);
}
.news-aside-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
}
.news-aside-card strong {
  color: var(--accent-lime);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.news-aside-card span {
  color: rgba(245,243,236,0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}
.news-article-keywords {
  padding: 0.85rem;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
}
.news-gallery-block,
.news-related-block {
  padding: 1rem;
  border: 1px solid rgba(160,245,234,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
}
.news-admin-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}
.news-admin-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
}
.news-admin-item h3 {
  margin: 0;
  font-size: 0.92rem;
}
.news-admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-admin-thumb-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.news-admin-thumb-preview img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.admin-lang-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.admin-lang-tabs button {
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
}
.admin-lang-tabs button.active {
  border-color: rgba(200,245,66,0.45);
  color: var(--accent-lime);
  background: rgba(200,245,66,0.08);
}
.admin-lang-panel.hidden { display: none; }

/* Sponsors */
.sponsors-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,12,13,0.94), rgba(7,27,36,0.9)),
    radial-gradient(circle at 12% 18%, rgba(24,199,216,0.16), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(217,198,163,0.12), transparent 22rem);
}
.sponsors-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(24,199,216,0.11) 43%, transparent 48%),
    linear-gradient(135deg, transparent 0 64%, rgba(217,198,163,0.12) 65%, transparent 70%);
  opacity: 0.75;
}
.sponsors-head,
.sponsors-grid,
.sponsors-note {
  position: relative;
  z-index: 1;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.sponsor-card {
  display: grid;
  grid-template-rows: 120px 1fr;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(160,245,234,0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    rgba(5,16,17,0.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 18px 54px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px) saturate(1.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.sponsor-card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(24,199,216,0.52);
  box-shadow: 0 24px 68px rgba(0,0,0,0.3), 0 0 34px rgba(24,199,216,0.16);
}
.sponsor-logo-panel {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 1rem;
  border-bottom: 1px solid rgba(160,245,234,0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(245,248,246,0.9));
}
.sponsor-logo {
  display: block;
  max-width: 82%;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.14));
}
.sponsor-card--arts .sponsor-logo-panel,
.sponsor-card--kemet .sponsor-logo-panel,
.sponsor-card--gcl .sponsor-logo-panel {
  background: linear-gradient(145deg, rgba(7,27,36,0.94), rgba(5,16,17,0.9));
}
.sponsor-card--arts .sponsor-logo,
.sponsor-card--kemet .sponsor-logo,
.sponsor-card--gcl .sponsor-logo {
  max-height: 86px;
}
.sponsor-card--weacan .sponsor-logo,
.sponsor-card--candas .sponsor-logo {
  max-width: 88%;
  max-height: 72px;
}
.sponsor-copy {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sponsor-role-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.sponsor-role,
.sponsor-temp {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.2rem 0.52rem;
  border: 1px solid rgba(200,245,66,0.2);
  border-radius: 999px;
  color: var(--accent-lime);
  background: rgba(200,245,66,0.075);
  font-size: 0.68rem;
  font-weight: 700;
}
.sponsor-temp {
  border-color: rgba(217,198,163,0.28);
  color: var(--gold);
  background: rgba(217,198,163,0.08);
}
.sponsor-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}
.sponsor-copy p {
  margin: 0;
  color: rgba(226,245,238,0.76);
  font-size: 0.88rem;
  line-height: 1.65;
}
.sponsors-note {
  margin: 1.25rem 0 0;
  color: rgba(226,245,238,0.66);
  font-size: 0.82rem;
}
@media (max-width: 1100px) {
  .sponsors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .sponsors-grid { grid-template-columns: 1fr; }
  .sponsor-card {
    grid-template-rows: 104px auto;
    min-height: 0;
  }
  .sponsor-logo { max-height: 66px; }
}

/* Footer */
.footer { text-align: center; padding: 2rem; background: var(--green-900); color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.footer-partners { margin-top: 0.35rem; font-size: 0.72rem; opacity: 0.5; }

/* Leaflet */
.leaflet-container { font-family: inherit; }
.leaflet-popup-content-wrapper { background: var(--surface); border-radius: 10px; box-shadow: var(--shadow-lg); }
.leaflet-popup-content { margin: 0.6rem 0.85rem; font-size: 0.8rem; }
.leaflet-control-zoom a { background: var(--surface) !important; color: var(--text) !important; border-color: var(--border) !important; }

/* RTL/LTR */
html[dir="ltr"] .carousel-btn.prev { transform: scaleX(-1); }
html[dir="ltr"] .carousel-btn.next { transform: scaleX(-1); }

/* === Redesign components === */
.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 0.5rem; inset-inline-start: 0.5rem; z-index: 10002;
  width: auto; height: auto; padding: 0.75rem 1rem; margin: 0; clip: auto;
  background: var(--accent-lime); color: var(--green-dark); font-weight: 600;
  border-radius: 8px; text-decoration: none;
}
:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 2px; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 44px; height: 44px; border-radius: 8px; cursor: pointer;
}
.nav-toggle-icon {
  display: block; width: 20px; height: 2px; background: currentColor; margin: 0 auto;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.nav-menu { display: flex; align-items: center; gap: 1rem; }
.topnav.scrolled .nav-inner { padding-block: 0.45rem; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; padding: 0;
}
.logo-partners { font-size: 0.6rem; opacity: 0.55; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; margin-bottom: 1rem;
  border: 1px solid rgba(200, 245, 66, 0.35); border-radius: 999px;
  background: rgba(8, 17, 15, 0.55); font-size: 0.78rem; color: var(--accent-lime);
}
.hero-badge .logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; border-radius: 6px;
  background: transparent; border: none; padding: 0;
}
.home-invest-strip {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border-block: 1px solid var(--border);
}
.home-invest-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.home-invest-copy { max-width: 640px; }
.home-invest-copy h2 { margin: 0.35rem 0 0.5rem; font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.home-invest-copy p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }
.home-invest-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.invest-benefits-section { margin-top: 0; }
.kemet-theme .invest-benefits-section.benefits-section {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  color: var(--text);
}
.kemet-theme .invest-benefits-section .section-head h2 { color: var(--text); }
.kemet-theme .invest-benefits-section .benefits-table { color: var(--text); }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--accent-lime); margin-bottom: 0.75rem; }
.hero-lead { font-size: 1rem; opacity: 0.9; margin-bottom: 1.75rem; max-width: 640px; margin-inline: auto; }
.hero-concept-note { font-size: 0.72rem; opacity: 0.6; margin-top: 1rem; }
.hero-stat-vision .vision-badge {
  display: block; font-size: 0.62rem; color: var(--accent-cyan); margin-top: 0.2rem;
}
.stat-exact { display: block; font-size: 0.62rem; opacity: 0.65; }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.3);
}
.btn-text { background: transparent; color: var(--accent-lime); padding: 0.75rem 1rem; text-decoration: underline; }
.btn-outline {
  background: transparent; color: var(--green-deep); border: 1px solid var(--green-deep);
  display: inline-flex; padding: 0.6rem 1.2rem; border-radius: 10px; font-weight: 600;
  text-decoration: none; font-family: inherit;
}

.loc-icon, .highlight-icon, .sector-icon, .zone-detail-icon {
  width: 28px; height: 28px; color: var(--green-deep);
}
.loc-icon svg, .highlight-icon svg, .sector-icon svg, .zone-detail-icon svg { width: 100%; height: 100%; }

.transport-diagram {
  background: var(--green-dark); color: white; border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1rem;
}
.transport-diagram h3 { font-size: 0.9rem; color: var(--accent-lime); margin-bottom: 1rem; }
.transport-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.transport-mode {
  text-align: center; padding: 0.75rem; background: rgba(255,255,255,0.06);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
}
.transport-mode-icon { width: 32px; height: 32px; margin: 0 auto 0.5rem; color: var(--accent-cyan); }
.transport-mode-icon svg { width: 100%; height: 100%; }

.film-poster-wrap { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.film-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.film-play-btn {
  position: absolute; inset: 0; margin: auto; width: fit-content; height: fit-content;
  display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.5rem;
  background: rgba(8,17,15,0.75); color: white; border: 2px solid var(--accent-lime);
  border-radius: 999px; cursor: pointer; font-family: inherit; font-weight: 600; min-height: 44px;
}
.film-play-icon { width: 20px; height: 20px; color: var(--accent-lime); }
.film-play-icon svg { width: 100%; height: 100%; }
.concept-badge {
  position: absolute; bottom: 0.75rem; inset-inline-end: 0.75rem;
  background: rgba(8,17,15,0.7); color: var(--sand); font-size: 0.7rem;
  padding: 0.3rem 0.65rem; border-radius: 6px;
}

.vision-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.vision-counter { font-size: 0.8rem; color: var(--text-muted); }
.carousel-icon-prev svg, .carousel-icon-next svg { width: 20px; height: 20px; }

.map-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--text-muted); z-index: 5;
}
.map-loading.hidden { display: none; }
.map-list-panel { display: none; }
.map-zone-list { list-style: none; max-height: 200px; overflow-y: auto; }
.map-zone-btn {
  width: 100%; text-align: start; background: transparent; border: none; padding: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-family: inherit;
  font-size: 0.78rem; min-height: 44px; border-radius: 6px;
}
.map-zone-btn:hover, .map-zone-btn.is-selected { background: var(--surface-2); }
.zone-swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.btn-map-reset {
  width: 100%; margin-top: 0.75rem; padding: 0.55rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--surface); cursor: pointer;
  font-family: inherit; min-height: 44px;
}

.plan-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }

.zones-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
  margin: 0 0 1.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(240,249,244,0.58)),
    radial-gradient(circle at 0% 0%, rgba(70,199,217,0.18), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(185,231,93,0.16), transparent 38%);
  box-shadow: 0 18px 48px rgba(8,17,15,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.zones-boundary-media {
  position: relative;
  display: block;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8,17,15,0.12);
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-align: start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.zones-boundary-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--motion-ease), filter 0.45s var(--motion-ease);
}
.zones-boundary-media:hover img,
.zones-boundary-media:focus-visible img {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.02);
}
.zones-boundary-badge {
  position: absolute;
  inset-inline-start: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(8,17,15,0.76);
  color: white;
  font-size: 0.72rem;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.zones-boundary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem;
}
.zones-boundary-kicker {
  width: fit-content;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(70,199,217,0.14);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}
.zones-boundary-copy h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.22;
}
.zones-boundary-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.zones-boundary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.zones-boundary-meta span {
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(8,17,15,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.58);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}

.sector-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.sector-chip {
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; font-family: inherit; min-height: 44px;
}
.sector-chip.active { background: var(--green-deep); color: white; border-color: var(--green-deep); }
.sectors-overview { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.sector-card {
  background: rgba(255,255,255,0.76); border: 1px solid rgba(255,255,255,0.72); border-radius: 8px;
  overflow: hidden; position: relative; box-shadow: 0 14px 34px rgba(8,17,15,0.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform-style: preserve-3d; transition: transform 0.28s var(--motion-ease), box-shadow 0.28s var(--motion-ease), border-color 0.28s var(--motion-ease);
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(8,17,15,0.14); border-color: rgba(70,199,217,0.45); }
.sector-card-accent { height: 4px; }
.sector-card-thumb { height: 168px; overflow: hidden; background: #EEF3EA; border-bottom: 1px solid rgba(8,17,15,0.08); }
.sector-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.38s var(--motion-ease); }
.sector-card:hover .sector-card-thumb img { transform: scale(1.04); }
.sector-card-body { padding: 1rem; position: relative; z-index: 1; }
.sector-card-head { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.5rem; }
.sector-card-head h3 { font-size: 0.9rem; line-height: 1.35; }
.sector-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin: 0.75rem 0; }
.sector-metric { text-align: center; padding: 0.4rem 0.25rem; background: var(--surface-2); border-radius: 8px; border: 1px solid var(--border); }
.sector-metric-val { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.sector-metric-lbl { display: block; font-size: 0.65rem; color: var(--text-muted); margin-top: 0.15rem; }
.sector-expand-btn {
  width: 100%; padding: 0.55rem; border: 1px solid var(--border); background: var(--surface-2);
  border-radius: 8px; cursor: pointer; font-family: inherit; min-height: 44px;
}
.sector-expand-btn:hover { border-color: var(--accent-cyan); background: rgba(70,199,217,0.12); }

.sector-drawer { position: fixed; inset: 0; z-index: 2000; }
.sector-drawer.hidden { display: none; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(8,17,15,0.5); }
.drawer-panel {
  position: absolute; inset-inline: 0; bottom: 0; max-height: 85vh; overflow-y: auto;
  background: var(--surface); border-radius: 16px 16px 0 0; padding: 1.25rem;
}
.drawer-close {
  position: absolute; top: 0.75rem; inset-inline-end: 0.75rem; width: 44px; height: 44px;
  border: none; background: var(--surface-2); border-radius: 50%; cursor: pointer;
}

.economic-comparison { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.econ-compare-row h4 { font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--green-deep); }
.econ-bar-group { display: grid; grid-template-columns: 100px 1fr auto; gap: 0.5rem; align-items: center; margin-bottom: 0.35rem; }
.econ-bar-track { height: 8px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.econ-bar { height: 100%; border-radius: 4px; }
.econ-bar-p1 { background: var(--sand); }
.econ-bar-fv { background: var(--accent-lime); }
.econ-label, .econ-val { font-size: 0.75rem; }
.benefits-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

.modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; }
.modal.hidden { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,17,15,0.8); }
.modal-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.modal-close {
  position: absolute; top: -2.5rem; inset-inline-end: 0; width: 44px; height: 44px;
  border: none; background: transparent; color: white; cursor: pointer;
}
.video-modal-content .main-video { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); }
body.modal-open, body.nav-open, body.drawer-open { overflow: hidden; }

.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  border: none; background: rgba(255,255,255,0.15); color: white; border-radius: 50%; cursor: pointer;
}
.lightbox-prev { inset-inline-start: 1rem; }
.lightbox-next { inset-inline-end: 1rem; }
.lightbox-counter { position: absolute; bottom: 1rem; inset-inline-start: 50%; transform: translateX(-50%); color: white; font-size: 0.8rem; }

.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; text-align: start; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-links a, .footer-lang a, .footer-pdf { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.8rem; }
.footer-lang { display: flex; gap: 0.75rem; }

@media (min-width: 768px) {
  .sector-drawer .drawer-panel { display: none; }
  .sector-drawer:not(.hidden) .drawer-backdrop { display: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed; top: 56px; left: 0; right: 0; width: 100vw; background: rgba(8,17,15,0.98);
    flex-direction: column; padding: 1rem; transform: translateY(-120%);
    transition: transform 0.25s ease; z-index: 999;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 34px rgba(0,0,0,0.18);
  }
  .nav-links::before { animation-duration: 9s; opacity: 0.32; }
  .nav-links a { display: block; padding: 0.75rem; min-height: 44px; }
  .nav-group,
  .nav-root,
  .nav-group summary {
    width: 100%;
  }
  .nav-root,
  .nav-group summary {
    justify-content: space-between;
    padding: 0.75rem;
    min-height: 44px;
    border: 1px solid rgba(160,245,234,0.08);
    background: rgba(255,255,255,0.035);
  }
  .nav-root:hover,
  .nav-group summary:hover,
  .nav-group[open] summary {
    transform: translateY(-1px);
  }
  .nav-dropdown {
    position: relative;
    top: auto;
    inset-inline: auto;
    min-width: 0;
    max-width: 100%;
    margin: 0.25rem 0 0.5rem;
    padding: 0.45rem 0.45rem 0.45rem 1.05rem;
    border-color: rgba(160,245,234,0.12);
    box-shadow: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    animation: navTreeMobileOpen 0.22s var(--motion-ease) both;
  }
  html[dir="rtl"] .nav-dropdown {
    padding: 0.45rem 1.05rem 0.45rem 0.45rem;
  }
  .nav-dropdown::before {
    top: 0.6rem;
    bottom: 0.6rem;
  }
  .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
  }
  .nav-tree-link:hover,
  .nav-tree-link.active,
  html[dir="rtl"] .nav-tree-link:hover,
  html[dir="rtl"] .nav-tree-link.active {
    transform: translateY(-1px);
  }
  .lang-switch {
    align-self: stretch;
    justify-content: center;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .video-layout { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; height: auto; }
  .sidebar { max-height: 280px; border-inline-start: none; border-bottom: 1px solid var(--border); }
  .map-container { height: 55vh; min-height: 360px; }
  .master-plan-bar { grid-template-columns: repeat(2, 1fr); }
  .zones-boundary { grid-template-columns: 1fr; padding: 0.7rem; }
  .zones-boundary-media,
  .zones-boundary-media img { min-height: 230px; }
  .zones-boundary-copy { padding: 0.25rem; }
  .benefits-tables { grid-template-columns: 1fr; }
  .feasibility-grid { grid-template-columns: 1fr; }
  .feasibility-metrics { grid-template-columns: 1fr; }
  .invest-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .transport-modes { grid-template-columns: 1fr; }
  .econ-bar-group { grid-template-columns: 1fr; }
  .timeline-track { flex-direction: column; align-items: stretch; }
  .timeline-item { width: 100%; }
  .map-list-panel { display: block; }
  .news-hero {
    min-height: auto;
    padding: 6.5rem 0 3rem;
  }
  .news-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,12,13,0.86), rgba(3,12,13,0.94)),
      linear-gradient(90deg, rgba(3,12,13,0.85), rgba(3,12,13,0.45));
  }
  .news-category-links {
    gap: 0.4rem;
  }
  .news-category-links a {
    flex: 1 1 calc(50% - 0.4rem);
    justify-content: center;
    text-align: center;
  }
  .news-grid,
  .news-featured-grid {
    grid-template-columns: 1fr;
  }
  .news-card-body {
    min-height: auto;
  }
  .news-article {
    width: min(100% - 2rem, 720px);
  }
  .news-article-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-article-shell {
    grid-template-columns: 1fr;
  }
  .news-article-aside {
    position: static;
    order: -1;
  }
  .news-article-media {
    position: static;
    order: -1;
  }
  .news-article-copy {
    padding: 1rem;
  }
  .news-article-copy::before {
    top: 1rem;
    bottom: 1rem;
  }
  .news-card-footer > span {
    white-space: normal;
  }
  .news-video-block {
    grid-template-columns: 1fr;
  }
  .news-video-preview {
    order: -1;
  }
}

@keyframes navTreeMobileOpen {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 390px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hero h1 { font-size: 1.5rem; }
  .zones-boundary-media,
  .zones-boundary-media img { min-height: 190px; }
  .zones-boundary-meta span { width: 100%; }
  .sectors-overview { grid-template-columns: 1fr; }
  .sector-metrics { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .news-category-links a { flex-basis: 100%; }
}

/* ═══ KEMET Luxury Industrial Dark Theme ═══ */
.kemet-theme {
  --bg: #08110F;
  --surface: #0B3D2E;
  --surface-2: #0F2A22;
  --dark: #08110F;
  --text: #F5F3EC;
  --text-muted: #D9C6A3;
  --border: rgba(185, 231, 93, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  background: var(--bg);
  color: var(--text);
}

.kemet-theme body::before { background: var(--bg); }

.kemet-theme .topnav {
  background: rgba(8, 17, 15, 0.92);
  border-bottom-color: var(--border);
}
.kemet-theme .topnav.scrolled {
  background: rgba(8, 17, 15, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.kemet-theme .logo-mark {
  background: transparent;
  border: none;
}
.kemet-theme .nav-links a:hover,
.kemet-theme .nav-links a.active,
.kemet-theme .nav-group summary:hover,
.kemet-theme .nav-group[open] summary {
  background: rgba(185, 231, 93, 0.12);
  color: var(--accent-lime);
}
.kemet-theme .lang-btn.active { background: var(--accent-lime); color: var(--green-dark); }
.kemet-theme .nav-menu {
  background: rgba(8, 17, 15, 0.98);
}

.kemet-theme .scroll-progress {
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan));
}

.kemet-theme .hero-overlay {
  background: linear-gradient(180deg, rgba(8,17,15,0.82) 0%, rgba(8,17,15,0.65) 45%, rgba(8,17,15,0.94) 100%);
}
.kemet-theme .hero-eyebrow { color: var(--accent-lime); }
.kemet-theme .hero-lead { color: var(--text-muted); }
.kemet-theme .hero-stat {
  background: rgba(11, 61, 46, 0.55);
  border-color: var(--border);
}
.kemet-theme .hero-stat .val { color: var(--accent-lime); }
.kemet-theme .vision-badge { color: var(--accent-cyan); }
.kemet-theme .btn-primary {
  background: var(--accent-lime);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(185, 231, 93, 0.25);
}
.kemet-theme .btn-primary:hover { background: #c8f070; }
.kemet-theme .btn-secondary {
  background: rgba(70, 199, 217, 0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.kemet-theme .btn-text { color: var(--accent-lime); }
.kemet-theme .btn-outline {
  color: var(--accent-lime);
  border-color: var(--accent-lime);
}

.kemet-theme .section { background: var(--bg); }
.kemet-theme .section:nth-child(even) { background: var(--surface-2); }
.kemet-theme .section-tag {
  background: rgba(185, 231, 93, 0.1);
  color: var(--accent-lime);
  border-color: var(--border);
}
.kemet-theme .section-head h2 { color: var(--text); }
.kemet-theme .section-head p { color: var(--text-muted); }

.kemet-theme .loc-card {
  background: var(--surface);
  border-color: var(--border);
}
.kemet-theme .loc-card .dist { color: var(--accent-cyan); }
.kemet-theme .loc-icon { color: var(--accent-lime); }

.kemet-theme .transport-diagram,
.kemet-theme .foundation-card {
  background: var(--surface);
  border: 1px solid var(--border);
}
.kemet-theme .transport-diagram h3,
.kemet-theme .foundation-card h3 { color: var(--accent-lime); }
.kemet-theme .transport-mode {
  background: rgba(8, 17, 15, 0.4);
  border-color: var(--border);
}
.kemet-theme .transport-mode-icon { color: var(--accent-cyan); }
.kemet-theme .cluster-tag {
  background: rgba(185, 231, 93, 0.1);
  color: var(--accent-lime);
  border: 1px solid var(--border);
}

.kemet-theme .film-poster-wrap { border: 1px solid var(--border); }
.kemet-theme .film-play-btn {
  background: rgba(8, 17, 15, 0.85);
  border-color: var(--accent-lime);
}
.kemet-theme .concept-badge { background: rgba(8, 17, 15, 0.8); color: var(--sand); }

.kemet-theme .vision-stage { border-color: var(--border); }
.kemet-theme .vision-caption { background: rgba(8, 17, 15, 0.85); }
.kemet-theme .vision-caption h3 { color: var(--text); }
.kemet-theme .vision-angle { color: var(--accent-cyan); }
.kemet-theme .carousel-btn {
  background: var(--surface);
  border-color: var(--border);
  color: var(--accent-lime);
}
.kemet-theme .vision-dot.active { background: var(--accent-lime); }

.kemet-theme .map-layout { border-color: var(--border); }
.kemet-theme .sidebar {
  background: var(--surface);
  border-color: var(--border);
}
.kemet-theme .panel { border-color: var(--border); }
.kemet-theme .panel h3 { color: var(--accent-lime); }
.kemet-theme .map-container { border-color: var(--border); }
.kemet-theme .map-loading { background: var(--surface-2); color: var(--text-muted); }
.kemet-theme .master-plan-bar {
  background: var(--surface);
  border: 1px solid var(--border);
}
.kemet-theme .master-val { color: var(--accent-lime); }
.kemet-theme .master-lbl { color: var(--text-muted); }
.kemet-theme .btn-map-reset {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}

.kemet-theme .plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
}
.kemet-theme .plan-filter {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.kemet-theme .plan-filter.active {
  background: var(--accent-lime);
  color: var(--green-dark);
  border-color: var(--accent-lime);
}

.kemet-theme .sector-chip {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.kemet-theme .sector-chip.active {
  background: var(--accent-lime);
  color: var(--green-dark);
}
.kemet-theme .sector-card {
  background: var(--surface);
  border-color: var(--border);
}
.kemet-theme .highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.kemet-theme .highlight-card h3 { color: var(--text); }
.kemet-theme .highlight-card .sub { color: var(--accent-cyan); }
.kemet-theme .highlight-icon { color: var(--accent-lime); }
.kemet-theme .sector-metric { background: rgba(8, 17, 15, 0.4); border-color: var(--border); }
.kemet-theme .sector-metric-val { color: var(--accent-lime); }

.kemet-theme .sector-expand-btn {
  background: rgba(185, 231, 93, 0.08);
  border-color: var(--border);
  color: var(--accent-lime);
}

.kemet-theme .phase-summary-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.kemet-theme .phase-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.kemet-theme .phase-card-p1 {
  background: rgba(217, 198, 163, 0.08);
  border-color: rgba(217, 198, 163, 0.25);
}
.kemet-theme .phase-card-final {
  background: rgba(185, 231, 93, 0.06);
  border-color: rgba(185, 231, 93, 0.25);
}
.kemet-theme .phase-card h3 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.kemet-theme .phase-card-p1 h3 { color: var(--sand); }
.kemet-theme .phase-card-final h3 { color: var(--accent-lime); }
.kemet-theme .phase-metrics { display: flex; flex-wrap: wrap; gap: 1rem; }
.kemet-theme .phase-metric .val { font-size: 1.25rem; font-weight: 700; display: block; }
.kemet-theme .phase-metric .lbl { font-size: 0.7rem; color: var(--text-muted); }
.kemet-theme .phase-card-p1 .val { color: var(--sand); }
.kemet-theme .phase-card-final .val { color: var(--accent-lime); }

.kemet-theme .econ-compare-row h4 { color: var(--accent-cyan); }
.kemet-theme .econ-bar-track { background: rgba(8, 17, 15, 0.5); }
.kemet-theme .econ-bar-p1 { background: var(--sand); }
.kemet-theme .econ-bar-fv { background: var(--accent-lime); }

.kemet-theme .benefits-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.kemet-theme .benefits-table-wrap h3 { color: var(--accent-lime); margin-bottom: 1rem; }
.kemet-theme .benefits-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.kemet-theme .benefits-table th,
.kemet-theme .benefits-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: start;
}
.kemet-theme .benefits-table th { color: var(--accent-cyan); font-weight: 600; }
.kemet-theme .benefits-table tr.total { font-weight: 700; color: var(--accent-lime); }
.kemet-theme .benefits-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.kemet-theme .timeline-track { display: flex; gap: 0; justify-content: center; }
.kemet-theme .timeline-item {
  flex: 1;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-inline-end: none;
  text-align: center;
}
.kemet-theme .timeline-item:first-child { border-start-start-radius: var(--radius); border-end-start-radius: var(--radius); }
.kemet-theme .timeline-item:last-child { border-inline-end: 1px solid var(--border); border-start-end-radius: var(--radius); border-end-end-radius: var(--radius); }
.kemet-theme .timeline-item .year { color: var(--accent-lime); font-weight: 700; display: block; margin-bottom: 0.35rem; }
.kemet-theme .timeline-item.pending { opacity: 0.65; }

.kemet-theme .footer {
  background: var(--green-dark);
  border-top: 1px solid var(--border);
}
.kemet-theme .drawer-panel { background: var(--surface); color: var(--text); }
.kemet-theme .zone-industry-tag {
  background: rgba(70, 199, 217, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--border);
}
.kemet-theme .status-badge { color: var(--sand); }

.kemet-theme .leaflet-popup-content-wrapper { background: var(--surface); color: var(--text); }
.kemet-theme .leaflet-control-zoom a { background: var(--surface) !important; color: var(--text) !important; }

@media (max-width: 900px) {
  .kemet-theme .phase-summary-strip { grid-template-columns: 1fr; }
  .kemet-theme .benefits-tables { grid-template-columns: 1fr; }
  .kemet-theme .timeline-track { flex-direction: column; }
  .kemet-theme .timeline-item {
    border-inline-end: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
  }
}

/* Modern glass-energy redesign layer */
:root {
  --carbon: #06110f;
  --midnight: #071b24;
  --midnight-2: #0a2932;
  --emerald: #00a676;
  --electric-cyan: #18c7d8;
  --solar-lime: #c8f542;
  --amber: #ffb020;
  --mist: #f4f8f7;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --glass-line: rgba(160, 245, 234, 0.24);
  --depth-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --energy-glow: 0 0 28px rgba(24, 199, 216, 0.28), 0 0 48px rgba(200, 245, 66, 0.12);
}

body.kemet-theme {
  --bg: var(--carbon);
  --surface: rgba(11, 31, 34, 0.76);
  --surface-2: rgba(7, 27, 36, 0.78);
  --green-deep: #08342d;
  --green-dark: var(--carbon);
  --green-900: var(--carbon);
  --green-800: #0a2b27;
  --green-700: var(--emerald);
  --green-600: var(--emerald);
  --green-500: var(--solar-lime);
  --green-400: var(--solar-lime);
  --accent-lime: var(--solar-lime);
  --accent-cyan: var(--electric-cyan);
  --teal: var(--electric-cyan);
  --sand: var(--amber);
  --text: #f6fffb;
  --text-muted: rgba(226, 245, 238, 0.74);
  --border: var(--glass-line);
  --shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
  --shadow-lg: var(--depth-shadow);
  --radius: 16px;
  background:
    radial-gradient(circle at 18% 10%, rgba(24, 199, 216, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 20%, rgba(200, 245, 66, 0.13), transparent 30rem),
    linear-gradient(180deg, var(--midnight) 0%, var(--carbon) 58%, #05100d 100%);
}

body.kemet-theme::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.28), rgba(6, 17, 15, 0.94)),
    url('assets/images/optimized/generated/glass-energy-background.webp') center top / cover fixed no-repeat;
  opacity: 0.34;
}

body.kemet-theme::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(160, 245, 234, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 245, 234, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 74%, transparent);
}

.kemet-theme .topnav {
  background: rgba(5, 16, 17, 0.62);
  border-bottom: 1px solid rgba(160, 245, 234, 0.16);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(1.35);
}

.kemet-theme .logo-mark {
  position: relative;
  width: 142px;
  height: 50px;
  border-radius: 12px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateZ(0);
}

.kemet-theme .logo-mark::before {
  display: none;
}

.kemet-theme .logo-mark-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.kemet-theme .logo:hover .logo-mark {
  transform: translateY(-1px);
  box-shadow: none;
}

.kemet-theme .hero-badge .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0;
  padding: 0;
  flex: 0 0 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.kemet-theme .nav-links a,
.kemet-theme .nav-group summary,
.kemet-theme .lang-btn,
.kemet-theme .btn,
.kemet-theme .btn-map-reset,
.kemet-theme .map-toolbar button {
  transition: transform 0.22s var(--motion-ease), box-shadow 0.22s var(--motion-ease), border-color 0.22s, background 0.22s, color 0.22s;
}

.kemet-theme .nav-links a:hover,
.kemet-theme .nav-links a.active,
.kemet-theme .nav-group summary:hover,
.kemet-theme .nav-group[open] summary,
.kemet-theme .lang-btn.active {
  background: linear-gradient(145deg, rgba(24, 199, 216, 0.2), rgba(200, 245, 66, 0.13));
  color: var(--solar-lime);
  border-color: rgba(200, 245, 66, 0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 12px 30px rgba(0,0,0,0.24), var(--energy-glow);
}

.kemet-theme .nav-dropdown {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    rgba(5, 16, 17, 0.96);
  border-color: rgba(160, 245, 234, 0.22);
  box-shadow: var(--depth-shadow), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.kemet-theme .nav-links {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.028)),
    rgba(3,12,13,0.54);
  border-color: rgba(160,245,234,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 40px rgba(0,0,0,0.28);
}

.kemet-theme .nav-task-index {
  color: var(--solar-lime);
  background: linear-gradient(145deg, rgba(200,245,66,0.16), rgba(24,199,216,0.08));
  box-shadow: inset 0 0 0 1px rgba(200,245,66,0.22), 0 0 18px rgba(200,245,66,0.08);
}

.kemet-theme .scroll-progress {
  height: 4px;
  background: linear-gradient(90deg, var(--solar-lime), var(--electric-cyan), var(--emerald), var(--amber));
  box-shadow: 0 0 22px rgba(24, 199, 216, 0.7);
}

.kemet-theme .hero,
.kemet-theme .invest-hero {
  min-height: min(860px, 92vh);
  background: var(--carbon);
  perspective: 1200px;
}

.kemet-theme .hero-bg,
.kemet-theme .invest-hero-bg {
  filter: saturate(1.18) contrast(1.08) brightness(0.92);
  transform: scale(1.04);
}

.kemet-theme .hero-media::after,
.kemet-theme .invest-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(24, 199, 216, 0.2) 39%, transparent 43%),
    linear-gradient(135deg, transparent 0 58%, rgba(200, 245, 66, 0.14) 59%, transparent 63%),
    radial-gradient(circle at 72% 58%, rgba(24, 199, 216, 0.18), transparent 18rem);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: 2;
}

.kemet-theme .hero-overlay,
.kemet-theme .invest-hero-bg::after,
.kemet-theme .china-hero .hero-overlay {
  background:
    linear-gradient(100deg, rgba(3, 12, 13, 0.92) 0%, rgba(3, 12, 13, 0.68) 38%, rgba(3, 12, 13, 0.25) 72%),
    linear-gradient(180deg, rgba(3, 12, 13, 0.25), rgba(3, 12, 13, 0.94));
}

.kemet-theme .hero-content,
.kemet-theme .invest-hero-content {
  text-align: start;
  max-width: 880px;
  transform-style: preserve-3d;
}

.kemet-theme .hero h1,
.kemet-theme .invest-hero h1 {
  font-size: clamp(2rem, 5vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.58), 0 0 34px rgba(24, 199, 216, 0.2);
}

.kemet-theme .hero-lead,
.kemet-theme .invest-pitch-desc,
.kemet-theme .invest-pitch-sub {
  color: rgba(238, 255, 248, 0.84);
  max-width: 760px;
}

.kemet-theme .hero-badge,
.kemet-theme .section-tag,
.kemet-theme .invest-hero-tag,
.kemet-theme .china-desk-badge,
.kemet-theme .concept-badge,
.kemet-theme .type-badge,
.kemet-theme .status-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(160, 245, 234, 0.22);
  color: var(--solar-lime);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.kemet-theme .hero-actions,
.kemet-theme .invest-hero-actions {
  justify-content: flex-start;
}

.kemet-theme .btn {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(160, 245, 234, 0.24);
}

.kemet-theme .btn-primary {
  background: linear-gradient(135deg, var(--solar-lime), #7df9b8 48%, var(--electric-cyan));
  color: #03120f;
  box-shadow: 0 14px 42px rgba(24, 199, 216, 0.22), 0 10px 32px rgba(200, 245, 66, 0.18);
}

.kemet-theme .btn-primary:hover {
  background: linear-gradient(135deg, #e0ff73, #81ffd0 48%, #40e5f2);
  transform: translateY(-3px) scale(1.015);
}

.kemet-theme .btn-secondary,
.kemet-theme .btn-outline {
  background: rgba(255,255,255,0.08);
  color: #eafffb;
  border-color: rgba(160, 245, 234, 0.28);
  backdrop-filter: blur(16px);
}

.kemet-theme .btn-secondary:hover,
.kemet-theme .btn-outline:hover,
.kemet-theme .btn-text:hover {
  transform: translateY(-3px);
  border-color: var(--electric-cyan);
  box-shadow: var(--energy-glow);
}

.kemet-theme .hero-stats,
.kemet-theme .invest-kpi-grid,
.kemet-theme .master-plan-bar,
.kemet-theme .phase-summary-strip {
  transform: translateZ(28px);
}

.kemet-theme .hero-stat,
.kemet-theme .invest-kpi-item,
.kemet-theme .master-item,
.kemet-theme .phase-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
  border: 1px solid rgba(160, 245, 234, 0.24);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 44px rgba(0, 0, 0, 0.26);
}

.kemet-theme .hero-stat .val,
.kemet-theme .invest-kpi-item .val,
.kemet-theme .master-val,
.kemet-theme .phase-card-final .val {
  color: var(--solar-lime);
  text-shadow: 0 0 24px rgba(200, 245, 66, 0.24);
}

.kemet-theme .section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.88), rgba(6, 17, 15, 0.78)),
    radial-gradient(circle at 85% 8%, rgba(24, 199, 216, 0.12), transparent 28rem);
}

.kemet-theme .section:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(7, 27, 36, 0.88), rgba(6, 17, 15, 0.82)),
    radial-gradient(circle at 12% 10%, rgba(200, 245, 66, 0.095), transparent 24rem);
}

.kemet-theme .section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  text-wrap: balance;
}

.kemet-theme .section-lead,
.kemet-theme .section-head p {
  max-width: 780px;
}

.kemet-theme .location-cards,
.kemet-theme .sectors-overview,
.kemet-theme .zones-grid,
.kemet-theme .highlights-grid,
.kemet-theme .invest-advantages-grid,
.kemet-theme .feasibility-grid,
.kemet-theme .invest-ref-grid,
.kemet-theme .services-grid,
.kemet-theme .china-public-sources {
  perspective: 1200px;
}

.kemet-theme .loc-card,
.kemet-theme .plan-card,
.kemet-theme .zone-card,
.kemet-theme .highlight-card,
.kemet-theme .sector-card,
.kemet-theme .invest-teaser-card,
.kemet-theme .invest-advantage-card,
.kemet-theme .feasibility-card,
.kemet-theme .invest-incentive-card,
.kemet-theme .invest-doc-card,
.kemet-theme .invest-ref-card,
.kemet-theme .service-card,
.kemet-theme .vc-card,
.kemet-theme .coop-card,
.kemet-theme .china-ref-card,
.kemet-theme .china-market-kpi,
.kemet-theme .china-localization-wrap,
.kemet-theme .value-chains-wrap,
.kemet-theme .benefits-table-wrap,
.kemet-theme .panel,
.kemet-theme .transport-diagram,
.kemet-theme .foundation-card,
.kemet-theme .invest-sczone-figure,
.kemet-theme .invest-egypt-banner,
.kemet-theme .invest-cta-box {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
  border: 1px solid rgba(160, 245, 234, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.28);
}

.kemet-theme .loc-card:hover,
.kemet-theme .plan-card:hover,
.kemet-theme .zone-card:hover,
.kemet-theme .highlight-card:hover,
.kemet-theme .sector-card:hover,
.kemet-theme .invest-teaser-card:hover,
.kemet-theme .invest-advantage-card:hover,
.kemet-theme .feasibility-card:hover,
.kemet-theme .invest-incentive-card:hover,
.kemet-theme .invest-doc-card:hover,
.kemet-theme .invest-ref-card:hover,
.kemet-theme .service-card:hover,
.kemet-theme .china-ref-card:hover {
  border-color: rgba(24, 199, 216, 0.55);
  box-shadow: var(--depth-shadow), var(--energy-glow);
  transform: translateY(-6px) rotateX(1deg);
}

.kemet-theme .plan-card img,
.kemet-theme .zone-card-render img,
.kemet-theme .zone-card-layout img,
.kemet-theme .highlight-image img,
.kemet-theme .invest-ref-img img,
.kemet-theme .invest-sczone-figure img,
.kemet-theme .invest-egypt-banner img,
.kemet-theme .film-poster {
  filter: saturate(1.14) contrast(1.06);
}

.kemet-theme .film-poster-wrap,
.kemet-theme .vision-stage,
.kemet-theme .map-layout {
  border: 1px solid rgba(160, 245, 234, 0.22);
  box-shadow: var(--depth-shadow), 0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(18px);
}

.kemet-theme .vision-section,
.kemet-theme .benefits-section {
  background:
    linear-gradient(180deg, rgba(3, 12, 13, 0.94), rgba(7, 27, 36, 0.9)),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover fixed;
}

.kemet-theme .map-section {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.88), rgba(7, 27, 36, 0.94)),
    radial-gradient(circle at 55% 16%, rgba(24, 199, 216, 0.16), transparent 30rem);
}

.kemet-theme .map-fallback {
  min-height: 520px;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  padding: 2rem;
  text-align: center;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(3, 12, 13, 0.72), rgba(7, 27, 36, 0.68)),
    url('assets/images/optimized/renders/master-plan-top.webp') center / cover;
}

.kemet-theme .map-fallback strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--solar-lime);
}

.kemet-theme .map-fallback span {
  max-width: 560px;
  color: rgba(238, 255, 248, 0.82);
}

.kemet-theme .sidebar,
.kemet-theme .map-container {
  background: rgba(5, 16, 17, 0.72);
  backdrop-filter: blur(18px);
}

.kemet-theme .invest-kpi-bar {
  background: transparent;
  margin-top: -4rem;
}

.kemet-theme .invest-section,
.kemet-theme .invest-sczone-section,
.kemet-theme .invest-egypt-section,
.kemet-theme .invest-gallery-section,
.kemet-theme .invest-feasibility-section,
.kemet-theme .invest-incentives-section {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.88), rgba(6, 17, 15, 0.8)),
    radial-gradient(circle at 82% 12%, rgba(24, 199, 216, 0.12), transparent 26rem);
}

.kemet-theme .china-hero {
  background:
    linear-gradient(100deg, rgba(3, 12, 13, 0.95) 0%, rgba(3, 12, 13, 0.65) 48%, rgba(3, 12, 13, 0.25) 100%),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover no-repeat;
}

.kemet-theme .china-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 44%, rgba(200, 245, 66, 0.18), transparent 18rem),
    linear-gradient(120deg, transparent 0 44%, rgba(24, 199, 216, 0.18) 45%, transparent 51%);
  mix-blend-mode: screen;
}

.kemet-theme .home-invest-strip,
.kemet-theme .invest-cta-section,
.kemet-theme .china-cta-section {
  background:
    linear-gradient(135deg, rgba(5, 16, 17, 0.84), rgba(8, 42, 40, 0.76)),
    url('assets/images/optimized/generated/glass-energy-background.webp') center / cover;
  border-top: 1px solid rgba(160, 245, 234, 0.2);
  border-bottom: 1px solid rgba(160, 245, 234, 0.2);
}

.kemet-theme table {
  border-color: rgba(160, 245, 234, 0.18);
}

.kemet-theme .invest-table th,
.kemet-theme .benefits-table th,
.kemet-theme .china-localization-table th,
.kemet-theme .value-chains-table th {
  color: var(--electric-cyan);
  background: rgba(255, 255, 255, 0.055);
}

.kemet-theme .invest-table td,
.kemet-theme .benefits-table td,
.kemet-theme .china-localization-table td,
.kemet-theme .value-chains-table td {
  border-color: rgba(160, 245, 234, 0.14);
}

@media (max-width: 900px) {
  .kemet-theme .hero,
  .kemet-theme .invest-hero {
    min-height: auto;
    padding-top: 6.5rem;
    overflow: clip;
  }
  .kemet-theme .hero-media,
  .kemet-theme .invest-hero-bg {
    overflow: clip;
  }
  .kemet-theme .hero-content,
  .kemet-theme .invest-hero-content {
    text-align: start;
  }
  .kemet-theme .hero h1,
  .kemet-theme .invest-hero h1 {
    font-size: clamp(1.85rem, 11vw, 3rem);
  }
  .kemet-theme .invest-kpi-bar {
    margin-top: 0;
  }
  .kemet-theme .reveal-left,
  .kemet-theme .reveal-right {
    transform: translateY(32px);
  }
  .kemet-theme .topnav .logo-mark {
    width: 108px;
    height: 42px;
    padding: 0;
    border-radius: 0;
  }
}

/* Mobile UX polish */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    line-height: 1.72;
    -webkit-text-size-adjust: 100%;
  }

  .container {
    width: min(100% - 1.5rem, 1280px);
    padding-inline: 0;
  }

  .topnav {
    background: rgba(3, 12, 13, 0.94);
  }

  .nav-inner {
    min-height: 58px;
    padding: 0.45rem 0.75rem;
    gap: 0.65rem;
  }

  .logo {
    min-width: 0;
    min-height: 44px;
    gap: 0.55rem;
  }

  .topnav .logo-mark,
  .kemet-theme .topnav .logo-mark {
    width: 86px;
    height: 34px;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-text strong {
    display: block;
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .logo-text small,
  .logo-partners {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    flex: 0 0 42px;
  }

  .nav-menu {
    top: 58px;
    padding: 0.75rem;
    max-height: calc(100dvh - 58px);
    border-bottom: 1px solid rgba(160,245,234,0.18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  }

  .nav-links {
    gap: 0.35rem;
    padding: 0.5rem;
  }

  .nav-root,
  .nav-group summary,
  .nav-links a,
  .nav-dropdown a,
  .lang-btn {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .nav-dropdown {
    max-height: 52dvh;
    overflow-y: auto;
  }

  .lang-switch {
    width: 100%;
    padding: 0.35rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
  }

  .lang-btn {
    flex: 1 1 0;
    justify-content: center;
  }

  .hero,
  .invest-hero,
  .news-hero,
  .arts-suzhou-hero {
    min-height: auto;
    padding: 5.75rem 0 2.3rem;
  }

  .hero-media,
  .hero-bg,
  .invest-hero-bg,
  .news-hero-bg,
  .arts-suzhou-hero-bg {
    position: absolute;
    inset: 0;
  }

  .hero-bg,
  .invest-hero-bg,
  .news-hero-bg {
    background-attachment: scroll !important;
  }

  .hero-content,
  .invest-hero-content,
  .news-hero-content {
    width: min(100% - 1.5rem, 560px);
    margin-inline: auto;
    text-align: start;
  }

  .hero h1,
  .invest-hero h1,
  .news-hero h1,
  .news-article-hero-content h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.7rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .hero-eyebrow,
  .hero-lead,
  .section-lead,
  .section-head p,
  .invest-sczone-intro {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero-badge {
    max-width: 100%;
    padding: 0.35rem 0.65rem;
    border-radius: 12px;
    line-height: 1.35;
  }

  .hero-actions,
  .invest-hero-actions,
  .home-invest-actions,
  .news-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.65rem;
  }

  .btn,
  .btn-outline,
  .btn-secondary,
  .btn-text,
  .btn-sm,
  button {
    min-height: 48px;
  }

  .btn,
  .btn-outline,
  .btn-secondary,
  .btn-text {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0.78rem 1rem;
    border-radius: 12px;
  }

  .hero-video-link {
    margin-bottom: 1.2rem;
  }

  .hero-stats,
  .invest-kpi-grid,
  .invest-sczone-stats,
  .phase-summary-strip,
  .cooperation-aggregates {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem;
  }

  .hero-stat,
  .invest-kpi-item,
  .invest-sczone-stat,
  .phase-card {
    min-height: 84px;
    padding: 0.82rem 0.55rem;
    border-radius: 10px;
  }

  .hero-stat .val,
  .invest-kpi-item .val,
  .invest-sczone-stat .val,
  .phase-metric .val {
    font-size: clamp(1rem, 5vw, 1.28rem);
    line-height: 1.2;
  }

  .hero-stat .lbl,
  .invest-kpi-item .lbl,
  .invest-sczone-stat .lbl {
    font-size: 0.68rem;
  }

  .section,
  .designer-section,
  .arts-suzhou-section,
  .arts-suzhou-transfer-section,
  .news-section {
    padding: 2.8rem 0;
  }

  .section-head {
    margin-bottom: 1.45rem;
    text-align: start;
  }

  .section-head h2,
  .kemet-theme .section-head h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .section-tag {
    margin-bottom: 0.65rem;
  }

  .location-grid,
  .video-layout,
  .map-layout,
  .plan-gallery,
  .sectors-overview,
  .highlights-grid,
  .invest-gallery-grid,
  .invest-advantages-grid,
  .invest-doc-grid,
  .designer-grid,
  .sponsors-grid,
  .news-grid,
  .news-featured-grid,
  .news-activities-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .vision-carousel {
    display: block;
  }

  .vision-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .vision-caption {
    position: static;
    margin-top: 0.75rem;
    max-width: none;
    width: 100%;
    padding: 0.95rem;
    background: rgba(8,17,15,0.88);
  }

  .vision-caption h3,
  .vision-caption p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .vision-controls {
    align-items: stretch;
    gap: 0.65rem;
  }

  .vision-dots {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 0.35rem;
    margin-top: 0;
    overflow-x: auto;
    padding: 0.15rem 0.05rem 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .vision-dot {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 999px;
    position: relative;
    background: transparent;
  }

  .vision-dot::after {
    content: '';
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    background: rgba(255,255,255,0.28);
    transition: background 0.2s, inset 0.2s;
  }

  .vision-dot.active {
    width: 52px;
    min-width: 52px;
    background: transparent;
  }

  .vision-dot.active::after {
    inset: 10px 7px;
    background: var(--accent-lime);
  }

  .carousel-btn {
    width: 46px;
    height: 46px;
  }

  .map-layout {
    border-radius: 10px;
    overflow: hidden;
  }

  .map-container {
    min-height: 430px;
    height: 62dvh;
    order: 1;
  }

  .sidebar {
    order: 2;
    max-height: none;
    padding: 0.9rem;
  }

  .map-toolbar {
    flex-direction: row;
    flex-wrap: wrap;
    inset-inline: 0.6rem;
    top: 0.6rem;
  }

  .map-toolbar button {
    width: 44px;
    height: 44px;
  }

  .plan-toolbar,
  .plan-filters,
  .news-category-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-inline: -0.75rem;
    padding: 0 0.75rem 0.45rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .plan-filter,
  .news-category-links a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 44px;
  }

  .zone-link,
  .partner-link,
  .news-read-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 0.82rem;
    border-radius: 999px;
    line-height: 1.25;
  }

  .news-read-link {
    border-color: rgba(70,199,217,0.28);
    background: rgba(70,199,217,0.1);
  }

  .plan-card img,
  .sector-card-thumb,
  .invest-ref-thumb,
  .invest-doc-thumb,
  .news-card-media {
    min-height: 190px;
  }

  .invest-sczone-connectivity,
  .invest-sczone-markets {
    display: block;
    padding: 0.8rem;
  }

  .invest-sczone-figure,
  .invest-egypt-banner,
  .zones-boundary,
  .benefits-table-wrap,
  .invest-table-wrap,
  .invest-ref-card,
  .news-card,
  .sponsor-card {
    border-radius: 10px;
  }

  .invest-sczone-figure img,
  .invest-egypt-banner img,
  .zones-boundary-media img {
    object-fit: contain;
    background: #f7faf9;
  }

  .zones-boundary-media,
  .zones-boundary-media img {
    min-height: 220px;
  }

  .invest-table-wrap,
  .benefits-table-wrap {
    position: relative;
    margin-inline: -0.75rem;
    border-inline: 0;
    border-radius: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .invest-table-wrap::before,
  .benefits-table-wrap::before {
    content: '';
    position: sticky;
    inset-inline-start: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset -22px 0 18px -22px rgba(70,199,217,0.5);
  }

  .invest-table,
  .benefits-table {
    min-width: 680px;
  }

  .investor-form,
  .invest-cta-box {
    padding: 1rem;
    border-radius: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  input,
  select,
  textarea {
    font-size: 16px !important;
    min-height: 48px;
  }

  .sticky-cta {
    inset-inline: 0.6rem;
    bottom: max(0.6rem, env(safe-area-inset-bottom));
    border-radius: 14px;
  }

  .sticky-cta-inner {
    padding: 0.65rem;
    gap: 0.55rem;
  }

  .sticky-cta-text {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.78rem;
  }

  body.has-sticky-cta {
    padding-bottom: 6.3rem;
  }

  .footer {
    padding: 1.5rem 0.75rem calc(1.5rem + env(safe-area-inset-bottom));
  }

  .footer-inner,
  .footer-links,
  .footer-lang {
    justify-content: center;
    text-align: center;
  }

  .footer-links a,
  .footer-lang a,
  .footer-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.45rem 0.65rem;
  }

  .layer-option,
  .zone-filter {
    min-height: 44px;
    padding: 0.55rem 0.6rem;
  }
}

@media (max-width: 390px) {
  .hero-stats,
  .invest-kpi-grid,
  .invest-sczone-stats,
  .phase-summary-strip,
  .cooperation-aggregates {
    grid-template-columns: 1fr !important;
  }

  .hero h1,
  .invest-hero h1,
  .news-hero h1,
  .news-article-hero-content h1 {
    font-size: clamp(1.65rem, 10vw, 2.25rem);
  }

  .map-container {
    min-height: 380px;
  }
}

/* News details upgrades: responsive embedded YouTube video & clean inline main photo */
.news-article-main-photo {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(160,245,234,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.news-article-photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.news-video-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(160,245,234,0.18);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
  background: #000;
}
.news-video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Designer Section & Parallax Cards */
.designer-section {
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.designer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.designer-card-wrap {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.designer-card {
  background: var(--glass-bg, rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius, 16px);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.designer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  z-index: 1;
}

.designer-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 40px 0 rgba(16, 185, 129, 0.15);
}

.designer-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.designer-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.designer-logo-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.designer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

.designer-card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.designer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  margin-bottom: 2rem;
  flex-grow: 1;
}

.designer-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-400);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.designer-actions {
  margin-bottom: 1.25rem;
}

.designer-actions .btn-xs {
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.2s;
}

.designer-actions .btn-xs:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Partner links in footer */
.partner-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.partner-link:hover {
  color: var(--green-400);
  border-bottom-color: var(--green-400);
}

/* Responsiveness */
@media (max-width: 992px) {
  .designer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .designer-card-wrap {
    transform: none !important;
  }
}


