/* ==========================================================================
   iGaming Advisors — Cinematic Design System (Broadway Platform Benchmark)
   Visual World: Obsidian Oxblood, Brushed Bronze, Warm Ivory, Micro Cyan Accent
   Architecture: Full-Bleed 12-Column Grid, Alternating Chapters, 3D Visual Focus
   ========================================================================== */

:root {
  /* High-Contrast Obsidian & Graphite System (Broadway Quality Benchmark) */
  --canvas: #0A0B10;                  /* Pure deep obsidian night */
  --surface: #11141E;                 /* Elevated graphite structure */
  --surface-alt: #161B29;             /* Layered interactive card/panel surface */
  --surface-glass: rgba(17, 20, 30, 0.78); /* High-tech glassmorphism backdrop */
  
  /* Typography Hierarchy */
  --ink: #FFFFFF;                     /* Pure crisp titanium white */
  --ink-secondary: #E2E8F0;           /* Polished platinum body copy */
  --muted: #94A3B8;                   /* Refined cool slate */
  
  /* Metallic & Telemetry Accents */
  --bronze: #C59B27;                  /* Broadway champagne bronze/gold */
  --bronze-light: #E5C378;            /* Warm specular metallic gold highlights */
  --bronze-glow: rgba(197, 155, 39, 0.25);
  --signal-blue: #38BDF8;             /* Controlled cyan interaction micro-accents */
  --signal-blue-glow: rgba(56, 189, 248, 0.35);
  --signal-green: #34D399;            /* Sparse emerald for verified sovereign signals */
  --signal-red: #F87171;              /* Restricted/alert indicator */
  
  /* Architectural Metallic Hairlines */
  --rule: rgba(229, 195, 120, 0.22);  /* Architectural 1px gold/bronze hairlines */
  --rule-subtle: rgba(255, 255, 255, 0.08);

  /* Typography Stacks */
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  /* Spacing Scale */
  --space-unit: 8px;
  --header-height: 80px;

  /* Motion Curves */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s var(--ease-cinematic);
  --trans-normal: 0.36s var(--ease-cinematic);
  --trans-slow: 0.6s var(--ease-cinematic);
}

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

html {
  background-color: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--canvas);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Technical Engineering Micro-Grid & Ambient Studio Lighting */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(197, 155, 39, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(56, 189, 248, 0.04) 0%, transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Typography Defaults */
h1, h2, h3, h4, .serif-title {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Technical Monospace Elements */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bronze-light);
  font-weight: 500;
}

.mono-muted {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* 12-Column Desktop Grid Container */
.bleed-section {
  width: 100%;
  position: relative;
  z-index: 1;
}

.grid-12 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}

/* Structural Divider */
.bronze-divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin: 0;
  border: none;
}

/* ==========================================================================
   Header & Luxury Masthead
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(18, 7, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule-subtle);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--bronze-light);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze-light);
  transition: width var(--trans-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* TriLanguage Switcher (ESP / ENG / POR) */
.trilang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule);
  padding: 3px;
  background: rgba(27, 11, 8, 0.7);
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 10px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all var(--trans-fast);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  color: var(--canvas);
  background: var(--bronze-light);
  font-weight: 700;
}

/* Header Action CTA */
.btn-briefing-header {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--canvas);
  background: var(--bronze-light);
  padding: 10px 20px;
  border: 1px solid var(--bronze-light);
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.btn-briefing-header:hover {
  background: #E4B892;
  border-color: #E4B892;
  box-shadow: 0 4px 16px rgba(168, 107, 67, 0.28);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  padding: 32px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer .nav-link {
  font-size: 1.15rem;
}

/* ==========================================================================
   Chapter 00: Hero (Minimum 820px High, Cinematic Viewport)
   ========================================================================== */
.hero-chapter {
  min-height: 860px;
  height: 100vh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-copy-col {
  grid-column: 1 / 6;
  max-width: 480px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-headline {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-subtext {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-bronze-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bronze);
  color: var(--canvas);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  padding: 16px 32px;
  border: 1px solid var(--bronze);
  transition: all var(--trans-normal);
  cursor: pointer;
}

.btn-bronze-primary:hover {
  background: var(--bronze-light);
  border-color: var(--bronze-light);
  box-shadow: 0 8px 24px rgba(168, 107, 67, 0.35);
  transform: translateY(-2px);
}

.link-understated {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: all var(--trans-fast);
}

.link-understated:hover {
  color: var(--bronze-light);
  border-color: var(--bronze-light);
}

/* Large 3D Visual Object Container (Hero) */
.hero-visual-stage {
  grid-column: 6 / 13;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-object-wrapper {
  width: 120%;
  max-width: 1000px;
  transform: translateX(8%);
  position: relative;
  transition: transform 0.4s var(--ease-cinematic);
}

.hero-object-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.85));
}

/* ==========================================================================
   Chapter: Manifesto Statement (Expansive Editorial Statement)
   ========================================================================== */
.manifesto-section {
  padding: 160px 0;
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.manifesto-texture-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(80%) contrast(140%);
  pointer-events: none;
}

.manifesto-content-col {
  grid-column: 2 / 12;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.manifesto-statement {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.manifesto-body-split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
}

.manifesto-lead {
  grid-column: 1 / 7;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.6;
}

.manifesto-detail {
  grid-column: 7 / 13;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   Advisory Practices as Cinematic Chapters (5 Full-Bleed Modules)
   Modules 760px to 920px High, 55% - 70% 3D Visual Object, Alternating Layout
   ========================================================================== */
.chapter-module {
  min-height: 820px;
  padding: 140px 0;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.chapter-module:nth-child(even) {
  background: var(--surface);
}

/* Alternating Grid Formats */
/* Layout A: Text Left (1-5), Object Right (6-12) */
.chapter-left-text .chapter-copy-col {
  grid-column: 1 / 6;
  max-width: 480px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chapter-left-text .chapter-object-stage {
  grid-column: 6 / 13;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Layout B: Object Left (1-7), Text Right (8-12) */
.chapter-right-text .chapter-object-stage {
  grid-column: 1 / 8;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.chapter-right-text .chapter-copy-col {
  grid-column: 8 / 13;
  max-width: 480px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-self: end;
}

/* Chapter Typography */
.chapter-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--bronze-light);
  font-weight: 600;
}

.chapter-title {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink);
}

.chapter-copy {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
}

.chapter-cta-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bronze-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: all var(--trans-fast);
}

.chapter-cta-link:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* Chapter 3D Object Staging */
.chapter-object-wrapper {
  width: 100%;
  max-width: 780px;
  position: relative;
  transition: transform 0.4s var(--ease-cinematic);
}

.chapter-object-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.75));
}

/* Subtle cyan interaction micro-accent */
.cyan-accent-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-blue);
  box-shadow: 0 0 8px var(--signal-blue);
  margin-right: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   Chapter 04: Operating Atlas (Immersive 3D Relief Surface)
   ========================================================================== */
.atlas-section {
  min-height: 940px;
  padding: 140px 0;
  position: relative;
  background: var(--canvas);
  border-top: 1px solid var(--rule);
}

.atlas-header-col {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-subtle);
}

.atlas-heading-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atlas-title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
}

.atlas-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
}

/* Sovereign Selector Tabs — a mono index strip, not a button cloud: flat ground,
   a hairline rule under the whole row, and only the active territory gets a
   solid underline. No fill, no radius, no glow. */
.atlas-market-tabs {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-subtle);
}

.atlas-tab-btn {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 0 0 6px;
  cursor: pointer;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}

.atlas-tab-btn:hover {
  color: var(--ink);
}

.atlas-tab-btn.active {
  color: var(--bronze-light);
  border-bottom-color: var(--bronze-light);
}

/* Atlas Map & Intelligence Display */
.atlas-interactive-stage {
  grid-column: 1 / 8;
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-map-svg-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.atlas-map-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* SVG Country Geometries */
.atlas-poly path {
  fill: #1C0C09;
  stroke: var(--rule);
  stroke-width: 1.2px;
  stroke-linejoin: round;
  transition: all 0.3s var(--ease-cinematic);
  cursor: pointer;
}

.atlas-poly:hover path {
  fill: #2B130E;
  stroke: var(--bronze-light);
  stroke-width: 1.8px;
  filter: drop-shadow(0 6px 16px rgba(168, 107, 67, 0.3));
}

.atlas-poly.selected path {
  fill: #3A1810;
  stroke: var(--bronze-light);
  stroke-width: 2.2px;
  filter: drop-shadow(0 10px 24px rgba(168, 107, 67, 0.45));
}

/* Atlas Radar Pin */
.atlas-marker-group {
  cursor: pointer;
}

.atlas-marker-pin {
  fill: var(--bronze-light);
  stroke: var(--canvas);
  stroke-width: 2px;
  transition: transform 0.25s ease;
}

.atlas-marker-group:hover .atlas-marker-pin,
.atlas-marker-group.selected .atlas-marker-pin {
  fill: var(--signal-blue);
  transform: scale(1.3);
}

.atlas-marker-text {
  font-family: var(--font-mono);
  font-size: 14px;
  fill: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Atlas Non-Card Intelligence Overlay */
.atlas-dossier-stage {
  grid-column: 8 / 13;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}

.atlas-dossier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.atlas-country-code {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--bronze-light);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.atlas-country-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-green);
}

.atlas-thesis-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
}

/* 4 Clean Data Signals (No Cards, Minimalist Grid) */
.atlas-signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin: 12px 0;
}

.atlas-signal-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.atlas-signal-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.atlas-signal-val {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}

.atlas-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule-subtle);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.atlas-briefing-cta {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bronze-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: all var(--trans-fast);
}

.atlas-briefing-cta:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* ==========================================================================
   Chapter 05: Perspectives (Printed Intelligence Notes)
   ========================================================================== */
.perspectives-section {
  padding: 140px 0;
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--rule);
}

.perspectives-header-col {
  grid-column: 1 / 13;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.perspectives-title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
}

/* Editorial Full-Width Rows */
.perspectives-list {
  grid-column: 1 / 13;
  display: flex;
  flex-direction: column;
}

.perspective-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color var(--trans-fast), padding var(--trans-fast);
}

.perspective-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.perspective-row:hover {
  background: rgba(33, 16, 12, 0.4);
  padding-left: 16px;
  padding-right: 16px;
}

.perspective-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.perspective-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.perspective-date-time {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
}

.perspective-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
}

.perspective-headline {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--ink);
  line-height: 1.25;
  transition: color var(--trans-fast);
}

.perspective-row:hover .perspective-headline {
  color: var(--bronze-light);
}

.perspective-summary {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.55;
}

.perspective-action {
  font-size: 1.4rem;
  color: var(--bronze-light);
  transition: transform var(--trans-fast);
}

.perspective-row:hover .perspective-action {
  transform: translateX(6px);
  color: var(--ink);
}

/* ==========================================================================
   Chapter 06: Final Contact Chapter (Quiet High-Trust Form)
   ========================================================================== */
.contact-section {
  padding: 160px 0;
  position: relative;
  background: var(--canvas);
  border-top: 1px solid var(--rule);
}

.contact-layout-split {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-info-col {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-headline {
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  line-height: 1.1;
  color: var(--ink);
}

.contact-subtext {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-direct-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.contact-point-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-point-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.contact-point-val {
  font-size: 0.95rem;
  color: var(--ink);
}

/* High-Trust Quiet Form (No Boxes, Minimal Underlines) */
.contact-form-col {
  grid-column: 7 / 13;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.iga-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  padding: 12px 0;
  outline: none;
  border-radius: 0;
  transition: border-color var(--trans-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(185, 168, 160, 0.4);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--bronze-light);
}

.form-select option {
  background: var(--surface);
  color: var(--ink);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-privacy-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn-form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bronze-light);
  color: var(--canvas);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--trans-normal);
  margin-top: 8px;
}

.btn-form-submit:hover {
  background: #E4B892;
  box-shadow: 0 8px 24px rgba(168, 107, 67, 0.35);
  transform: translateY(-2px);
}

.form-status-banner {
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--ink);
  display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 80px 0 40px;
  background: #0B0403;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}

.footer-top-row {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--trans-fast);
}

.footer-link:hover {
  color: var(--ink);
}

.footer-bottom-row {
  grid-column: 1 / 13;
  padding-top: 32px;
  border-top: 1px solid var(--rule-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Mobile & Responsive Adaptations (Strict Responsive Polish)
   ========================================================================== */
@media (max-width: 1100px) {
  .grid-12 {
    gap: 24px;
    padding: 0 32px;
  }

  .hero-chapter {
    height: auto;
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-copy-col {
    grid-column: 1 / 13;
    max-width: 100%;
  }

  .hero-visual-stage {
    grid-column: 1 / 13;
    margin-top: 40px;
    justify-content: center;
  }

  .hero-object-wrapper {
    width: 100%;
    transform: none;
  }

  /* Chapters: Object First on Mobile/Tablet */
  .chapter-module {
    min-height: auto;
    padding: 100px 0;
  }

  .chapter-left-text .chapter-copy-col,
  .chapter-right-text .chapter-copy-col {
    grid-column: 1 / 13;
    max-width: 100%;
    order: 2;
  }

  .chapter-left-text .chapter-object-stage,
  .chapter-right-text .chapter-object-stage {
    grid-column: 1 / 13;
    order: 1;
    margin-bottom: 40px;
  }

  .atlas-interactive-stage {
    grid-column: 1 / 13;
    height: 480px;
  }

  .atlas-dossier-stage {
    grid-column: 1 / 13;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-top: 36px;
  }

  .perspective-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-layout-split {
    gap: 40px;
  }

  .contact-info-col, .contact-form-col {
    grid-column: 1 / 13;
  }
}

@media (max-width: 768px) {
  .grid-12 {
    padding: 0 24px;
    gap: 20px;
  }

  .header-container {
    padding: 0 24px;
  }

  .header-nav, .btn-briefing-header {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .manifesto-statement {
    font-size: 2.2rem;
  }

  .manifesto-body-split {
    grid-template-columns: 1fr;
  }

  .manifesto-lead, .manifesto-detail {
    grid-column: 1 / -1;
  }

  .atlas-signals-grid {
    grid-template-columns: 1fr;
  }

  p, .chapter-copy, .hero-subtext {
    font-size: 1rem; /* 16px minimum */
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   Bespoke Lightweight SVG Figures & Stage Lighting
   ========================================================================== */
.chapter-object-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapter-object-stage::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.chapter-object-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.7);
  background: var(--surface);
  transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
}

.chapter-object-wrapper:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.8);
}

.chapter-object-wrapper img,
.chapter-object-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   11-Jurisdiction Operating Atlas Map & Radar Pins
   ========================================================================== */
.atlas-section {
  min-height: 960px;
  padding: 140px 0;
  position: relative;
  background: var(--canvas);
  border-top: 1px solid var(--rule);
}

.atlas-interactive-stage {
  grid-column: 1 / 8;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-map-svg-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-map-svg {
  width: 100%;
  height: auto;
  max-height: 720px;
  overflow: visible;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

/* Polygons for all 11 sovereign markets */
.country-map-poly path,
.atlas-poly path {
  fill: #141824;
  stroke: rgba(229, 195, 120, 0.3);
  stroke-width: 1.2px;
  stroke-linejoin: round;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.country-map-poly:hover path,
.atlas-poly:hover path {
  fill: #1F263B;
  stroke: #E5C378;
  stroke-width: 1.8px;
  filter: drop-shadow(0 0 12px rgba(229, 195, 120, 0.45));
}

.country-map-poly.active path,
.country-map-poly.selected path,
.atlas-poly.active path,
.atlas-poly.selected path {
  fill: #2A2315;
  stroke: #E5C378;
  stroke-width: 2.4px;
  filter: drop-shadow(0 0 20px rgba(229, 195, 120, 0.65));
}

/* Contextual non-focus geography */
.cr-context-hub path,
#context-cr path,
#us path, #bz path, #hn path, #cu path, #ht path, #jm path, #pr path, #bo path {
  fill: #0D0F17 !important;
  stroke: rgba(255, 255, 255, 0.05) !important;
  stroke-width: 0.8px !important;
  pointer-events: none;
}

/* Hub Radar Pins */
.hub-pin-node,
.atlas-marker-group {
  cursor: pointer;
  transition: transform 0.25s ease;
}

.hub-pin-node .pin-core-dot,
.atlas-marker-pin {
  fill: #E5C378;
  stroke: #0A0B10;
  stroke-width: 2px;
  transition: fill 0.25s ease, transform 0.25s ease;
}

.hub-pin-node .pin-pulse-ring {
  fill: none;
  stroke: rgba(229, 195, 120, 0.45);
  stroke-width: 1.5px;
  animation: radar-pulse 3s infinite ease-out;
}

.hub-pin-node .pin-code-label,
.atlas-marker-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  fill: #E2E8F0;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  stroke: #0A0B10;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.hub-pin-node:hover .pin-core-dot,
.hub-pin-node.active .pin-core-dot,
.atlas-marker-group:hover .atlas-marker-pin,
.atlas-marker-group.active .atlas-marker-pin,
.atlas-marker-group.selected .atlas-marker-pin {
  fill: var(--signal-blue);
  stroke: #0A0B10;
  filter: drop-shadow(0 0 12px var(--signal-blue));
}

.hub-pin-node.active .pin-code-label,
.atlas-marker-group.active .atlas-marker-text,
.atlas-marker-group.selected .atlas-marker-text {
  fill: var(--signal-blue);
  font-weight: 900;
}

@keyframes radar-pulse {
  0% { r: 12px; opacity: 0.9; }
  100% { r: 48px; opacity: 0; }
}

/* 11-Market Selector Tabs — see the definitive rule near "Sovereign Selector Tabs" above;
   this second block used to redeclare the same classes as rounded pill chips and win the
   cascade by appearing later. Removed rather than overridden again. */

/* Atlas Sovereign Dossier Panel — a flat dossier page, not a glass dashboard
   widget: one surface, one hairline border, a plain cast shadow. No blur,
   no gradient fill, no inset highlight. */
.atlas-dossier-stage {
  grid-column: 8 / 13;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.7);
}

.atlas-dossier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-subtle);
}

.atlas-country-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.atlas-flag-mark {
  font-size: 1.8rem;
  line-height: 1;
}

.atlas-country-code {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--bronze-light);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.atlas-country-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--signal-blue);
  text-transform: uppercase;
  text-align: right;
}

/* 3-Column Metrics Bar — a plain row divided by hairlines, not a boxed stat card */
.atlas-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-subtle);
  border-bottom: 1px solid var(--rule-subtle);
}

.atlas-metric-unit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--rule-subtle);
}

.atlas-metric-unit:first-child {
  padding-left: 0;
  border-left: none;
}

.atlas-metric-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.atlas-metric-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: #E5C378;
}

.atlas-thesis-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-secondary);
}

/* Strategic Notes Row — a run-in mono list, not a cloud of pill badges */
.atlas-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.atlas-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--bronze-light);
}

.atlas-badge-tag:not(:first-child)::before {
  content: '·';
  color: var(--rule);
  margin: 0 12px;
}

.atlas-signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--rule-subtle);
}

.atlas-signal-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.atlas-signal-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.atlas-signal-val {
  font-size: 0.88rem;
  color: var(--ink-secondary);
  line-height: 1.4;
}

.atlas-meta-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--rule-subtle);
}

/* .atlas-briefing-cta: see the understated text-link rule above — this
   second block used to redeclare it as a gradient glow pill and win the
   cascade by appearing later. Removed rather than overridden again. */
