/* ═══════════════════════════════════════════════════════════
   Safety Critical Labs — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:       #FAFAF8;
  --white:    #FFFFFF;
  --ink:      #0F2340;
  --ink-2:    #3D5068;
  --ink-3:    #7A8FA6;
  --red:      #2E6DB4;
  --red-dk:   #1E5A9A;
  --red-lt:   #EBF1F8;
  --rule:     #E4E8EC;
  --serif:    'Instrument Serif', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --mono:     'IBM Plex Mono', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; background: var(--ink); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── GLOBAL NAV ──────────────────────────────────────────── */
.global-nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(15,35,64,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center;
  justify-content: center;
  padding: 0 48px;
  border-bottom: 2px solid rgba(46,109,180,0.4);
  box-shadow: 0 2px 16px rgba(15,35,64,0.15);
}

.gn-wordmark {
  display: flex; align-items: center;
  text-decoration: none; color: var(--bg); flex-shrink: 0;
}

.gn-text {
  font-family: var(--sans); font-size: 15px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bg);
}
.gn-text em { color: var(--red); font-style: normal; }

.gn-links {
  display: flex; gap: 4px; align-items: center;
  margin-left: 48px; list-style: none;
}
.gn-links > li {
  display: flex; align-items: center;
}

.gn-links a {
  font-family: var(--sans); font-size: 13px;
  font-weight: 400;
  color: rgba(250,250,248,0.7); text-decoration: none;
  padding: 8px 14px; border-radius: 4px;
  transition: color 0.25s;
  position: relative;
  letter-spacing: 0.01em;
}
.gn-links a:hover { color: var(--bg); }
.gn-links a.active {
  color: var(--bg); font-weight: 500;
}

.gn-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  transition: background 0.25s ease !important;
  margin-left: 4px;
}
.gn-cta:hover { background: var(--red-dk) !important; }

/* ─── HAMBURGER BUTTON ───────────────────────────────────── */
.gn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 8px 6px;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.gn-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--bg); border-radius: 1px;
  transition: none;
}
.gn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gn-hamburger.open span:nth-child(2) { opacity: 0; }
.gn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── CREDIBILITY TICKER ─────────────────────────────────── */
.reg-ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
  height: 32px;
  background: #E8ECF2;
  box-shadow: inset 0 -1px 0 rgba(15,35,64,0.08);
  overflow: hidden;
  display: flex; align-items: center;
}

.reg-ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
}
.reg-ticker-track.scrolling {
  animation: ticker-scroll 40s linear infinite;
}

.reg-ticker:hover .reg-ticker-track { animation-play-state: paused; }

.reg-ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px;
  text-decoration: none;
  flex-shrink: 0;
}

.reg-ticker-logo {
  width: 14px; height: 14px; object-fit: contain;
  border-radius: 2px; flex-shrink: 0;
  opacity: 0.9;
}

.reg-ticker-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 2px; opacity: 0.9;
  overflow: hidden;
}
.reg-ticker-icon svg,
.reg-ticker-icon img {
  width: 100%; height: 100%; display: block;
}

.reg-ticker-source {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(15,35,64,0.5);
}

.reg-ticker-text {
  font-family: var(--sans); font-size: 11px;
  font-weight: 400; color: rgba(15,35,64,0.75);
  max-width: 360px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

.reg-ticker-item:hover .reg-ticker-text { color: var(--ink); }

.reg-ticker-date {
  font-family: var(--mono); font-size: 9px;
  color: rgba(15,35,64,0.35);
  letter-spacing: 0.04em;
}

.reg-ticker-sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(15,35,64,0.2);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PAGE SHELL ──────────────────────────────────────────── */
.page-shell { margin-top: 104px; }

/* ─── INNER PAGE HERO ─────────────────────────────────────── */
.inner-hero {
  background: var(--ink);
  padding: 72px 40px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}

.inner-hero::before {
  display: none;
}

.inner-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(250,250,248,0.08) 60%, rgba(250,250,248,0.16) 100%);
  pointer-events: none; z-index: 0;
}

.inner-hero-inner {
  max-width: 1140px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}

.inner-hero-breadcrumb {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.inner-hero-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; }
.inner-hero-breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.inner-hero-breadcrumb span { color: rgba(255,255,255,0.15); }

.inner-hero h1 {
  font-family: var(--sans);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 600; line-height: 1.05;
  color: #fff; letter-spacing: -0.025em;
}
.inner-hero h1 em { font-style: italic; color: var(--red); font-family: var(--serif); font-weight: 400; font-size: 1.05em; }

.inner-hero-lead {
  font-size: 17px; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.75;
  border-left: 2px solid var(--red); padding-left: 20px;
  align-self: end;
}

/* ─── SECTION BASE ────────────────────────────────────────── */
.page-section { padding: 96px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 16px; height: 1px; background: currentColor;
}

h2.section-title {
  font-family: var(--sans);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600; line-height: 1.08;
  color: var(--ink); margin-bottom: 20px;
  letter-spacing: -0.025em;
}
h2.section-title em { font-style: italic; color: var(--red); font-family: var(--serif); font-size: 1.05em; font-weight: 400; }

.section-lead {
  font-size: 18px; color: var(--ink-2);
  font-weight: 300; line-height: 1.8;
  max-width: 620px; margin-bottom: 56px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  font-family: var(--sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; transition: all 0.25s ease;
  display: inline-block; cursor: pointer;
  border: none;
}
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--red); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dk); }
.btn-outline {
  border: 1px solid var(--rule); color: var(--ink-2);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); background: transparent;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.btn-white {
  background: #fff; color: var(--ink);
  font-family: var(--sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-white:hover { background: var(--bg); }

.btn-ghost-white {
  border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.8);
  font-family: var(--sans); font-size: 14px;
  font-weight: 500;
  padding: 13px 28px; border-radius: 4px;
  text-decoration: none; transition: all 0.15s;
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }

/* ─── DIVIDER ─────────────────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ─── FRAMEWORK CARDS ─────────────────────────────────────── */
.framework-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.req-card {
  background: var(--white);
  border: 1px solid var(--rule); border-radius: 4px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.req-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.req-id {
  font-family: var(--mono); font-size: 11px;
  color: var(--red); letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.req-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.req-body { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

.req-scope {
  display: inline-block; margin-top: 14px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--rule);
  padding: 3px 8px; border-radius: 2px;
}

/* ─── SCROLL ANIMATIONS (GSAP) ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Line-by-line text reveal */
.line-reveal {
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

/* Stagger children animation */
.stagger-in > * {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

/* Scale-in for cards and images */
.scale-in {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  will-change: transform, opacity;
}

/* Slide from left/right */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  will-change: transform, opacity;
}
.slide-right {
  opacity: 0;
  transform: translateX(60px);
  will-change: transform, opacity;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .line-reveal, .scale-in, .slide-left, .slide-right,
  .stagger-in > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 0;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px 36px;
}

.footer-top {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px;
}

.footer-wordmark {
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.footer-wordmark .footer-seal {
  width: 72px; height: 72px;
  object-fit: contain; display: block;
}
.footer-wordmark .gn-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.footer-wordmark .gn-text em {
  color: var(--red);
  font-style: normal;
}
.footer-wordmark:hover { opacity: 0.8; }

/* Footer — row layout variant (logo on left, tabs + tagline on right) */
.footer-top--row {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 64px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer-top--row .footer-wordmark .gn-text { display: none; }
.footer-top--row .footer-wordmark .footer-seal {
  width: 320px; height: auto;
  display: block;
}
.footer-top--row .footer-content {
  flex: 1; align-items: flex-start;
  text-align: left;
  min-width: 280px;
}
.footer-top--row .footer-nav-row { justify-content: flex-start; }
.footer-top--row .footer-tagline {
  text-align: left;
  max-width: 600px; margin: 0;
}

.footer-content {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-nav-row {
  display: flex; gap: 36px; flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-row a {
  font-family: var(--sans); font-size: 14px;
  font-weight: 500; letter-spacing: 0.04em;
  color: rgba(250,250,248,0.65); text-decoration: none;
  transition: color 0.25s;
}
.footer-nav-row a:hover { color: var(--bg); }

.footer-tagline {
  font-size: 15px; color: rgba(250,250,248,0.35);
  line-height: 1.8; font-weight: 300;
  max-width: 480px; text-align: center;
}

.footer-divider {
  height: 1px; background: rgba(250,250,248,0.08);
  margin: 56px 0 24px;
}

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

.footer-copyright {
  font-size: 13px; color: rgba(250,250,248,0.3);
}

.footer-version {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; color: rgba(250,250,248,0.25);
}

/* ─── NOTE BOX ────────────────────────────────────────────── */
.note-box {
  padding: 20px 24px;
  background: var(--white); border: 1px solid var(--rule);
  border-left: 3px solid var(--red); border-radius: 0 4px 4px 0;
  display: flex; gap: 16px; align-items: flex-start;
}
.note-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); flex-shrink: 0; padding-top: 3px; min-width: 80px;
}
.note-text { font-size: 13px; color: var(--ink-2); line-height: 1.65; }
.note-text strong { color: var(--ink); }

/* ─── HOME HERO ───────────────────────────────────────────── */
.home-hero {
  background: var(--ink);
  min-height: calc(100vh - 56px);
  display: flex; align-items: center;
  padding: 80px 40px;
  position: relative; overflow: hidden;
}

.home-hero::before {
  display: none;
}

.home-hero-inner {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--red); }

.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400; line-height: 1.04;
  color: #fff; letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.home-hero h1 em { font-style: italic; color: var(--red); }

.hero-body {
  font-size: 18px; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.75; margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right { display: flex; flex-direction: column; gap: 16px; }

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 22px 24px;
  text-decoration: none; display: block;
  transition: border-color 0.2s, background 0.2s;
}
.hero-card:hover {
  border-color: rgba(200,39,45,0.45);
  background: rgba(200,39,45,0.05);
}

.hc-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.hc-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.hc-body { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }

.hc-arrow {
  float: right; color: rgba(255,255,255,0.2);
  font-size: 16px; margin-top: -2px;
  transition: color 0.15s;
}
.hero-card:hover .hc-arrow { color: var(--red); }

/* ─── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0 40px;
}

.stats-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.stat-block {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-num {
  font-family: var(--serif); font-size: 44px;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-num em { color: var(--red); font-style: normal; }

.stat-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); line-height: 1.4;
}

/* ─── WHAT WE DO ──────────────────────────────────────────── */
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.what-body p {
  font-size: 16px; color: var(--ink-2); line-height: 1.8;
  font-weight: 300; margin-bottom: 18px;
}
.what-body p strong { color: var(--ink); font-weight: 500; }

.analogy-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }

.atag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid var(--rule); border-radius: 2px;
  padding: 6px 12px; color: var(--ink-3); background: transparent;
  cursor: default;
}
.atag.highlight { color: var(--red); border-color: rgba(200,39,45,0.25); background: var(--red-lt); }

.page-preview-cards { display: flex; flex-direction: column; gap: 12px; }

.ppc {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 4px; padding: 20px 22px;
  display: flex; gap: 20px; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.ppc:hover { border-color: var(--red); transform: translateX(4px); }

.ppc-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--red); flex-shrink: 0; padding-top: 2px;
  min-width: 28px;
}
.ppc-body { flex: 1; }
.ppc-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.ppc-desc { font-size: 12px; color: var(--ink-3); line-height: 1.55; }
.ppc-arrow { color: var(--rule); font-size: 14px; flex-shrink: 0; padding-top: 2px; transition: color 0.15s; }
.ppc:hover .ppc-arrow { color: var(--red); }

/* ─── URGENCY BAND ────────────────────────────────────────── */
.urgency-band {
  background: var(--ink);
  padding: 80px 40px;
}

.ub-inner {
  max-width: 1140px; margin: 0 auto;
}

.ub-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 48px;
}

.ub-header .section-eyebrow { color: rgba(255,255,255,0.3); }
.ub-header .section-eyebrow::before { background: rgba(255,255,255,0.3); }
.ub-header h2.section-title { color: #fff; }

.ub-lead {
  font-size: 16px; color: rgba(255,255,255,0.45);
  font-weight: 300; line-height: 1.75;
  border-left: 2px solid var(--red); padding-left: 20px;
  align-self: end;
}

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

.ub-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.ub-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,39,45,0.3);
}

.ub-std {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.ub-title { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 6px; line-height: 1.35; }
.ub-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

.ub-cta { margin-top: 40px; display: flex; gap: 12px; }

/* ─── FOUNDER PREVIEW ─────────────────────────────────────── */
.founder-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.fp-left p {
  font-size: 16px; color: var(--ink-2); line-height: 1.8;
  font-weight: 300; margin-bottom: 18px;
}
.fp-left p strong { color: var(--ink); font-weight: 500; }

.fp-quote {
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--ink-2); line-height: 1.55;
  border-left: 2px solid var(--red); padding-left: 20px;
  margin: 28px 0;
}

.fp-byline {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
  margin-top: 20px; line-height: 1.7;
}

.fp-cards { display: flex; flex-direction: column; gap: 12px; }

.fp-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 4px; padding: 22px 24px;
}
.fp-card-org {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.fp-card-role { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.fp-card-desc { font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.fp-card-award {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--red-lt); border: 1px solid rgba(200,39,45,0.2);
  color: var(--red); padding: 4px 10px; border-radius: 2px;
}

/* ─── HOME CTA ────────────────────────────────────────────── */
.home-cta {
  background: var(--white);
  padding: 72px 40px;
  text-align: center;
}

.home-cta-closing {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink); font-weight: 400;
  line-height: 1.5; max-width: 600px;
  margin: 0 auto 32px;
}

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid rgba(15,35,64,0.25);
  padding: 14px 28px; border-radius: 3px;
  text-decoration: none; transition: all 0.25s;
}
.btn-outline-dark:hover {
  border-color: var(--ink);
  background: var(--ink); color: var(--white);
}

.home-cta-row { display: flex; gap: 12px; justify-content: center; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 880px) {
  .global-nav { padding: 0 20px; }
  .gn-hamburger { display: flex; }
  .gn-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px);
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 0;
    margin-left: 0;
    border-top: 1px solid rgba(250,250,248,0.1);
    overflow-y: auto;
    z-index: 200;
  }
  .gn-links.open { display: flex; }
  .gn-links > li { display: block; }
  .gn-links li { list-style: none; }
  .gn-links > li > a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: rgba(250,250,248,0.85);
    border-bottom: 1px solid rgba(250,250,248,0.1);
    border-radius: 0;
  }
  .gn-links > li > a:hover { background: none; color: var(--red); }
  .gn-links > li:last-child > a { border-bottom: none; }
  .gn-cta {
    background: var(--red) !important;
    color: #fff !important;
    text-align: center;
    margin-left: 0 !important;
    margin-top: 16px;
    padding: 14px 24px !important;
    border-radius: 4px !important;
    border-bottom: none !important;
  }
  .gn-dropdown { position: static; }
  .gn-dropdown-toggle {
    display: flex; width: 100%; align-items: center;
    padding: 14px 0; font-size: 16px;
    color: rgba(250,250,248,0.85);
    border-bottom: 1px solid rgba(250,250,248,0.1);
    border-radius: 0;
    gap: 6px;
  }
  .gn-dropdown-arrow { margin-left: 4px; }
  .gn-dropdown-menu {
    display: none;
    position: static;
    background: none;
    backdrop-filter: none;
    border: none; border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .gn-dropdown.open .gn-dropdown-menu {
    display: block;
  }
  .gn-dropdown-menu a {
    padding: 12px 0 12px 20px !important;
    font-size: 15px !important;
    color: rgba(250,250,248,0.65) !important;
    border-bottom: 1px solid rgba(250,250,248,0.06);
  }
  .gn-dropdown-menu li:last-child a {
    border-bottom: 1px solid rgba(250,250,248,0.1);
  }
  .inner-hero { padding: 60px 24px 48px; }
  .inner-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-section { padding: 56px 24px; }
  .framework-grid { grid-template-columns: 1fr 1fr; }
  .home-hero { padding: 60px 24px; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-strip { padding: 0 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .ub-header { grid-template-columns: 1fr; gap: 20px; }
  .ub-grid { grid-template-columns: 1fr; }
  .founder-preview { grid-template-columns: 1fr; gap: 40px; }
  .urgency-band { padding: 60px 24px; }
  .home-cta { padding: 60px 24px; }
  .footer-inner { padding: 48px 24px 24px; }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .footer-nav-row { justify-content: center; }
  .footer-tagline { margin: 0 auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .framework-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ─── NAV DROPDOWN ───────────────────────────────────────── */
.gn-dropdown {
  position: relative;
}
.gn-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
  border: none; outline: none;
  background: none;
}
.gn-dropdown-toggle.has-active { color: var(--bg); font-weight: 500; }
.gn-dropdown-arrow {
  width: 6px; height: 6px;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-top: -2px;
  transition: transform 0.25s;
}
.gn-dropdown.open .gn-dropdown-arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.gn-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: rgba(15,35,64,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  list-style: none;
  z-index: 300;
}
.gn-dropdown.open .gn-dropdown-menu {
  display: block;
}
.gn-dropdown-menu li {
  list-style: none;
}
.gn-dropdown-menu a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,250,248,0.65);
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-radius: 0;
}
.gn-dropdown-menu a:hover {
  color: var(--bg);
  background: rgba(250,250,248,0.06);
}
.gn-dropdown-menu a.active {
  color: var(--bg);
  font-weight: 500;
}