/* ═══════════════════════════════════════════════════════════════
   MENTAT RECON — MAIN STYLESHEET
   Design: Near-black bg, olive + gold accents, Share Tech Mono
═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary:     #0a0a0f;
  --bg-secondary:   #0e0e16;
  --bg-card:        #111119;
  --bg-card-hover:  #16161f;
  --olive:          #8b9a3f;
  --olive-dark:     #6b7a2f;
  --olive-dim:      rgba(139,154,63,0.15);
  --gold:           #c4a44e;
  --gold-bright:    #d4b85c;
  --gold-dim:       rgba(196,164,78,0.15);
  --text-primary:   #e8e8f0;
  --text-secondary: #9090a8;
  --text-dim:       #555568;
  --border:         rgba(139,154,63,0.25);
  --border-bright:  rgba(196,164,78,0.4);
  --grid-overlay:   rgba(139,154,63,0.04);
  --font-mono:      'Share Tech Mono', monospace;
  --font-data:      'JetBrains Mono', monospace;
  --font-body:      'Inter', sans-serif;
  --ticker-h:       32px;
  --commem-h:       36px;
  --nav-h:          64px;
  --header-total:   calc(var(--ticker-h) + var(--commem-h) + var(--nav-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  background-image:
    linear-gradient(rgba(139,154,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,154,63,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  min-height: 100vh;
}

/* ── COMMEMORATIVE BANNER ────────────────────────────────────── */
.commemorative-banner {
  position: fixed;
  top: var(--ticker-h);
  left: 0; right: 0;
  height: var(--commem-h);
  background: linear-gradient(90deg, rgba(10,20,10,0.97) 0%, rgba(15,25,8,0.97) 50%, rgba(10,20,10,0.97) 100%);
  border-bottom: 1px solid rgba(196,164,78,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 998;
  padding: 0 16px;
  backdrop-filter: blur(8px);
}
.commem-text {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  text-align: center;
}
.commem-dismiss {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.6;
  flex-shrink: 0;
}
.commem-dismiss:hover { opacity: 1; }
/* When banner is dismissed, nav slides up */
body.commem-gone .commemorative-banner { display: none; }
body.commem-gone .nav { top: var(--ticker-h); }
body.commem-gone .hero { padding-top: calc(var(--ticker-h) + var(--nav-h)); }

/* ── 250TH INDEPENDENCE BANNER ───────────────────────────────── */
.independence-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: var(--header-total) 24px 0;
  background: linear-gradient(135deg, #0d1a0d 0%, #111a08 50%, #0d1a0d 100%);
  border-bottom: 1px solid rgba(196,164,78,0.5);
  text-align: center;
  flex-wrap: wrap;
}
.ib-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 6px;
  animation: pulse 2s ease-in-out infinite;
}
.ib-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
}

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: rgba(10,10,15,0.95);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.15em;
}
.ticker-track span::before { content: '◆ '; color: var(--gold); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: calc(var(--ticker-h) + var(--commem-h));
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,15,0.97);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: bold;
}
.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }
.nav-cta {
  border: 1px solid var(--olive) !important;
  padding: 8px 18px;
  color: var(--olive) !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--olive-dim) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 22px; cursor: pointer; }

/* ── CLASSIFICATION BANNER ───────────────────────────────────── */
.classification-banner {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-align: center;
  padding: 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  min-height: 100vh;
  padding-top: var(--header-total);
  align-items: center;
}
.status-rail {
  padding: 40px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
  justify-content: center;
  background: rgba(14,14,22,0.6);
}
.status-rail--right { border-right: none; border-left: 1px solid var(--border); }
.rail-item { display: flex; flex-direction: column; gap: 4px; }
.rail-label {
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.rail-value {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--olive);
  letter-spacing: 0.1em;
}
.rail-value.elevated { color: var(--gold); }
.rail-value.coords { font-size: 10px; }
.pulse-dot::before {
  content: '● ';
  color: var(--olive);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-center {
  padding: 0px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero-classification {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 4px 12px;
}
.hero-headline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.hero-accent { color: var(--gold); }
.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--bg-primary);
  background: var(--olive);
  border: none;
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--olive-dark); }
.btn-primary.btn-large { font-size: 13px; padding: 18px 48px; }
.btn-secondary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--olive);
  border: 1px solid var(--olive);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--olive-dim); }

/* ── GLOBE ───────────────────────────────────────────────────── */
.globe-section {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.globe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1560px;
  margin: 0 auto;
}
.globe-text {
  text-align: left;
  max-width: 800px;
  align-self: center;
}
.globe-list {
  text-align: left;
  display: block;
  padding-left: 20px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 2;
  font-size: 14px;
}
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.globe-ring--1 { width: 320px; height: 320px; animation: spin 30s linear infinite; }
.globe-ring--2 { width: 220px; height: 220px; border-color: var(--olive-dim); animation: spin 20s linear infinite reverse; }
.globe-ring--3 { width: 120px; height: 120px; border-color: rgba(196,164,78,0.2); animation: spin 10s linear infinite; }
.globe-core {
  position: absolute;
  width: 60px; height: 60px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,154,63,0.4) 0%, transparent 70%);
  border: 1px solid var(--olive);
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.globe-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotpulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold);
}
.globe-dot--1  { top: 20%; left: 30%; animation-delay: 0s; }
.globe-dot--2  { top: 35%; left: 70%; animation-delay: 0.3s; }
.globe-dot--3  { top: 55%; left: 20%; animation-delay: 0.6s; }
.globe-dot--4  { top: 65%; left: 60%; animation-delay: 0.9s; }
.globe-dot--5  { top: 25%; left: 55%; animation-delay: 1.2s; }
.globe-dot--6  { top: 70%; left: 40%; animation-delay: 1.5s; }
.globe-dot--7  { top: 45%; left: 80%; animation-delay: 1.8s; }
.globe-dot--8  { top: 80%; left: 75%; animation-delay: 0.4s; }
@keyframes dotpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.globe-scanline {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(139,154,63,0.03) 3px,
    rgba(139,154,63,0.03) 4px
  );
  pointer-events: none;
}
.globe-status {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--olive);
}
.globe-info { display: flex; flex-direction: column; gap: 32px; }
.globe-info-block h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table td {
  font-family: var(--font-data);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(139,154,63,0.1);
}
.info-table td:first-child { color: var(--text-dim); letter-spacing: 0.1em; width: 55%; }
.info-table td:last-child  { color: var(--olive); text-align: right; }
.discipline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.discipline-grid span {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 12px;
  text-align: center;
}

/* ── CAPABILITIES PREVIEW ────────────────────────────────────── */
.capabilities-preview {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-secondary); max-width: 560px; margin: 0 auto 20px; }
.section-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--olive);
  text-decoration: none;
}
.section-link:hover { color: var(--gold); }
.capability-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cap-card {
  background: var(--bg-card);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.cap-card:hover { background: var(--bg-card-hover); border-color: var(--olive); }
.cap-card-id {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.cap-card h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 12px;
}
.cap-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── METRICS ─────────────────────────────────────────────────── */
.metrics-section {
  background: var(--bg-secondary);
  padding: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.metric-item { padding: 32px; border-right: 1px solid var(--border); }
.metric-item:last-child { border-right: none; }
.metric-value {
  font-family: var(--font-mono);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.metric-label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* ── CASES ───────────────────────────────────────────────────── */
.cases-section {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto;
}
.case-narrative { margin-bottom: 40px; }
.case-narrative p {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 20px 0;
  border-bottom: 1px solid rgba(139,154,63,0.1);
  line-height: 1.8;
}
.case-narrative p strong { color: var(--text-primary); }
.case-narrative p:last-of-type { border-bottom: none; }
.case-close {
  margin-top: 32px;
  font-size: 16px;
  color: var(--text-primary);
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  line-height: 1.7;
}
.case-close strong { color: var(--gold); }

/* ── 250TH COMMEMORATION SECTION ────────────────────────────── */
.commemoration-section {
  padding: 0 60px 15px;
  margin-top: 0;
  border-top: 1px solid rgba(196,164,78,0.3);
  border-bottom: 1px solid rgba(196,164,78,0.3);
  background: linear-gradient(180deg, #0a0a0f 0%, #0d120a 50%, #0a0a0f 100%);
  text-align: center;
}
.commemoration-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 0;
}
.comm-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 5px;
}
.comm-year {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  border: 1px solid rgba(196,164,78,0.4);
  padding: 6px 20px;
}
.comm-headline {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.2em;
  color: var(--text-primary);
}
.comm-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.comm-quote {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  border: none;
  padding: 0 20px;
  max-width: 640px;
}
.comm-attribution {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.comm-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 580px;
}
.ega-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.ega-img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(196,164,78,0.5));
}
.ega-text {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.4em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(196,164,78,0.5);
}
.ega-sub {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 20px 60px 120px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,154,63,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,154,63,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.cta-content p { color: var(--text-secondary); margin-bottom: 40px; font-size: 15px; line-height: 1.8; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--text-primary);
}
.footer-meta {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-links {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-links a:hover { color: var(--olive); }
.footer-legal { font-size: 11px; color: var(--text-dim); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--header-total) - 40px); }
  .status-rail { display: none; }
  .hero-center { padding: 60px 32px; }
  .capability-cards { grid-template-columns: repeat(2, 1fr); }
  .globe-layout { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }

}
@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-logo-img { height: 24px; }
  .nav-logo-text { font-size: 10px; letter-spacing: 0.15em; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--header-total) - 40px); }
  .status-rail { display: none; }
  .hero-center { padding: 32px 20px; }

  /* Sections */
  .globe-section, .capabilities-preview, .cases-section, .final-cta, .footer { padding: 40px 20px; }
  .commemoration-section { padding: 0 20px 20px; }
  .commemoration-inner { gap: 16px; }
  .metrics-section { padding: 40px 20px; }

  /* Cards */
  .capability-cards { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }


  /* Fixed header text */
  .commem-text { font-size: 8px; letter-spacing: 0.1em; }

  /* Images — constrained */
  .nav-logo-img { height: 24px; }
  .comm-ega { height: 64px; }
  .footer-logo { height: 36px; }

  /* Independence banner */
  .independence-banner { gap: 10px; padding-bottom: 12px; }
  .ib-text { font-size: 9px; letter-spacing: 0.1em; }

  /* Prevent any element from blowing out mobile width */
  img, iframe, canvas, svg { max-width: 100%; }
}

/* ── Worldview Live Preview Embed ──────────────────────────── */
.worldview-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid rgba(107,124,63,0.3);
  border-radius: 4px;
  overflow: hidden;
  background: #080a0c;
  box-shadow: 0 0 40px rgba(107,124,63,0.12), 0 0 0 1px rgba(107,124,63,0.1);
  margin: 0 auto;
}
.worldview-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.wv-label {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 10;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(107,124,63,0.8);
  pointer-events: none;
}
.wv-live {
  color: #8a9f52;
  animation: wv-blink 2s infinite;
}
@keyframes wv-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.wv-overlay-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(107,124,63,0.4);
  white-space: nowrap;
  pointer-events: none;
}
/* Corner accent marks */
.worldview-embed::before,
.worldview-embed::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: rgba(107,124,63,0.5);
  border-style: solid;
  z-index: 10;
}
.worldview-embed::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.worldview-embed::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}

/* ── EGA Emblem ─────────────────────────────────────────────── */
.comm-ega {
  display: block;
  margin: 16px auto;
  height: 120px;
  width: auto;
}

/* ── Footer Logo ────────────────────────────────────────────── */
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}


/* ── COMBINED CAPABILITY / PARTNERSHIP ──────────────────────── */
.combined-section {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.combined-section h2 {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.combined-section > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 640px;
}
.combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
}
.combined-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.combined-card-label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 14px;
}
.combined-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.combined-close {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  line-height: 1.8;
}
.combined-close strong { color: var(--text-primary); }

@media (max-width: 640px) {
  .combined-section { padding: 40px 20px; }
  .combined-grid { grid-template-columns: 1fr; }
  .combined-card { padding: 24px 20px; }
  .combined-close { padding: 20px; }
}

/* ── COMMEMORATION: SEMPER / CORPS ──────────────────────────── */
.comm-semper {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.4em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(196,164,78,0.4);
}
.comm-corps {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── GLOBE TEXT NARRATIVE ────────────────────────────────────── */
.globe-text h2 {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.globe-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 8px;
}
.section-label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--olive);
  margin-bottom: 12px;
  text-transform: uppercase;
}
