@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════ */
:root {
  --navy-dark: #0f2744;
  --navy: #1a365d;
  --navy-light: #2a4a7f;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #868e96;
  --gray-700: #343a40;
  --gray-900: #1a1a2e;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-weight: 400;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
table { border-collapse: collapse; }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background: rgba(13, 32, 60, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.is-hero .navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.is-hero .navbar.scrolled,
.navbar.scrolled {
  background: rgba(13, 32, 60, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn { color: var(--gold-light); }

.nav-dropdown-btn .arrow {
  font-size: 0.55em;
  transition: transform 0.3s;
  display: inline-block;
}
.nav-dropdown.open .arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.96);
  min-width: 230px;
  background: rgba(6, 15, 32, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
}
.nav-dropdown-menu a:hover::before,
.nav-dropdown-menu a.active::before { opacity: 1; }

.nav-dropdown-menu a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0a1929 0%, #0f2744 50%, #1a365d 100%);
}

#hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 42, 0.45);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 20, 42, 0) 30%,
    rgba(8, 20, 42, 0.6) 65%,
    rgba(8, 20, 42, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 72px 72px;
  width: 100%;
  max-width: 960px;
}

.hero-content .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-content .eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-content .subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.6s both;
}
.hero-content .subtitle strong {
  color: white;
  font-weight: 700;
}

/* Logos bar */
.logos-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  animation: fadeUp 0.7s ease 0.8s both;
}
.logos-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-divider {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.logos-bar svg { flex-shrink: 0; display: block; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.64s; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: 0.72s; }

/* ═══════════════════════════════════════
   PAGE BANNER (inner pages)
   ═══════════════════════════════════════ */
.page-banner {
  background: var(--navy-dark);
  padding: 120px 72px 70px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-banner::after {
  content: attr(data-watermark);
  position: absolute;
  bottom: -20px; left: 40px;
  font-size: clamp(6rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.banner-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.banner-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.banner-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.banner-desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.page-section {
  padding: 80px 72px;
  scroll-margin-top: 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.page-section.alt {
  background: var(--gray-50);
  max-width: none;
}

.page-section.alt > .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-section.full-width {
  max-width: none;
}

.section-heading {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   HIGHLIGHT BOX
   ═══════════════════════════════════════ */
.highlight-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 48px 52px;
  color: white;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.highlight-box:first-child { margin-top: 0; }

.highlight-box::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.highlight-box::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(201, 162, 39, 0.06);
  border-radius: 50%;
}

.highlight-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.highlight-box p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}
.highlight-box strong,
.highlight-box .gold {
  color: var(--gold-light);
  font-weight: 700;
}

/* Warning variant */
.highlight-box.warning {
  background: linear-gradient(135deg, #2a1f08, #3d2e0e);
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.highlight-box.warning::before {
  background: rgba(201, 162, 39, 0.06);
}

/* ═══════════════════════════════════════
   STATS ROW
   ═══════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0;
  background: white;
  box-shadow: 0 4px 24px rgba(26, 54, 93, 0.07);
}

.stat-cell {
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.stat-cell:last-child { border-left: none; }
.stat-cell:hover { background: var(--gray-50); }

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transition: background 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.14);
}
.card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card.gold-top::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.card.gold-top:hover::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.card ul { margin-top: 8px; }
.card ul li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 5px 0;
  padding-right: 18px;
  position: relative;
  line-height: 1.65;
}
.card ul li::before {
  content: '';
  position: absolute;
  right: 0; top: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin: 40px 0;
  box-shadow: 0 4px 24px rgba(26, 54, 93, 0.06);
}
.comparison-table thead th {
  background: var(--navy-dark);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 22px;
  text-align: right;
}
.comparison-table thead th:nth-child(2) {
  background: var(--navy);
}
.comparison-table tbody td {
  padding: 15px 22px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.comparison-table tbody td:nth-child(2) {
  background: rgba(26, 54, 93, 0.035);
}
.comparison-table tbody tr:hover td {
  background: var(--gray-50);
}
.comparison-table tbody tr:hover td:nth-child(2) {
  background: rgba(26, 54, 93, 0.06);
}

.chk-green { color: #16a34a; font-weight: 700; }
.chk-red { color: #dc2626; font-weight: 600; }
.chk-amber { color: #d97706; font-weight: 600; }

/* ═══════════════════════════════════════
   VALUE CARDS
   ═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.12);
}
.value-card .icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FACTS GRID
   ═══════════════════════════════════════ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.fact-item {
  display: flex;
  gap: 16px;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.fact-item:hover {
  box-shadow: 0 8px 32px rgba(26, 54, 93, 0.1);
  transform: translateY(-2px);
}
.fact-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
  margin-top: 8px;
}
.fact-item h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.fact-item p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   STAKEHOLDER MAP
   ═══════════════════════════════════════ */
.stakeholder-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}
.stakeholder-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 22px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.sh-card:hover {
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.1);
  transform: translateY(-2px);
}
.sh-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.sh-card span {
  font-size: 0.76rem;
  color: var(--gray-500);
}

.stakeholder-col.partners .sh-card { border-right: 3px solid var(--navy-light); }
.stakeholder-col.regulators .sh-card { border-left: 3px solid var(--gold); }

.sh-center {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 48px rgba(15, 39, 68, 0.45);
  flex-shrink: 0;
}
.sh-center::before {
  content: '';
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.sh-center::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.06);
}
.sh-center .name {
  font-size: 1.9rem;
  font-weight: 900;
  color: white;
}
.sh-center .role {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   MILESTONES TABLE
   ═══════════════════════════════════════ */
.milestones-table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin: 40px 0;
  box-shadow: 0 4px 24px rgba(26, 54, 93, 0.06);
}
.milestones-table thead th {
  background: var(--navy-dark);
  color: white;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 14px 18px;
  text-align: right;
}
.milestones-table tbody td {
  padding: 13px 18px;
  font-size: 0.87rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}
.milestones-table tbody tr:last-child td { border-bottom: none; }
.milestones-table tbody tr:hover { background: var(--gray-50); }

.milestones-table tbody tr.row-highlight {
  background: rgba(201, 162, 39, 0.06);
}
.milestones-table tbody tr.row-highlight td {
  font-weight: 700;
  color: var(--navy);
}

.ms-id {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.82rem;
  white-space: nowrap;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-gray { background: #e9ecef; color: #495057; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-green-b { background: #bbf7d0; color: #14532d; font-weight: 800; }

/* ═══════════════════════════════════════
   METHODS GRID
   ═══════════════════════════════════════ */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.method-block {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.method-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
}
.method-block h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.method-block .en {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-right: 8px;
}
.method-block ul li {
  padding: 7px 0;
  padding-right: 18px;
  font-size: 0.88rem;
  color: var(--gray-700);
  position: relative;
  line-height: 1.7;
}
.method-block ul li::before {
  content: '';
  position: absolute;
  right: 0; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══════════════════════════════════════
   ORG CHART
   ═══════════════════════════════════════ */
.org-container {
  overflow-x: auto;
  padding: 20px 0 40px;
  margin: 40px 0;
}
.org-container svg { display: block; margin: 0 auto; }

.org-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.org-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.org-legend-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1px solid transparent;
}

/* ═══════════════════════════════════════
   AGENT SCREENS
   ═══════════════════════════════════════ */
.agent-intro {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 52px;
  margin: 0 0 56px;
  position: relative;
  overflow: hidden;
}
.agent-intro::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 60%);
  border-radius: 50%;
}
.agent-intro h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.agent-intro p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 12px;
}
.agent-intro p:last-child { margin-bottom: 0; }
.agent-intro strong { color: var(--gold-light); }

.agent-screen {
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.agent-chrome {
  background: #1e2a3a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.agent-dots {
  display: flex;
  gap: 7px;
}
.agent-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.agent-dots span:nth-child(1) { background: #ff5f57; }
.agent-dots span:nth-child(2) { background: #febc2e; }
.agent-dots span:nth-child(3) { background: #28c840; }
.agent-url {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
  flex: 1;
  max-width: 300px;
  font-family: monospace, sans-serif;
}

.agent-titlebar {
  background: var(--navy-dark);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.agent-titlebar-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}
.agent-titlebar-logo .gold { color: var(--gold); }
.agent-project-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.agent-body {
  background: #060d1a;
  padding: 32px 28px;
}

.agent-user-msg {
  background: var(--navy);
  border-radius: 14px 14px 4px 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
  margin-left: 100px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.75;
}

.agent-response {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.agent-avatar {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.agent-response-content { flex: 1; min-width: 0; }
.agent-response-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.agent-text-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.agent-text-block h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}
.agent-text-block p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.agent-text-block strong { color: rgba(255, 255, 255, 0.85); }

.agent-warning {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--gold-light);
  line-height: 1.75;
}

/* Agent table */
.agent-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 0.8rem;
}
.agent-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  padding: 10px 14px;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.agent-table tbody td {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.agent-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.agent-table .row-danger {
  background: rgba(220, 38, 38, 0.08);
}
.agent-table .row-danger td {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Agent chart */
.agent-chart { padding: 20px 24px; }
.agent-chart-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.chart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}
.chart-label {
  width: 135px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  flex-shrink: 0;
}
.chart-track {
  flex: 1;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
}
.chart-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.chart-fill.blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.chart-fill.gold { background: linear-gradient(90deg, #c9a227, #dbb84a); }
.chart-fill.green { background: linear-gradient(90deg, #16a34a, #4ade80); }
.chart-fill.navy { background: linear-gradient(90deg, var(--navy-dark), var(--navy-light)); }
.chart-val {
  width: 75px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  flex-shrink: 0;
}
.chart-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 10px 0;
}

.agent-caption {
  background: var(--navy);
  padding: 12px 22px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════
   SECTION DIVIDER
   ═══════════════════════════════════════ */
.section-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 40px;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
footer small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-banner { padding: 100px 40px 56px; }
  .page-section { padding: 60px 40px; }
  .hero-content { padding: 0 40px 56px; }
  .navbar { padding: 0 24px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; right: 0; left: 0; bottom: 0;
    background: rgba(6, 15, 32, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-menu.mobile-open { display: flex; }
  .nav-toggle { display: block; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    min-width: auto;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .page-banner { padding: 90px 24px 40px; min-height: 240px; }
  .page-section { padding: 48px 24px; }
  .hero-content { padding: 0 24px 40px; }
  .hero-content h1 { font-size: 2.2rem; }

  .cards-grid,
  .facts-grid,
  .methods-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-cell:last-child { grid-column: span 2; }

  .stakeholder-map {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sh-center { margin: 0 auto; }

  .highlight-box { padding: 32px 28px; }
  .agent-user-msg { margin-left: 16px; }
  .agent-intro { padding: 32px 28px; }

  .logos-bar { flex-wrap: wrap; gap: 16px; }
}
