/* ==========================================================================
   SYNOTTIC BRAND TRANSITION — EDITORIAL GLOBAL TECHNOLOGY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Approved Synottic Palette */
  --cipher-teal: #1ACEA0;
  --teal-deep: #0E9E78;
  --teal-mist: #A8F0DF;
  --teal-whisper: #D6FAF3;

  --human-orange: #F47B3A;
  --ember-deep: #C45A1E;
  --ember-glow: #FDDFC9;

  --mind-dark: #0D1A16;
  --policy-navy: #1A2E3B;
  --forest-ink: #2C4A40;
  --body-slate: #4A5568;
  --sage-slate: #6B9E8E;
  --cool-gray: #9AA5B4;
  --clean-canvas: #E8F5F2;
  --warm-white: #FAF8F5;
  --pure-white: #FFFFFF;

  /* Typography System */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing Rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;
  --space-3xl: 13rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout Boundaries */
  --max-width: 1320px;
  --editorial-width: 980px;
  --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--pure-white);
  color: var(--policy-navy);
  line-height: 1.7;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  letter-spacing: -0.015em;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background-color: var(--cipher-teal);
  color: var(--mind-dark);
}

/* Accessible Focus States */
:focus-visible {
  outline: 2px solid var(--cipher-teal);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--mind-dark);
  color: var(--pure-white);
  padding: 12px 22px;
  z-index: 9999;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--mind-dark);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

p {
  color: var(--body-slate);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.editorial-container {
  width: 100%;
  max-width: var(--editorial-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* Editorial Large Headings replacing small uppercase eyebrows */
.orienting-label {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 1.3rem + 0.9vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--policy-navy);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.orienting-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: var(--cipher-teal);
  border-radius: 2px;
}

/* Primary & Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1.05rem 2.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-arrow {
  transition: transform var(--transition-fast);
  display: inline-block;
}

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

.btn-primary {
  background-color: var(--policy-navy);
  color: var(--pure-white);
  border: 1px solid var(--policy-navy);
}

.btn-primary:hover {
  background-color: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--pure-white);
}

.btn-text-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--policy-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.btn-text-link:hover {
  color: var(--teal-deep);
}

/* ==========================================================================
   01. STICKY MINIMAL NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(154, 165, 180, 0.18);
  z-index: 1000;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 1px 8px rgba(13, 26, 22, 0.04);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-legacy {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cool-gray);
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.brand-transition-icon {
  color: var(--cipher-teal);
  display: flex;
  align-items: center;
}

.brand-current {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mind-dark);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--cipher-teal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body-slate);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-cta {
  background-color: var(--policy-navy);
  color: var(--pure-white);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--teal-deep);
  color: var(--pure-white);
}

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(154, 165, 180, 0.3);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--policy-navy);
}

.mobile-nav-menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-bottom: 1px solid rgba(154, 165, 180, 0.2);
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(13, 26, 22, 0.08);
}

.mobile-nav-menu.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.mobile-nav-list a {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--policy-navy);
}

/* ==========================================================================
   02. ASYMMETRIC HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
  background: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.hero-left {
  max-width: 640px;
}

.hero-headline {
  font-size: clamp(3.6rem, 3.2rem + 3.8vw, 6.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--mind-dark);
  margin-bottom: 2rem;
}

.hero-headline .teal-mark {
  color: var(--teal-deep);
}

.hero-supporting {
  font-size: clamp(1.4rem, 1.25rem + 1vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--policy-navy);
  margin-bottom: 1.75rem;
  letter-spacing: -0.025em;
}

.hero-body {
  font-size: 1.12rem;
  color: var(--body-slate);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.75rem;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-img,
.hero-visual-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

/* ==========================================================================
   03. EDITORIAL SPLIT EVOLUTION SECTION
   ========================================================================== */

.evolution-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--pure-white) 0%, var(--warm-white) 100%);
  border-top: 1px solid rgba(154, 165, 180, 0.15);
  border-bottom: 1px solid rgba(154, 165, 180, 0.15);
}

.evolution-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.evolution-manifesto {
  font-size: clamp(2.4rem, 2.1rem + 2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--mind-dark);
}

.evolution-manifesto .highlight {
  color: var(--teal-deep);
}

.evolution-summary-box {
  font-size: 1.2rem;
  color: var(--policy-navy);
  line-height: 1.7;
  font-weight: 500;
  border-left: 3px solid var(--cipher-teal);
  padding-left: 1.75rem;
}

/* Premium Visual Showcase Frame */
.evolution-visual-showcase {
  background: var(--pure-white);
  border: 1px solid rgba(154, 165, 180, 0.22);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(13, 26, 22, 0.05);
  margin-bottom: 3.5rem;
}

.evolution-diagram-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Interactive Pill Transformation Timeline */
.evolution-transition-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.25rem;
  background: var(--pure-white);
  border: 1px solid rgba(154, 165, 180, 0.2);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.transition-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transition-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge-legacy {
  background: var(--warm-white);
  color: var(--body-slate);
}

.badge-current {
  background: var(--teal-whisper);
  color: var(--teal-deep);
}

.transition-term {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mind-dark);
}
  flex-wrap: wrap;
}

.transition-term {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--body-slate);
}

.transition-term.active {
  color: var(--teal-deep);
}

.transition-arrow {
  color: var(--cipher-teal);
  display: flex;
  align-items: center;
}

/* ==========================================================================
   04. MEANING OF SYNOTTIC — TYPOGRAPHY MANIFESTO
   ========================================================================== */

.meaning-section {
  padding: var(--space-3xl) 0;
  background-color: var(--pure-white);
}

.meaning-manifesto-wrapper {
  max-width: 1040px;
}

.meaning-title-display {
  font-size: clamp(4rem, 3.2rem + 5.5vw, 8.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--mind-dark);
  margin-bottom: 2rem;
}

.meaning-rotating-trio {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 1.8rem + 2.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal-deep);
  margin-bottom: 3rem;
  letter-spacing: -0.035em;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.meaning-rotating-trio .word-item {
  transition: color var(--transition-smooth);
}

.meaning-concise-statement {
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--policy-navy);
  max-width: 780px;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   05. THREE INTELLIGENCES — CONNECTED SPATIAL SYSTEM
   ========================================================================== */

.intelligences-section {
  padding: var(--space-2xl) 0;
  background-color: var(--clean-canvas);
  border-top: 1px solid rgba(154, 165, 180, 0.15);
  position: relative;
}

.intelligences-spatial-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Asymmetric Placements */
.intel-card {
  background: var(--pure-white);
  border: 1px solid rgba(154, 165, 180, 0.22);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  z-index: 2;
  transition: border-color var(--transition-fast);
}

.intel-card:hover {
  border-color: var(--cipher-teal);
}

.intel-card.human-card {
  grid-column: 1 / 2;
}

.intel-card.ai-card {
  grid-column: 2 / 3;
  margin-top: 4rem;
}

.intel-card.org-card {
  grid-column: 1 / 3;
  max-width: 620px;
  margin: 2rem auto 0 auto;
}

.intel-label {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--teal-deep);
  margin-bottom: 0.6rem;
}

.intel-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--mind-dark);
  margin-bottom: 1.25rem;
}

.intel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  font-size: 1rem;
  color: var(--body-slate);
}

.intel-list li {
  position: relative;
  padding-left: 14px;
}

.intel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--cipher-teal);
}

/* Human orange accent on human card */
.intel-card.human-card .intel-list li::before {
  background-color: var(--human-orange);
}

/* ==========================================================================
   06. WHAT WE DO — DISCIPLINED HORIZONTAL SYSTEM
   ========================================================================== */

.what-we-do-section {
  padding: var(--space-3xl) 0;
  background-color: var(--pure-white);
}

.journey-header-block {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

.journey-title {
  font-size: clamp(2.4rem, 2rem + 2vw, 3.8rem);
  font-weight: 800;
  color: var(--mind-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.journey-lead {
  font-size: 1.25rem;
  color: var(--body-slate);
  line-height: 1.6;
}

/* Structured Horizontal System */
.horizontal-journey {
  position: relative;
}

.journey-track-line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(154, 165, 180, 0.35);
  z-index: 1;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stage-col {
  display: flex;
  flex-direction: column;
}

.stage-dot-number {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.stage-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--pure-white);
  padding-right: 8px;
}

.stage-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mind-dark);
  margin-bottom: 0.35rem;
}

.stage-outcome {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-slate);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stage-desc {
  font-size: 0.95rem;
  color: var(--body-slate);
  line-height: 1.6;
}

/* ==========================================================================
   07. CONTINUITY — EDITORIAL STATEMENT & COLUMNS
   ========================================================================== */

.continuity-section {
  padding: var(--space-3xl) 0;
  background-color: var(--warm-white);
  border-top: 1px solid rgba(154, 165, 180, 0.15);
}

.continuity-central-statement {
  font-size: clamp(2.4rem, 2rem + 2.4vw, 4.4rem);
  font-weight: 800;
  color: var(--mind-dark);
  line-height: 1.1;
  max-width: 880px;
  margin-bottom: 4.5rem;
  letter-spacing: -0.04em;
}

.continuity-editorial-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.editorial-col-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--policy-navy);
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--policy-navy);
  margin-bottom: 2rem;
}

.editorial-text-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.editorial-text-item {
  font-size: 1.1rem;
  color: var(--body-slate);
  line-height: 1.65;
  padding-left: 1rem;
  border-left: 2px solid var(--cipher-teal);
}

/* Legal Continuity Statement */
.legal-continuity-bar {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(154, 165, 180, 0.2);
  font-size: 1.05rem;
  color: var(--policy-navy);
  font-weight: 600;
}

/* ==========================================================================
   08. ECOSYSTEM — CLEAN ARCHITECTURAL RELATIONSHIP
   ========================================================================== */

.ecosystem-section {
  padding: var(--space-3xl) 0;
  background-color: var(--pure-white);
}

.ecosystem-arch-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ecosystem-parent-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.parent-entity-label {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 1.25rem + 0.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mind-dark);
}

.connecting-down-line {
  width: 1px;
  height: 40px;
  background: var(--cipher-teal);
  margin: 1rem auto;
}

.ecosystem-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.ecosystem-brand-panel {
  padding: 2.75rem;
  border: 1px solid rgba(154, 165, 180, 0.22);
  border-radius: 12px;
}

.ecosystem-brand-panel.synottic-panel {
  border-left: 4px solid var(--cipher-teal);
}

.ecosystem-brand-panel.mhcai-panel {
  border-left: 4px solid var(--policy-navy);
}

.ecosystem-brand-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--mind-dark);
  margin-bottom: 0.4rem;
}

.ecosystem-brand-role {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 1.35rem;
}

.ecosystem-brand-desc {
  font-size: 1.05rem;
  color: var(--body-slate);
  line-height: 1.65;
}

.ecosystem-primary-statement {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--policy-navy);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   09. FOUNDER NOTE — HUMAN EDITORIAL MAGAZINE COMPOSITION
   ========================================================================== */

.founder-section {
  padding: var(--space-3xl) 0;
  background-color: var(--warm-white);
  border-top: 1px solid rgba(154, 165, 180, 0.15);
}

.founder-editorial-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.founder-portrait-col {
  width: 100%;
}

.founder-portrait-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 40px rgba(13, 26, 22, 0.08);
  border: 1px solid rgba(154, 165, 180, 0.2);
}

.founder-editorial-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 1.5rem + 1.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--mind-dark);
  margin-bottom: 2.25rem;
  letter-spacing: -0.035em;
}

.founder-editorial-quote span {
  color: var(--human-orange);
}

.founder-editorial-body {
  font-size: 1.15rem;
  color: var(--body-slate);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.founder-signature-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(154, 165, 180, 0.25);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.founder-identity-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--policy-navy);
}

.founder-identity-titles {
  font-size: 0.95rem;
  color: var(--sage-slate);
  margin-top: 2px;
}

.signature-graphic {
  height: 48px;
  width: auto;
}

/* ==========================================================================
   10. FINAL CTA — LARGE, QUIET, CONFIDENT
   ========================================================================== */

.final-cta-section {
  padding: var(--space-3xl) 0;
  background-color: var(--pure-white);
  text-align: center;
}

.final-cta-container {
  max-width: 820px;
  margin: 0 auto;
}

.final-headline {
  font-size: clamp(3.2rem, 2.8rem + 3.2vw, 5.8rem);
  font-weight: 800;
  color: var(--mind-dark);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 1.75rem;
}

.final-sentence {
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.8rem);
  font-weight: 500;
  color: var(--policy-navy);
  margin-bottom: 3.5rem;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   11. MINIMAL FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--mind-dark);
  color: var(--pure-white);
  padding: 4.5rem 0 3rem 0;
  font-size: 0.92rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-block {
  max-width: 420px;
}

.footer-logo-word {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.footer-brand-statement {
  color: #D1D5DB;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-legal-entity {
  font-size: 0.84rem;
  color: #9CA3AF;
}

.footer-links-grid {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-col-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mist);
  margin-bottom: 0.35rem;
}

.footer-nav-col a {
  color: #D1D5DB;
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--pure-white);
}

.footer-bottom {
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #9CA3AF;
}

/* ==========================================================================
   RESPONSIVE EDITORIAL ADAPTATIONS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid,
  .evolution-split,
  .intelligences-spatial-system,
  .continuity-editorial-columns,
  .ecosystem-brands-grid,
  .founder-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intel-card.human-card,
  .intel-card.ai-card,
  .intel-card.org-card {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .journey-track-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .container,
  .editorial-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
