/* Preserved homepage styles, scoped so the approved opening cannot change. */
@scope (#site-continuation) {
/* ==========================================================================
   ZEROPOINT — BASE STYLES & GLOBAL ARCHITECTURE
   ========================================================================== */

400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line);
  font-weight: var(--text-body-weight);
  color: var(--color-bright-white);
  background-color: var(--color-bg-void);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- CI GRAPHIC LANGUAGE BACKGROUND (Dot Matrix & Precision Lines) --- */
.bg-grid-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(43, 87, 154, 0.18) 0%, transparent 60%),
    radial-gradient(rgba(90, 111, 138, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
  opacity: 0.85;
}

/* --- 3D WEBGL BACKGROUND CONTAINER --- */
#webgl-canvas-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: auto; /* allows interactive rotating/hover */
}

#webgl-canvas-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Two things fade this element and they must not fight: narrow viewports damp
   it because the hero copy sits straight over the sphere. */
#webgl-canvas-container {
  --hero-damp: 1;
  opacity: var(--hero-damp);
}

@media (max-width: 1024px) {
  #webgl-canvas-container { --hero-damp: 0.55; }
}

/* --- APP WRAPPER --- */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  pointer-events: none; /* Let 3D canvas receive pointer events through gaps */
}

.site-wrapper > * {
  pointer-events: auto; /* Re-enable pointer events on interactive UI */
}

/* --- LAYOUT CONTAINER (CI 12-Column System) --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--space-24);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide-width);
  margin-inline: auto;
  padding-inline: var(--space-24);
}

/* --- TYPOGRAPHY UTILITIES (CI Section 03) --- */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-primary);
  color: var(--color-bright-white);
  letter-spacing: -0.02em;
}

.text-display {
  font-size: var(--text-display-size);
  line-height: var(--text-display-line);
  font-weight: var(--text-display-weight);
  letter-spacing: var(--text-display-tracking);
}

.text-h1 {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-line);
  font-weight: var(--text-h1-weight);
  letter-spacing: var(--text-h1-tracking);
}

.text-h2 {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-line);
  font-weight: var(--text-h2-weight);
  letter-spacing: var(--text-h2-tracking);
}

.text-h3 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line);
  font-weight: var(--text-h3-weight);
}

.text-body-large {
  font-size: var(--text-body-large-size);
  line-height: var(--text-body-large-line);
  font-weight: var(--text-body-large-weight);
}

.text-muted {
  color: var(--color-cool-gray);
}

.text-dazzling {
  color: var(--color-dazzling-blue);
}

.text-mono {
  font-family: var(--font-mono);
}

/* --- SECTION STRUCTURE --- */
.section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
}

.section-header {
  margin-bottom: var(--space-48);
  max-width: 680px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-mono);
  font-size: var(--text-caption-size);
  color: var(--color-blue-tint);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-16);
  padding: 4px 12px;
  background: rgba(43, 87, 154, 0.10);
  border: 1px solid rgba(143, 182, 240, 0.28);
  border-radius: var(--radius-pill);
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dazzling-blue);
  box-shadow: 0 0 8px rgba(43, 87, 154, 0.9);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-void);
}

::-webkit-scrollbar-thumb {
  background: var(--color-stormy-weather);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-dazzling-blue);
}

/* --- ACCESSIBILITY FOCUS RING --- */
:focus-visible {
  outline: 3px solid rgba(59, 111, 212, 0.40);
  outline-offset: 3px;
}

/* ==========================================================================
   ZEROPOINT — UI COMPONENTS & DESIGN SYSTEM CONTROLS
   Authoritative Source: ZEROPOINT CI (Section 05 - Digital Design Components)
   ========================================================================== */

/* --- 1. PERSISTENT NAVIGATION BAR (HERO-SPEC Section 2) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 30;
  background: transparent;
  transition: background 220ms cubic-bezier(.2,0,0,1), backdrop-filter 220ms cubic-bezier(.2,0,0,1), -webkit-backdrop-filter 220ms cubic-bezier(.2,0,0,1), border-color 220ms cubic-bezier(.2,0,0,1);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(1, 6, 12, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 244, 240, .10);
}

.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1440px) {
  .nav-inner {
    padding: 0 80px;
  }
}

@media (max-width: 767px) {
  .nav-inner {
    padding: 0 24px;
  }
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #F4F4F0;
  transition: opacity 150ms cubic-bezier(.2,0,0,1);
}

.brand-link:hover {
  opacity: 0.9;
}

.brand-logo-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .30em;
  line-height: 1;
  color: #F4F4F0;
  text-transform: uppercase;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .24em;
  color: #75787B;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-item-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 244, 240, .72);
  text-decoration: none;
  transition: color 150ms cubic-bezier(.2,0,0,1);
  padding: 4px 0;
}

.nav-item-link:hover {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

/* Contact Outline Button (Right) */
.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(244, 244, 240, .28);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms cubic-bezier(.2,0,0,1), border-color 150ms cubic-bezier(.2,0,0,1), color 150ms cubic-bezier(.2,0,0,1);
}

.btn-nav-contact:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 244, 240, .60);
  color: #FFFFFF;
}

.btn-nav-contact:active {
  transform: translateY(1px);
}

.btn-nav-contact .arrow {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 150ms cubic-bezier(.2,0,0,1);
}

.btn-nav-contact:hover .arrow {
  transform: translateX(4px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-signal-green);
  box-shadow: 0 0 10px var(--color-signal-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- 2. BUTTON STANDARDS (CI Page 25: 48px height, 12px radius, 24px padding) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  height: 48px;
  padding: 0 var(--space-24);
  border-radius: var(--radius-control);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--anim-fast), border-color var(--anim-fast), color var(--anim-fast);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-blue-deep);
  color: var(--color-bright-white);
  border: 1px solid rgba(143, 182, 240, 0.28);
}

.btn-primary:hover {
  background: #0E3390;
  border-color: rgba(143, 182, 240, 0.28);
}

.btn-secondary {
  background: rgba(29, 53, 87, 0.3);
  color: var(--color-bright-white);
  border: 1px solid rgba(244, 244, 240, 0.18);
}

.btn-secondary:hover {
  background: rgba(29, 53, 87, 0.5);
  border-color: rgba(244, 244, 240, 0.28);
}

.btn-icon {
  transition: transform var(--anim-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- 3. ELEVATED SOLID CARDS (CI Page 24 & 25) --- */
.card-glass {
  background: #0C141F;
  border: 1px solid rgba(244, 244, 240, 0.10);
  border-radius: var(--radius-card);
  padding: var(--space-24);
  transition: border-color var(--anim-normal);
  position: relative;
  overflow: hidden;
}

.card-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 182, 240, 0.35), transparent);
  opacity: 0;
  transition: opacity var(--anim-fast);
}

.card-glass:hover {
  border-color: rgba(244, 244, 240, 0.18);
}

.card-glass:hover::before {
  opacity: 1;
}

/* --- 4. DATA METRIC BADGES (CI Page 13 & 24) --- */
.metric-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.metric-value {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-bright-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-label {
  font-family: var(--font-body);
  font-size: var(--text-small-size);
  color: var(--color-cool-gray);
  font-weight: 500;
}

.metric-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: var(--text-caption-size);
  color: var(--color-signal-green);
  margin-top: 4px;
}

/* --- 5. MOBILE NAV TOGGLE --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-bright-white);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .system-status-pill {
    display: none;
  }
}

/* ==========================================================================
   ZEROPOINT — SECTION 04: THE FIVE VALUES
   Authoritative Source: VALUES-SPEC.md
   ========================================================================== */

.values-section {
  position: relative;
  background: var(--color-bg-void);
  padding: 128px 48px;
  overflow: hidden;
}

/* --- Three stacked layers --- */
/* z-index 0: WebGL Canvas Host */
.values-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* z-index 1: Scrims */
.values-scrim-v {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, #01060C 0%, rgba(1,6,12,.30) 26%, rgba(1,6,12,.30) 74%, #01060C 100%);
}

.values-scrim-r {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 45%, transparent 42%, rgba(1,6,12,.55) 100%);
}

/* z-index 2: Content Container */
.values-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

/* --- Header --- */
.values-header {
  margin-bottom: 64px;
}

.values-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.values-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dazzling-blue);
  box-shadow: 0 0 12px rgba(43,87,154,.9);
  flex-shrink: 0;
}

.values-eyebrow-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(244,244,240,.62);
  text-transform: uppercase;
  line-height: 1;
}

.values-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #F4F4F0;
  margin-bottom: 16px;
}

.values-dot {
  color: var(--color-dazzling-blue);
}

.values-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body-dim);
  max-width: 520px;
}

/* --- The Five Cards --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  position: relative;
  border-radius: var(--radius-card);       /* 16px */
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 308px;
  background: rgba(244, 244, 240, .028);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  box-shadow: inset 0 1px 1px rgba(244, 244, 240, .10);
  transition: background 150ms cubic-bezier(.2, 0, 0, 1);
}

/* The gradient hairline. Makes the card read as glass */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(244, 244, 240, .50)   0%,
    rgba(143, 182, 240, .18)  18%,
    rgba(244, 244, 240, .05)  42%,
    rgba(244, 244, 240, .05)  58%,
    rgba(143, 182, 240, .18)  82%,
    rgba(244, 244, 240, .50) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
  transition: opacity 150ms cubic-bezier(.2, 0, 0, 1);
}

.value-card:hover { 
  background: rgba(244, 244, 240, .055); 
}

.value-card:hover::before { 
  opacity: 1; 
}

/* Card internals */
.value-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--color-blue-tint);
  line-height: 1;
}

.value-spacer {
  flex: 1;
  min-height: 24px;
}

.value-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #F4F4F0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.value-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: #C3D0DE;
}

/* --- Responsive & Snapping Rail --- */
@media (max-width: 1180px) {
  .values-section {
    padding: 96px 48px;
  }
  .values-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 48px;    /* required — see VALUES-SPEC.md */
    margin: 0 -48px;
    padding: 4px 48px 20px;
    scrollbar-width: none;
  }
  .values-grid::-webkit-scrollbar { 
    display: none; 
  }
  .value-card { 
    flex: 0 0 276px; 
    scroll-snap-align: start; 
  }
}

@media (max-width: 600px) {
  .values-section {
    padding: 80px 24px;
  }
  .values-grid {
    scroll-padding-inline: 24px;
    margin: 0 -24px;
    padding: 4px 24px 20px;
  }
  .value-card { 
    flex: 0 0 82vw; 
    min-height: 260px; 
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .value-card,
  .value-card::before {
    transition: none !important;
  }
}

/* Architecture uses the approved shared css/sections/architecture.css. */

/* ==========================================================================
   ZEROPOINT — SECTION 06: TRUST & SOVEREIGNTY
   Authoritative Source: SECTIONS-05-06-07-SPEC.md (Section 3)
   ========================================================================== */

.trust-section {
  position: relative;
  background: var(--color-bg-void);
  padding: 120px 48px;
}

.trust-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

/* --- Top Two-Column Grid --- */
.trust-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 96px;
  align-items: start;
}

/* Left Column */
.trust-left {
  display: flex;
  flex-direction: column;
}

.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.trust-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dazzling-blue);
  box-shadow: 0 0 12px rgba(43, 87, 154, 0.9);
  flex-shrink: 0;
}

.trust-eyebrow-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(244, 244, 240, 0.62);
  text-transform: uppercase;
  line-height: 1;
}

.trust-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F4F4F0;
  margin-bottom: 16px;
}

.trust-title .dot {
  color: var(--color-dazzling-blue);
}

.trust-lead-primary {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body-dim);
  max-width: 520px;
  margin-bottom: 16px;
}

.trust-lead-secondary {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-cool-gray);
  max-width: 520px;
}

/* Right Column — Three Figures */
.trust-figures {
  display: flex;
  flex-direction: column;
}

.trust-figure-item {
  display: flex;
  flex-direction: column;
  padding: 28px 0;
  box-shadow: 0 -1px 0 rgba(244, 244, 240, 0.10);
}

.trust-figure-item:first-child {
  padding-top: 0;
  box-shadow: none;
}

.trust-figure-item:last-child {
  padding-bottom: 0;
}

.trust-figure-val {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #F4F4F0;
}

.trust-figure-val .plus {
  color: var(--color-dazzling-blue);
}

.trust-figure-cap {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-cool-gray);
  margin-top: 8px;
}

/* --- Below: Claims Table --- */
.trust-claims-wrap {
  margin-top: 96px;
}

.trust-claims-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-cool-gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-claims-list {
  display: flex;
  flex-direction: column;
}

.trust-claim {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  box-shadow: 0 -1px 0 rgba(244, 244, 240, 0.10);
}

.trust-claim-key {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #F4F4F0;
}

.trust-claim-val {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body-dim);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .trust-section {
    padding: 80px 24px;
  }

  .trust-top {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .trust-figures {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .trust-figure-item {
    padding: 0;
    box-shadow: none;
  }

  .trust-claims-wrap {
    margin-top: 64px;
  }

  .trust-claim {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}

/* ==========================================================================
   ZEROPOINT — SECTION 07: CLOSE CTA BAND & FOOTER
   Authoritative Source: SECTIONS-05-06-07-SPEC.md (Section 4)
   ========================================================================== */

.close-section {
  position: relative;
  background: var(--color-bg-void);
  padding: 120px 48px 0;
}

.close-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

/* --- CTA Band --- */
.close-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(244, 244, 240, 0.10);
  background: #151C24;                     /* --zp-slate, the CI's elevated band */
  padding: 88px 72px;
  text-align: center;
}

.close-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 118%, rgba(43, 87, 154, 0.42) 0%, transparent 60%);
}

.close-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(244, 244, 240, 0.52);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}

.close-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #F4F4F0;
  max-width: 760px;
  margin: 0 auto 20px;
}

.close-title .dot {
  color: var(--color-blue-tint);
}

.close-promise {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body-dim);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* The Primary Single CTA Button */
.close-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-control);
  background: var(--color-blue-deep);
  border: 1px solid rgba(143, 182, 240, 0.28);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-bright-white);
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1);
}

.close-cta:hover {
  background: #0E3390;
}

.close-cta:active {
  background: #091F57;
  transform: translateY(1px);
}

.close-cta:focus-visible {
  outline: 3px solid rgba(59, 111, 212, 0.40);
  outline-offset: 3px;
}

.close-cta .arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}

.close-cta:hover .arrow {
  transform: translateX(4px);
}

/* --- Global Footer --- */
.site-footer {
  padding: 104px 48px 48px;
  background: var(--color-bg-void);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

/* Column 1: Brand Lockup */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #F4F4F0;
}

.footer-brand .brand-logo-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-brand .brand-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.30em;
  line-height: 1;
  color: #F4F4F0;
  text-transform: uppercase;
}

.footer-brand .brand-subtitle {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--color-cool-gray);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-cool-gray);
  max-width: 300px;
  margin-top: 16px;
}

.footer-coords {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--color-cool-gray);
  margin-top: 16px;
  line-height: 1.6;
}

/* Columns 2-4: Nav Link Groups */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-group-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-cool-gray);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(244, 244, 240, 0.62);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}

.footer-nav-link:hover {
  color: #F4F4F0;
}

.footer-nav-link:focus-visible {
  outline: 3px solid rgba(59, 111, 212, 0.40);
  outline-offset: 3px;
}

/* Legal Row */
.footer-legal-row {
  padding-top: 32px;
  box-shadow: 0 -1px 0 rgba(244, 244, 240, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cool-gray);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(244, 244, 240, 0.62);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}

.footer-legal-link:hover {
  color: #F4F4F0;
}

.footer-legal-link:focus-visible {
  outline: 3px solid rgba(59, 111, 212, 0.40);
  outline-offset: 3px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .close-section {
    padding: 80px 24px 0;
  }

  .close-band {
    padding: 64px 32px;
  }

  .close-title {
    font-size: 32px;
  }

  .site-footer {
    padding: 64px 24px 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

}
#site-continuation{position:relative;z-index:3;background:#070a10;color:#f4f4f0;line-height:1.6}
/* The portrait galaxy occupies the upper field; bridge its empty lower margin. */
@media(max-width:767px){body:not(.fallback) #site-continuation{margin-top:-24svh}}
