/* ══════════════════════════════════════════════════════════
   Agents Formation — The website is dead.

   Aesthetic: Manifesto meets Bloomberg Terminal meets
   Kinfolk editorial. Conviction typography. Stark contrasts.
   Warm paper, hard ink. The confidence of someone who
   already built the thing.
   ══════════════════════════════════════════════════════════ */

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealFade {
  to { opacity: 1; }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@keyframes lineGrow {
  to { transform: scaleX(1); }
}
@keyframes shiftRowReveal {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

:root {
  --bg:           #FAF8F4;
  --bg-dark:      #0C0B09;
  --bg-alt:       #F2EFE9;
  --bg-africa:    #1A1610;
  --surface:      #FFFFFF;
  --ink:          #141210;
  --ink-2:        #4A4640;
  --ink-3:        #807A72;
  --ink-4:        #B5AFA6;
  --ink-on-dark:  #F2EFE9;
  --ink-2-dark:   #9E9890;
  --ink-3-dark:   #6B665E;
  --accent:       #C4622A;
  --accent-deep:  #A04D1C;
  --accent-glow:  rgba(196, 98, 42, 0.10);
  --accent-glow2: rgba(196, 98, 42, 0.04);
  --border:       #E4DFD7;
  --border-dark:  #2A2724;
  --border-dark2: #1E1C1A;

  --serif:  'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   'Geist Mono', 'SF Mono', 'Fira Code', Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Nav ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 223, 215, 0.4);
}

.nav-brand {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.nav-brand em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
}

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

.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  transition: color 200ms;
}

.nav-links a:hover { color: var(--ink); }
.nav-link.active { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 200ms !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, var(--accent-glow2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196, 98, 42, 0.02) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: revealFade 0.6s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s 0.3s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: inline-block;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.7s 0.5s ease forwards;
}

.hero-sub strong {
  font-weight: 600;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 0.6s 0.7s ease forwards;
}

/* Hero stats bar */
.hero-stat-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  padding: 32px 0 48px;
  opacity: 0;
  animation: revealFade 0.8s 1s ease forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11.5px;
  color: var(--ink-3);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 220ms;
  letter-spacing: 0.01em;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 98, 42, 0.15);
}

.btn-ghost {
  background: none;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
  border-radius: 10px;
}

/* ── Sections ────────────────────────────────────────────── */

.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--accent);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.4s 0.2s ease forwards;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: 60px;
  font-weight: 300;
}

.section-dark .section-desc {
  color: var(--ink-2-dark);
}

/* ── Thesis ──────────────────────────────────────────────── */

.thesis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.thesis-quote {
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-2-dark);
  font-weight: 300;
  margin-top: 32px;
}

.thesis-quote em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-on-dark);
}

.shift-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.shift-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
  animation: shiftRowReveal 0.5s ease forwards;
  opacity: 0;
}

.shift-row:nth-child(1) { animation-delay: 0.2s; }
.shift-row:nth-child(2) { animation-delay: 0.35s; }
.shift-row:nth-child(3) { animation-delay: 0.5s; }
.shift-row:nth-child(4) { animation-delay: 0.65s; }

.shift-year {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3-dark);
  letter-spacing: 0.06em;
  min-width: 48px;
}

.shift-was {
  font-size: 15px;
  color: var(--ink-3-dark);
  text-decoration: line-through;
  text-decoration-color: rgba(196, 98, 42, 0.4);
}

.shift-row-now {
  border-bottom: none;
  padding-top: 24px;
}

.shift-row-now .shift-year {
  color: var(--accent);
}

.shift-is {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--ink-on-dark);
  letter-spacing: -0.02em;
}

.thesis-bottom-line {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2-dark);
  font-weight: 300;
}

.thesis-bottom-line em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-on-dark);
}

.thesis-bottom-line strong {
  font-weight: 700;
  color: var(--accent);
}

/* ── Death grid (what dies / what lives) ─────────────────── */

.section-contrast {
  padding: 80px 0;
  background:
    linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.death-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.death-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.death-list li {
  font-size: 17px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.death-col-old .death-list li {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
}

.death-list-new li {
  color: var(--ink);
  font-weight: 500;
}

/* ── Proof grid ──────────────────────────────────────────── */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: transform 300ms, box-shadow 300ms;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(20, 18, 16, 0.06);
}

.proof-card-feature {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-color: var(--border-dark);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.proof-card-full {
  grid-column: 1 / -1;
}

.proof-card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.proof-card-inner {
  padding: 48px 44px;
}

.proof-card-feature .proof-desc {
  color: var(--ink-2-dark);
}

.proof-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.proof-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.proof-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 28px;
  font-weight: 300;
}

.proof-flow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 8px 16px 8px 10px;
}

.proof-flow-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.proof-flow-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-on-dark);
  letter-spacing: 0.01em;
}

/* ── Terminal ────────────────────────────────────────────── */

.terminal {
  background: #0C0B09;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.1),
    0 20px 60px rgba(0,0,0,0.12);
  max-width: 680px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: #161412;
  border-bottom: 1px solid #1E1C1A;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2A2724;
}

.terminal-dot:nth-child(1) { background: #E85B4A; }
.terminal-dot:nth-child(2) { background: #DEB04A; }
.terminal-dot:nth-child(3) { background: #5EC269; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: #6B665E;
  letter-spacing: 0.04em;
}

.terminal-body {
  padding: 24px 24px 28px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.8;
}

.t-line { white-space: nowrap; }

.t-prompt {
  color: var(--accent);
  margin-right: 8px;
  user-select: none;
}

.t-cmd {
  color: var(--ink-on-dark);
  font-weight: 500;
}

.t-out {
  color: #6B665E;
  padding-left: 20px;
}

.t-accent {
  color: var(--accent) !important;
}

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: cursorBlink 1.2s step-end infinite;
}

/* ── Africa ──────────────────────────────────────────────── */

.section-africa {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196, 98, 42, 0.06) 0%, transparent 60%),
    var(--bg-africa);
  color: var(--ink-on-dark);
  padding: 100px 0;
}

.africa-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.africa-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2-dark);
  margin-bottom: 20px;
  font-weight: 300;
}

.africa-body p:first-child {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-on-dark);
  margin-bottom: 24px;
}

.africa-impact {
  font-size: 22px !important;
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.africa-impact strong {
  color: var(--accent);
  font-weight: 700;
}

.africa-body strong {
  color: var(--ink-on-dark);
  font-weight: 600;
}

.africa-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border-dark);
  padding-left: 40px;
  margin-top: 40px;
}

.africa-stat {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dark);
}

.africa-stat:last-child { border-bottom: none; }

.africa-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink-on-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.africa-stat-label {
  font-size: 13px;
  color: var(--ink-3-dark);
  font-weight: 400;
}

/* ── Examples ────────────────────────────────────────────── */

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 250ms, box-shadow 250ms;
}

.example-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20, 18, 16, 0.05);
}

.example-prompt {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  flex: 1;
}

.example-outcome {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 16px;
}

.example-industry {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Enterprise Grid ─────────────────────────────────────── */

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.enterprise-card {
  background: var(--bg-alt);
  padding: 40px 28px;
  transition: background 250ms;
}

.enterprise-card:hover {
  background: var(--surface);
}

.enterprise-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.enterprise-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
}

/* ── Install ─────────────────────────────────────────────── */

.install-block {
  max-width: 560px;
  margin-bottom: 40px;
}

.install-step {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.install-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.install-code {
  flex: 1;
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 16px 24px;
}

.install-code code {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-on-dark);
  letter-spacing: -0.01em;
}

.install-note {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.install-note code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-alt);
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.install-links {
  display: flex;
  gap: 14px;
}

/* ── CTA ─────────────────────────────────────────────────── */

.section-cta {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: 100px 0;
}

.cta-container {
  max-width: 720px;
  text-align: center;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 17px;
  color: var(--ink-2-dark);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}

.cta-actions {
  margin-bottom: 72px;
}

.cta-actions .btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.cta-actions .btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 6px 28px rgba(196, 98, 42, 0.2);
}

.cta-signature {
  text-align: center;
}

.cta-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-on-dark);
  margin-bottom: 6px;
}

.cta-location {
  font-size: 13px;
  color: var(--ink-3-dark);
  margin-bottom: 2px;
}

.cta-origin {
  font-size: 13px;
  color: var(--ink-3-dark);
  margin-bottom: 20px;
}

.cta-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3-dark);
  transition: color 200ms;
  letter-spacing: 0.02em;
}

.cta-links a:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-sticky {
  position: sticky;
  bottom: 0;
  z-index: 50;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .nav-brand { font-size: 14px; }
.footer .nav-brand em { font-size: 16px; }

.footer-center {
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--ink-3);
}

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

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1000px) {
  .thesis-layout { grid-template-columns: 1fr; gap: 48px; }
  .africa-layout { grid-template-columns: 1fr; gap: 48px; }
  .africa-stats {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    gap: 32px;
    border-top: 1px solid var(--border-dark);
    padding-top: 32px;
  }
  .africa-stat { border-bottom: none; padding: 0; }
}

@media (max-width: 1000px) {
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .enterprise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .section { padding: 90px 0; }
  .section-cta { padding: 110px 0; }
  .hero { padding: 120px 24px 0; }
  .hero-sub br { display: none; }
  .hero-stat-bar { flex-direction: column; gap: 24px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .death-grid { grid-template-columns: 1fr; gap: 48px; }
  .examples-grid { grid-template-columns: 1fr; }
  .enterprise-grid { grid-template-columns: 1fr; }
  .proof-flow { flex-direction: column; align-items: flex-start; }
  .africa-stats { flex-direction: column; }
  .footer-sticky { position: relative; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-center { order: 1; }
  .terminal { font-size: 12px; }
  .t-line { white-space: pre-wrap; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .cta-title { font-size: 34px; }
  .africa-stat-num { font-size: 36px; }
}
