/* ========================================
   NSS 2025 — New-Age Magazine Style
   ======================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162240;
  --blue: #1e3a5f;
  --blue-accent: #2563eb;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --cream: #f8f6f0;
  --white: #ffffff;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  --red: #b91c1c;
  --red-light: #dc2626;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.07), 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 8px 30px rgba(0,0,0,.12), 0 20px 60px rgba(0,0,0,.08);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid var(--gold);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(30, 58, 95, 0.2), transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 32px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.hero-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.3);
}

/* ========== TABLE OF CONTENTS ========== */
.toc-section {
  padding: 80px 0;
  background: var(--white);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.toc-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.toc-card:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.toc-card:hover .toc-num { color: var(--gold); }
.toc-card:hover .toc-card-desc { color: rgba(255,255,255,.85); }

.toc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.toc-card-title {
  font-weight: 700;
  font-size: 1rem;
}

.toc-card-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: var(--transition);
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0 96px;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-label { color: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,.85); }
.section-dark p { color: rgba(255,255,255,.75); }

.section-regions {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0;
}

.section-regions .section-label { color: var(--gold); }
.section-regions .section-title { color: var(--white); }
.section-regions .lead { color: rgba(255,255,255,.9); }
.section-regions p { color: rgba(255,255,255,.85); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 32px;
}

.subsection {
  margin-top: 64px;
}

.subsection-intro {
  margin-bottom: 40px;
}

.subsection-intro h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-dark .subsection-title { color: var(--white); }

/* ========== FEATURE CARDS (Introduction) ========== */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.feature-card-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.feature-card-reverse .feature-card-img {
  order: 2;
}

.feature-card-img {
  background-size: cover;
  background-position: center;
  background-color: var(--blue);
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.4);
}

.feature-card-img-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.feature-card-body {
  padding: 40px;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.feature-card-body p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-dark .feature-card { background: var(--navy-mid); }
.section-dark .feature-card-title { color: var(--white); }
.section-dark .feature-card-body p { color: rgba(255,255,255,.85); }

/* ========== GOALS GRID ========== */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.goal-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.goal-icon {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  letter-spacing: -0.02em;
}

.goal-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.goal-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== WORLD GOALS ========== */
.world-goals-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.world-goal {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.world-goal:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.world-goal-marker {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.world-goal-body h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.world-goal-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== MEANS GRID ========== */
.means-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.means-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.means-card:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.means-icon {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.means-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.means-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.domestic-agenda {
  margin-top: 48px;
}

.domestic-agenda > p {
  margin-bottom: 24px;
}

.agenda-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.agenda-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.agenda-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.agenda-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.9);
}

/* ========== CALLOUT ========== */
.callout {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 24px 0;
}

.callout h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.callout-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.callout-accent {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(37,99,235,.04));
  border-left-color: var(--gold);
}

.callout-highlight {
  background: rgba(201,168,76,.06);
  border-left-color: var(--gold);
}

.section-dark .callout {
  background: rgba(255,255,255,.08);
}

.section-dark .callout h5 { color: var(--gold); }
.section-dark .callout-text { color: rgba(255,255,255,.9); }

/* ========== ACCORDION ========== */
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-accent);
  text-align: left;
  transition: var(--transition);
}

.accordion-toggle:hover { color: var(--gold); }

.section-dark .accordion-toggle { color: var(--gold-light); }

.accordion-toggle-full {
  padding: 18px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  margin-bottom: 8px;
}

.accordion-toggle-full:hover {
  background: var(--gray-100);
  border-color: var(--gold);
}

.section-dark .accordion-toggle-full {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}

.section-dark .accordion-toggle-full:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  padding: 0 0;
}

.accordion-content p,
.accordion-content ul {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.accordion-content ul {
  padding-left: 20px;
  list-style: disc;
}

.accordion-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

[data-accordion].open .accordion-icon {
  transform: rotate(45deg);
}

[data-accordion].open .accordion-content {
  padding: 16px 0;
}

.accordion-section {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion-block {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* ========== PRINCIPLES GRID ========== */
.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.principle-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.principle-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: var(--transition);
}

.principle-toggle:hover {
  border-color: var(--gold);
  background: var(--gray-100);
}

.principle-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.principle-icon {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.principle-header h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.principle-card .accordion-content {
  padding-left: 24px;
  padding-right: 24px;
}

/* ========== PRIORITIES ========== */
.priority-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.priority-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: var(--transition);
}

.priority-toggle:hover {
  border-color: var(--gold);
  background: var(--gray-50);
}

.priority-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.priority-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  flex-shrink: 0;
}

.priority-badge-gold {
  background: var(--gold);
  color: var(--navy);
}

.priority-header h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.priority-card .accordion-content {
  padding-left: 24px;
  padding-right: 24px;
}

.priority-card-wide {
  grid-column: 1 / -1;
}

/* ========== ECON SUB GRID ========== */
.econ-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.econ-sub-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.econ-sub-card h6 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.econ-sub-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== REGION HEADER ========== */
.region-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.region-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.region-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 4px;
}

.region-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-style: italic;
}

.section-dark .region-title { color: var(--white); }
.section-dark .region-subtitle { color: rgba(255,255,255,.8); }

/* ========== TWO COL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.col-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.col-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.col-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== STATS BAR ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}

.stat {
  text-align: center;
  padding: 12px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  line-height: 1.4;
}

.section:not(.section-dark) .stats-bar {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

.section:not(.section-dark) .stat-label {
  color: var(--gray-500);
}

/* ========== POLICY LIST ========== */
.policy-list {
  margin-top: 40px;
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.policy-list h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.policy-list ul {
  list-style: none;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== AFRICA CARDS ========== */
.africa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.africa-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.africa-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.africa-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.africa-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-star {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.footer-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-400);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ========== TOC ACCENT ========== */
.toc-card-accent {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}

.toc-card-accent .toc-num { color: var(--gold); }
.toc-card-accent .toc-card-desc { color: rgba(255,255,255,.85); }

.toc-card-accent:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.toc-card-accent:hover .toc-num { color: var(--navy); }
.toc-card-accent:hover .toc-card-desc { color: rgba(10,22,40,.7); }

/* ========== THROUGHLINES SECTION ========== */
.section-throughlines {
  background: linear-gradient(160deg, #0d1b2e 0%, #152642 40%, #1a2f50 100%);
  color: var(--white);
  padding: 96px 0 100px;
}

.section-throughlines .section-label { color: var(--gold); }
.section-throughlines .section-title { color: var(--white); }
.section-throughlines .lead { color: rgba(255,255,255,.85); }

/* Intro comparison */
.throughline-intro {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 48px 0 56px;
}

.throughline-intro-card {
  flex: 1;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}

.throughline-intro-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.throughline-intro-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}

.throughline-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Throughlines grid */
.throughlines-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.throughline-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.throughline-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: var(--transition);
  color: var(--white);
}

.throughline-toggle:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--gold);
}

.throughline-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.throughline-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.throughline-header h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.throughline-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
}

.throughline-featured .throughline-toggle {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
}

.throughline-featured .throughline-toggle:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}

.throughline-card .accordion-content {
  padding-left: 24px;
  padding-right: 24px;
}

/* Compare columns */
.throughline-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.throughline-then,
.throughline-now {
  padding: 20px;
  border-radius: var(--radius-sm);
}

.throughline-then {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.throughline-now {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
}

.throughline-then p,
.throughline-now p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
}

.throughline-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}

.throughline-tag-gold {
  background: rgba(201,168,76,.15);
  color: var(--gold);
}

.throughline-verdict {
  padding: 16px 20px;
  background: rgba(201,168,76,.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  margin-bottom: 8px;
}

.throughline-verdict strong {
  color: var(--gold);
}

/* Summary */
.throughline-summary {
  margin-top: 56px;
}

.throughline-summary-inner {
  padding: 36px 40px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.throughline-summary h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.throughline-summary p {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.throughline-summary strong {
  color: var(--white);
}

/* ========== INTERACTIVE STATES & ACCESSIBILITY ========== */
.hero-btn:focus-visible,
.toc-card:focus-visible,
.accordion-toggle:focus-visible,
.principle-toggle:focus-visible,
.priority-toggle:focus-visible,
.throughline-toggle:focus-visible,
.back-to-top:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero-btn:active {
  transform: translateY(0);
}

.toc-card:active {
  transform: scale(0.98);
}

.back-to-top:active {
  transform: scale(0.95);
}

.accordion-toggle:active,
.principle-toggle:active,
.priority-toggle:active,
.throughline-toggle:active {
  opacity: 0.85;
}

.goal-card:active,
.means-card:active {
  transform: translateY(0);
}

.accordion-toggle,
.principle-toggle,
.priority-toggle,
.throughline-toggle {
  -webkit-tap-highlight-color: transparent;
}

.toc-card {
  -webkit-tap-highlight-color: transparent;
}

/* Ensure touch targets are at least 44px */
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.accordion-toggle,
.accordion-toggle-full {
  min-height: 48px;
}

/* Large screen optimization */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .goals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .toc-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-content {
    max-width: 900px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    min-height: 48px;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content { padding: 100px 20px 60px; }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-reverse {
    grid-template-columns: 1fr;
  }

  .feature-card-reverse .feature-card-img {
    order: 0;
  }

  .feature-card-img {
    min-height: 200px;
  }

  .feature-card-body {
    padding: 24px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .means-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .africa-cards {
    grid-template-columns: 1fr;
  }

  .econ-sub-grid {
    grid-template-columns: 1fr;
  }

  .throughline-intro {
    flex-direction: column;
  }

  .throughline-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .throughline-compare {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 56px 0 64px;
  }

  .region-letter {
    font-size: 2.5rem;
  }

  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .means-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .accordion-toggle,
  .accordion-toggle-full,
  .principle-toggle,
  .priority-toggle,
  .throughline-toggle {
    min-height: 52px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .hero-btn {
    padding: 16px 36px;
    font-size: 0.95rem;
  }

  .policy-list ul {
    padding-left: 0;
  }

  .callout {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  .container { padding: 0 16px; }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 90px 16px 50px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0 48px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .region-header {
    flex-direction: column;
    gap: 12px;
  }

  .region-letter {
    font-size: 2rem;
  }

  .goal-card,
  .means-card {
    padding: 20px;
  }

  .throughline-intro-card {
    padding: 20px;
  }

  .principle-header h5,
  .priority-header h5 {
    font-size: 0.9rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .analysis-teaser-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== PULL QUOTE ========== */
.pull-quote {
  position: relative;
  margin: 40px 0;
  padding: 32px 36px 28px 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.pull-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -12px;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.section-dark .pull-quote {
  background: rgba(255,255,255,.08);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.15);
}

.section-dark .pull-quote p {
  color: var(--white);
}

.section-regions .pull-quote {
  background: rgba(255,255,255,.08);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.15);
}

.section-regions .pull-quote p {
  color: var(--white);
}

/* ========== KEY TAKEAWAY BOX ========== */
.key-takeaway {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.key-takeaway::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.key-takeaway-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.key-takeaway h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.key-takeaway p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
}

.key-takeaway ul {
  margin-top: 10px;
  padding-left: 0;
}

.key-takeaway li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.key-takeaway li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.section-dark .key-takeaway {
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.06) 100%);
  border: 1px solid rgba(255,255,255,.15);
}

/* ========== ANALYSIS TEASER ========== */
.analysis-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.analysis-teaser::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.1), transparent 70%);
  pointer-events: none;
}

.analysis-teaser-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.analysis-teaser h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.analysis-teaser > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
}

.analysis-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.analysis-teaser-item {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
}

.analysis-teaser-item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.analysis-teaser-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

.analysis-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  text-decoration: none;
  transition: var(--transition);
}

.analysis-teaser-cta:hover {
  background: rgba(201,168,76,.18);
  border-color: rgba(201,168,76,.4);
}
