:root {
  --ink: #0E2225;
  --teal-deep: #0E4A54;
  --teal-mid: #1C7180;
  --teal-line: rgba(14, 74, 84, 0.16);
  --blue: #2B72B8;
  --orange: #F2801E;
  --orange-soft: #FBB255;
  --bg: #F5F7F5;
  --paper: #FFFFFF;
  --card: #EEF3F1;
  --muted: #4C6367;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

a { color: inherit; }
img { max-width: 100%; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- NAV ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 247, 245, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--teal-line);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px; margin: 0 auto;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem;
  text-decoration: none;
}

.brand-logo { height: 36px; width: auto; flex-shrink: 0; }

nav.links {
  display: flex; gap: 30px; font-size: 0.92rem; font-weight: 500;
}

nav.links a {
  text-decoration: none; color: var(--ink);
  position: relative; padding: 4px 0;
}

nav.links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}

nav.links a:hover::after,
nav.links a.active::after { width: 100%; }
nav.links a.active { color: var(--teal-deep); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-deep); color: #fff; text-decoration: none;
  padding: 10px 20px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--ink); cursor: pointer; padding: 4px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 88px 32px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero h1 .accent { color: var(--orange); }

.hero p.lede {
  margin-top: 22px; font-size: 1.13rem;
  line-height: 1.6; color: var(--muted); max-width: 46ch;
}

.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  font-weight: 600; font-size: 0.96rem; text-decoration: none;
  padding: 14px 26px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(242, 128, 30, 0.55);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(242, 128, 30, 0.6); }

.btn-ghost {
  background: transparent; color: var(--teal-deep);
  border: 1.5px solid var(--teal-line);
}

.btn-ghost:hover { border-color: var(--teal-deep); transform: translateY(-2px); }

.hero-visual { position: relative; height: 420px; }
.hero-visual svg { width: 100%; height: 100%; }

.trajectory-path {
  stroke: url(#trajGradient);
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 2.1s cubic-bezier(.3, .9, .3, 1) forwards .3s;
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.spark {
  transform-origin: center;
  animation: spark-pop 0.6s ease-out forwards 1.9s;
  opacity: 0; transform: scale(0.3);
}

@keyframes spark-pop { to { opacity: 1; transform: scale(1); } }

.node {
  opacity: 0;
  animation: node-in 0.5s ease forwards;
}

.node.n1 { animation-delay: 0.5s; }
.node.n2 { animation-delay: 1.05s; }
.node.n3 { animation-delay: 1.6s; }

@keyframes node-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.stat-row {
  display: flex; gap: 0; margin-top: 56px;
  border-top: 1px solid var(--teal-line); padding-top: 28px;
}

.stat { flex: 1; padding-right: 24px; }
.stat + .stat { border-left: 1px solid var(--teal-line); padding-left: 24px; }

.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--teal-deep);
}

.stat .lbl { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ---------- SECTION SCAFFOLDING ---------- */
section { padding: 96px 0; }

.section-head { max-width: 640px; margin-bottom: 52px; }

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 700; margin-top: 10px; line-height: 1.15;
}

.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; line-height: 1.6; }

.diagonal-divider {
  position: relative; height: 64px; background: var(--teal-deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ---------- SERVICES ---------- */
.services-band { background: var(--paper); border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); }

.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--teal-line);
  border: 1px solid var(--teal-line); border-radius: var(--radius); overflow: hidden;
}

.service-card {
  background: var(--paper); padding: 34px 26px; position: relative;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.service-card.in-view { opacity: 1; transform: translateY(0); }

.service-card .idx {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem; color: var(--orange); font-weight: 500;
}

.service-icon { width: 40px; height: 40px; margin: 18px 0 16px; }

.service-card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }

.service-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- GOVERNMENT / FUNDING ---------- */
.gov-section {
  background: var(--teal-deep); color: #EAF3F1;
  position: relative; overflow: hidden;
}

.gov-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gov-section .eyebrow { color: var(--orange-soft); }
.gov-section h2 { color: #fff; }

.gov-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }

.gov-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 1rem; line-height: 1.5;
}

.gov-list li .mark { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.gov-list li span.t { color: rgba(234, 243, 241, 0.88); }

.gov-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius); padding: 34px;
}

.gov-panel .row {
  display: flex; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.gov-panel .row:last-child { border-bottom: none; }

.gov-panel .row b {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--orange-soft); font-weight: 600;
}

/* ---------- PROCESS ---------- */
.process { background: var(--bg); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-line) 0 10px, transparent 10px 18px);
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; color: var(--teal-deep); font-size: 0.95rem;
}

.step h3 { font-size: 1.08rem; font-weight: 600; margin: 18px 0 8px; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { position: relative; padding: 76px 32px 56px; overflow: hidden; }

.page-hero-inner { max-width: 1180px; margin: 0 auto; }

.page-hero-inner.centered { max-width: 760px; text-align: center; }

.page-hero-inner.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.2rem);
  line-height: 1.08; font-weight: 700;
}

.page-hero h1 .accent { color: var(--orange); }

.page-hero p.lede {
  margin-top: 20px; font-size: 1.08rem;
  line-height: 1.6; color: var(--muted); max-width: 48ch;
}

.page-hero-inner.centered p.lede { margin: 20px auto 0; }

/* ---------- COMPASS VISUAL (about page) ---------- */
.compass-visual { position: relative; height: 340px; display: flex; align-items: center; justify-content: center; }
.compass-visual svg { width: 100%; height: 100%; }

.cpath {
  stroke: url(#trajGradientAbout); stroke-width: 5;
  fill: none; stroke-linecap: round;
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: drawc 1.8s cubic-bezier(.3,.9,.3,1) forwards .2s;
}

@keyframes drawc { to { stroke-dashoffset: 0; } }

/* ---------- STORY ---------- */
.story-band { background: var(--paper); border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

.story-figure {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--teal-line); padding: 36px;
  position: relative; overflow: hidden;
}

.story-figure .big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 3.4rem; color: var(--teal-deep); line-height: 1;
}

.story-figure .cap { margin-top: 10px; font-size: 0.92rem; color: var(--muted); }
.story-text p { font-size: 1.03rem; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--ink); }

/* ---------- VALUES ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.value-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 32px;
}

.value-card .vi { width: 38px; height: 38px; margin-bottom: 18px; }
.value-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- TIMELINE ---------- */
.timeline-band { background: var(--teal-deep); color: #EAF3F1; }
.timeline-band .eyebrow { color: var(--orange-soft); }
.timeline-band h2 { color: #fff; }
.timeline-band .section-head p { color: rgba(234,243,241,0.75); }

.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid rgba(255,255,255,0.16); margin-left: 8px; }

.tl-item { position: relative; padding: 0 0 40px 32px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute; left: -7px; top: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: 0 0 0 4px rgba(251,178,85,0.18);
}

.tl-item .tl-date { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--orange-soft); }
.tl-item h3 { font-size: 1.12rem; font-weight: 600; margin: 8px 0 6px; color: #fff; }
.tl-item p { margin: 0; font-size: 0.92rem; color: rgba(234,243,241,0.75); line-height: 1.55; max-width: 56ch; }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: left; }

.team-card .avatar {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-deep), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.8rem; color: #fff;
  margin-bottom: 16px;
}

.team-card:nth-child(2) .avatar { background: linear-gradient(135deg, var(--teal-mid), var(--orange)); }
.team-card:nth-child(3) .avatar { background: linear-gradient(135deg, var(--blue), var(--teal-deep)); }
.team-card:nth-child(4) .avatar { background: linear-gradient(135deg, var(--orange), var(--orange-soft)); }

.team-card h3 { font-size: 1.02rem; font-weight: 600; }
.team-card .role { font-family: 'IBM Plex Mono', monospace; font-size: 0.76rem; color: var(--teal-mid); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.team-note { margin-top: 28px; font-size: 0.86rem; color: var(--muted); border-top: 1px dashed var(--teal-line); padding-top: 18px; }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }

.form-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }

.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }

.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--teal-line);
  border-radius: 10px; padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  background: var(--bg); color: var(--ink);
  transition: border-color .2s ease;
}

.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-deep); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%; border: none; background: var(--orange); color: #fff;
  font-weight: 600; font-size: 0.98rem;
  padding: 15px 26px; border-radius: 100px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 20px -8px rgba(242,128,30,0.55);
}

.form-submit:hover { transform: translateY(-2px); background: var(--teal-deep); }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }

.form-success {
  display: none; background: var(--card); border: 1px solid var(--teal-line);
  border-radius: 10px; padding: 16px 18px;
  font-size: 0.9rem; color: var(--teal-deep); margin-top: 18px; font-weight: 500;
}

.form-success.show { display: block; }

/* ---------- INFO PANEL ---------- */
.info-panel {
  background: var(--teal-deep); color: #EAF3F1;
  border-radius: var(--radius); padding: 36px; margin-bottom: 24px;
}

.info-panel .eyebrow { color: var(--orange-soft); }
.info-panel h3 { color: #fff; font-size: 1.2rem; margin: 10px 0 22px; }

.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12);
}

.info-row:first-of-type { border-top: none; }
.info-row .ic { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.info-row .lbl { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange-soft); }
.info-row .val { font-size: 0.95rem; margin-top: 3px; color: rgba(234,243,241,0.9); }
.info-row a.val { text-decoration: none; }
.info-row a.val:hover { color: var(--orange-soft); }

.hours-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 28px 32px;
}

.hours-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }

.hours-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; font-size: 0.9rem;
  border-top: 1px dashed var(--teal-line);
}

.hours-row:first-of-type { border-top: none; }
.hours-row span:last-child { color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-band { background: var(--paper); border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--teal-line); border: 1px solid var(--teal-line); border-radius: var(--radius); overflow: hidden; }
.faq-item { background: var(--paper); }

.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .plus {
  width: 22px; height: 22px; flex-shrink: 0;
  position: relative; margin-left: 20px;
}

.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: '';
  position: absolute; background: var(--teal-deep);
  border-radius: 2px; transition: transform .25s ease;
}

.faq-item summary .plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-item summary .plus::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); }
.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after { background: var(--orange); }

.faq-item .a {
  padding: 0 26px 24px; font-size: 0.92rem;
  color: var(--muted); line-height: 1.6; max-width: 70ch;
}

/* ---------- QUICK NAV ---------- */
.quicknav {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding: 0 32px 8px;
}

.quicknav a {
  font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--teal-deep);
  background: var(--paper); border: 1px solid var(--teal-line);
  padding: 9px 18px; border-radius: 100px;
  transition: background .2s ease, color .2s ease;
}

.quicknav a:hover { background: var(--teal-deep); color: #fff; }

/* ---------- SERVICE ROW (detailed alternating sections) ---------- */
.service-row { border-top: 1px solid var(--teal-line); }

.service-row .wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
  align-items: start;
}

.service-row.reverse .wrap { grid-template-columns: 1.15fr 0.85fr; }
.service-row.reverse .figure { order: 2; }

.figure {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 34px;
  position: sticky; top: 96px;
}

.figure .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 2.6rem; color: var(--teal-deep); line-height: 1;
}

.figure .lbl {
  margin-top: 10px; font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.figure .who {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px dashed var(--teal-line);
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}

.figure .who b {
  color: var(--ink); display: block; margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-mid);
}

.service-copy h2 { font-size: 1.9rem; margin-bottom: 14px; }

.service-copy > p {
  color: var(--muted); font-size: 1.02rem; line-height: 1.65;
  max-width: 60ch; margin: 0 0 28px;
}

.deliverables {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
  list-style: none; padding: 0; margin: 0;
}

.deliverables li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.93rem; line-height: 1.5;
}

.deliverables li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.deliverables li span { color: var(--muted); }

/* ---------- HOW YOU ACCESS ---------- */
.access-band { background: var(--teal-deep); color: #EAF3F1; }
.access-band .eyebrow { color: var(--orange-soft); }
.access-band h2 { color: #fff; }
.access-band .section-head p { color: rgba(234,243,241,0.75); }

.access-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); overflow: hidden;
}

.access-card { background: rgba(255,255,255,0.05); padding: 30px 26px; }
.access-card .num { font-family: 'IBM Plex Mono', monospace; color: var(--orange-soft); font-size: 0.78rem; }
.access-card h3 { font-size: 1.05rem; font-weight: 600; margin: 14px 0 8px; color: #fff; }
.access-card p { margin: 0; font-size: 0.88rem; color: rgba(234,243,241,0.75); line-height: 1.55; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-soft) 100%);
  border-radius: 24px; padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  color: #fff;
}

.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-band p { margin-top: 10px; color: rgba(255, 255, 255, 0.9); max-width: 44ch; }
.cta-band .btn-primary { background: #fff; color: var(--orange); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(234, 243, 241, 0.75);
  padding: 64px 0 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

footer h4 {
  color: #fff; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; margin-bottom: 16px;
}

footer .brand { color: #fff; }

footer p.about {
  font-size: 0.92rem; line-height: 1.6; margin-top: 14px;
  max-width: 34ch; color: rgba(234, 243, 241, 0.65);
}

footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
footer a { text-decoration: none; color: inherit; }
footer a:hover { color: var(--orange-soft); }

.foot-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; font-size: 0.82rem;
  color: rgba(234, 243, 241, 0.5); flex-wrap: wrap; gap: 10px;
}

/* ---------- STARTUP CARDS ---------- */
.startup-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.startup-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.startup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.15);
}

.startup-banner {
  height: 140px; display: flex; align-items: center; justify-content: center;
  position: relative;
}

.startup-logo-placeholder {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: #fff;
}

.startup-body { padding: 24px 26px 28px; }

.startup-name {
  font-size: 1.15rem; font-weight: 600; margin: 0;
}

.startup-meta {
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px; font-size: 0.82rem; color: var(--muted);
}

.startup-dot { color: var(--teal-line); }

.startup-industry {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem; color: var(--teal-mid);
}

.startup-desc {
  margin: 14px 0 0; font-size: 0.92rem; color: var(--muted);
  line-height: 1.55;
}

.startup-link {
  display: inline-block; margin-top: 18px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--teal-deep); text-decoration: none;
  transition: color .2s ease;
}

.startup-link:hover { color: var(--orange); }

/* --- Products Band (Startups Listing) --- */
.sd-products-band { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.sd-prod-card {
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.12);
}

.sd-prod-icon {
  width: 100%; height: 120px;
  display: flex; align-items: center; justify-content: center;
}

.sd-prod-icon svg { width: 44px; height: 44px; }

.sd-prod-info { padding: 24px 26px 20px; flex: 1; }

.sd-prod-startup {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--teal-mid);
}

.sd-prod-info h3 {
  font-size: 1.1rem; font-weight: 600;
  margin: 6px 0 10px;
}

.sd-prod-info p {
  margin: 0; font-size: 0.9rem;
  color: var(--muted); line-height: 1.55;
}

.sd-prod-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 26px 18px;
  border-top: 1px dashed var(--teal-line);
}

.sd-prod-type {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 100px;
  background: var(--paper); color: var(--teal-mid);
  border: 1px solid var(--teal-line);
}

.sd-prod-beta { background: #d4edda; color: #155724; border-color: #c3e6cb; }

.sd-prod-link {
  font-weight: 600; font-size: 0.82rem;
  color: var(--teal-deep); text-decoration: none;
  transition: color .2s ease;
}

.sd-prod-link:hover { color: var(--orange); }

/* ---------- STARTUP DETAIL ---------- */
.sd-hero { padding: 60px 0 48px; background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-back {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.88rem; font-weight: 500; color: var(--teal-mid);
  text-decoration: none; margin-bottom: 32px;
  transition: color .2s ease;
}
.sd-back:hover { color: var(--orange); }

.sd-hero-card {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
}

.sd-hero-left { display: flex; gap: 28px; align-items: flex-start; }

.sd-logo-wrap { position: relative; flex-shrink: 0; }

.sd-logo {
  width: 88px; height: 88px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 2rem; color: #fff;
  box-shadow: 0 8px 24px -4px rgba(14, 74, 84, 0.25);
}

.sd-badge {
  position: absolute; bottom: -4px; right: -4px;
  width: 28px; height: 28px;
  background: var(--paper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sd-badge svg { width: 22px; height: 22px; }

.sd-hero-info { max-width: 520px; }

.sd-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; margin-top: 8px; line-height: 1.1;
}

.sd-tagline {
  margin-top: 10px; font-size: 1.05rem;
  color: var(--muted); line-height: 1.5;
}

.sd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.sd-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.sd-tag-industry { background: var(--teal-deep); color: #fff; }
.sd-tag-stage { background: var(--orange); color: #fff; }
.sd-tag-location { background: var(--card); color: var(--teal-mid); border: 1px solid var(--teal-line); }

.sd-rank { display: flex; align-items: center; gap: 10px; margin-top: 18px; }

.sd-rank-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted);
}

.sd-rank-stars { display: flex; gap: 3px; }

.sd-star { width: 18px; height: 18px; fill: var(--teal-line); }
.sd-star.filled { fill: var(--orange); }

.sd-rank-num { font-size: 0.85rem; font-weight: 600; color: var(--ink); }

.sd-hero-actions { display: flex; gap: 12px; flex-shrink: 0; padding-top: 8px; }

/* --- Stats Bar --- */
.sd-stats-bar { padding: 40px 0; background: var(--bg); border-bottom: 1px solid var(--teal-line); }

.sd-stats {
  display: flex; gap: 0;
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); overflow: hidden;
}

.sd-stat {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--teal-line);
}

.sd-stat:last-child { border-right: none; }

.sd-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--teal-deep);
}

.sd-stat-label {
  margin-top: 4px; font-size: 0.78rem;
  color: var(--muted); font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* --- About --- */
.sd-about { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-about-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px;
  align-items: start;
}

.sd-about-text h2 {
  font-size: 1.8rem; font-weight: 700; margin-top: 10px;
}

.sd-about-text p {
  margin-top: 16px; font-size: 1rem;
  color: var(--muted); line-height: 1.7;
}

.sd-about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.sd-about-card {
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: 12px; padding: 18px 20px;
}

.sd-about-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--teal-mid);
  margin: 0;
}

.sd-about-card-value {
  margin: 6px 0 0; font-size: 0.92rem;
  font-weight: 600; color: var(--ink);
}

.sd-about-card-value a {
  color: var(--teal-deep); text-decoration: none;
}

.sd-about-card-value a:hover { color: var(--orange); }

/* --- Products --- */
.sd-products { background: var(--bg); border-bottom: 1px solid var(--teal-line); }

.sd-product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.sd-product-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.12);
}

.sd-product-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.sd-product-icon svg { width: 32px; height: 32px; }

.sd-product-card h3 { font-size: 1.12rem; font-weight: 600; margin: 0; }

.sd-product-card p {
  margin: 10px 0 0; font-size: 0.9rem;
  color: var(--muted); line-height: 1.55;
}

.sd-product-meta {
  display: flex; gap: 8px; margin-top: 18px;
}

.sd-product-type, .sd-product-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 100px;
}

.sd-product-type { background: var(--card); color: var(--teal-mid); }
.sd-product-status { background: #d4edda; color: #155724; }

/* --- Team Detail --- */
.sd-team { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.sd-team-card {
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.12);
}

.sd-team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.2rem; color: #fff;
}

.sd-team-card h3 { font-size: 1rem; font-weight: 600; margin: 0; }

.sd-team-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--teal-mid);
  margin-top: 4px;
}

.sd-team-card > p {
  margin: 12px 0 0; font-size: 0.85rem;
  color: var(--muted); line-height: 1.5;
}

.sd-team-social { margin-top: 14px; }

.sd-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--card); color: var(--teal-mid);
  transition: background .2s ease, color .2s ease;
}

.sd-social-link svg { width: 16px; height: 16px; }
.sd-social-link:hover { background: var(--teal-deep); color: #fff; }

/* --- Journey Timeline --- */
.sd-journey {
  background: var(--teal-deep); color: #EAF3F1;
}

.sd-journey .eyebrow { color: var(--orange-soft); }
.sd-journey h2 { color: #fff; }
.sd-journey .section-head p { color: rgba(234,243,241,0.75); }

.sd-timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  margin-left: 8px;
}

.sd-tl-item { position: relative; padding: 0 0 36px 32px; }
.sd-tl-item:last-child { padding-bottom: 0; }

.sd-tl-item::before {
  content: '';
  position: absolute; left: -7px; top: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: 0 0 0 4px rgba(251, 178, 85, 0.18);
}

.sd-tl-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; color: var(--orange-soft);
}

.sd-tl-item h3 {
  font-size: 1.08rem; font-weight: 600;
  margin: 8px 0 6px; color: #fff;
}

.sd-tl-item p {
  margin: 0; font-size: 0.9rem;
  color: rgba(234, 243, 241, 0.75); line-height: 1.55;
  max-width: 56ch;
}

/* --- Contact Area --- */
.sd-contact-area { background: var(--bg); }

.sd-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}

.sd-contact-info h2 {
  font-size: 1.8rem; font-weight: 700; margin-top: 10px;
}

.sd-contact-info > p {
  margin-top: 10px; font-size: 1rem;
  color: var(--muted); line-height: 1.6;
}

.sd-contact-rows { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }

.sd-contact-row {
  display: flex; gap: 14px; align-items: flex-start;
}

.sd-contact-row svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.sd-cr-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--teal-mid);
}

.sd-cr-value {
  margin-top: 3px; font-size: 0.95rem; color: var(--ink);
}

.sd-cr-value a {
  color: var(--teal-deep); text-decoration: none;
}

.sd-cr-value a:hover { color: var(--orange); }

.sd-map {
  margin-top: 28px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--teal-line);
}

.sd-contact-form-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 36px;
}

.sd-contact-form-card h3 { font-size: 1.2rem; font-weight: 600; margin: 0; }

.sd-contact-form-card > p {
  margin: 8px 0 24px; font-size: 0.92rem;
  color: var(--muted); line-height: 1.5;
}

.sd-form .sd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Funding & Investors --- */
.sd-funding { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-funding-grid {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 32px;
  align-items: start;
}

.sd-funding-rounds { display: flex; flex-direction: column; gap: 18px; }

.sd-round-card {
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 28px 30px;
  position: relative; overflow: hidden;
}

.sd-round-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 128, 30, 0.1);
}

.sd-round-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: 100px;
}

.sd-round-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.sd-round-type {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 100px;
}

.sd-round-pre { background: var(--teal-deep); color: #fff; }
.sd-round-series { background: var(--orange); color: #fff; }

.sd-round-date { font-size: 0.82rem; color: var(--muted); }

.sd-round-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--teal-deep); margin-bottom: 16px;
}

.sd-round-investors { display: flex; gap: 10px; flex-wrap: wrap; }

.sd-investor-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: 100px; padding: 6px 14px 6px 6px;
  font-size: 0.82rem; font-weight: 500;
}

.sd-investor-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.7rem; color: #fff;
}

.sd-round-cta {
  display: inline-block; margin-top: 16px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--orange); text-decoration: none;
  transition: color .2s ease;
}

.sd-round-cta:hover { color: var(--teal-deep); }

.sd-funding-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sd-funding-stat-card {
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 24px;
  text-align: center;
}

.sd-fs-icon { margin-bottom: 10px; }
.sd-fs-icon svg { width: 28px; height: 28px; }

.sd-fs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--ink);
}

.sd-fs-label {
  margin-top: 4px; font-size: 0.78rem; color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* --- Tech Stack --- */
.sd-tech { background: var(--bg); border-bottom: 1px solid var(--teal-line); }

.sd-tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.sd-tech-category {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 28px 24px;
}

.sd-tech-category h4 {
  font-size: 0.92rem; font-weight: 600; margin: 0 0 16px;
}

.sd-tech-items { display: flex; flex-wrap: wrap; gap: 8px; }

.sd-tech-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
  background: var(--card); color: var(--teal-deep);
  border: 1px solid var(--teal-line);
}

/* --- Press & Media --- */
.sd-press { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.sd-press-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 28px;
  text-decoration: none; color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.12);
}

.sd-press-source { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.sd-press-logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.8rem;
}

.sd-press-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted);
}

.sd-press-card h3 {
  font-size: 1.05rem; font-weight: 600; line-height: 1.4;
  flex: 1;
}

.sd-press-date {
  margin-top: 14px; font-size: 0.78rem;
  color: var(--muted); font-family: 'IBM Plex Mono', monospace;
}

/* --- Testimonials --- */
.sd-testimonials { background: var(--bg); border-bottom: 1px solid var(--teal-line); }

.sd-testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}

.sd-testimonial-card {
  background: var(--paper); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 32px;
}

.sd-testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.sd-testimonial-stars svg { width: 18px; height: 18px; }

.sd-testimonial-text {
  font-size: 1.02rem; line-height: 1.65;
  color: var(--ink); font-style: italic; margin: 0;
}

.sd-testimonial-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--teal-line);
}

.sd-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}

.sd-testimonial-name { font-weight: 600; font-size: 0.92rem; }
.sd-testimonial-role { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* --- Documents --- */
.sd-documents { background: var(--paper); border-bottom: 1px solid var(--teal-line); }

.sd-doc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.sd-doc-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--teal-line);
  border-radius: var(--radius); padding: 30px 28px;
  text-decoration: none; color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(14, 74, 84, 0.12);
}

.sd-doc-icon { margin-bottom: 18px; }
.sd-doc-icon svg { width: 40px; height: 40px; }

.sd-doc-card h4 { font-size: 1.05rem; font-weight: 600; margin: 0; }

.sd-doc-card p {
  margin: 10px 0 0; font-size: 0.88rem;
  color: var(--muted); line-height: 1.5; flex: 1;
}

.sd-doc-meta {
  margin-top: 16px; font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  color: var(--teal-mid); text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Social & Metrics --- */
.sd-social-metrics { background: var(--bg); color: var(--ink); }
.sd-social-metrics .eyebrow { color: var(--teal-mid); }
.sd-social-metrics h2 { color: var(--ink); }
.sd-social-metrics .section-head p { color: var(--muted); }

.sd-social-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}

.sd-social-left h2 { font-size: 1.8rem; font-weight: 700; margin-top: 10px; }

.sd-social-left > p {
  margin-top: 10px; font-size: 1rem;
  color: rgba(234,243,241,0.75); line-height: 1.6;
}

.sd-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.sd-social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  color: #fff; text-decoration: none;
  font-weight: 600; font-size: 0.85rem;
  transition: transform .2s ease, opacity .2s ease;
}

.sd-social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.sd-social-btn svg { flex-shrink: 0; }

.sd-metrics-bars { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }

.sd-mb-header { display: flex; justify-content: space-between; margin-bottom: 8px; }

.sd-mb-label { font-size: 0.88rem; color: var(--muted); }
.sd-mb-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
}

.sd-mb-track {
  height: 10px; border-radius: 100px;
  background: var(--teal-line);
}

.sd-mb-fill {
  height: 100%; border-radius: 100px;
  transition: width 1.2s ease;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  nav.links { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; order: -1; }
  .stat-row { flex-wrap: wrap; gap: 20px; }
  .stat { flex: 1 1 40%; border-left: none; padding-left: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gov-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process-grid::before { display: none; }
  .page-hero-inner.split { grid-template-columns: 1fr; }
  .compass-visual { height: 240px; order: -1; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .startup-grid { grid-template-columns: 1fr 1fr; }
  .sd-products-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-row .wrap, .service-row.reverse .wrap { grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse .figure { order: 0; }
  .figure { position: static; }
  .deliverables { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; align-items: center; }
  .sd-hero-card { flex-direction: column; }
  .sd-hero-left { flex-direction: column; align-items: center; text-align: center; }
  .sd-tags { justify-content: center; }
  .sd-rank { justify-content: center; }
  .sd-hero-actions { justify-content: center; }
  .sd-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .sd-product-grid { grid-template-columns: 1fr; }
  .sd-team-grid { grid-template-columns: 1fr 1fr; }
  .sd-contact-grid { grid-template-columns: 1fr; }
  .sd-stats { flex-wrap: wrap; }
  .sd-stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid var(--teal-line); }
  .sd-stat:last-child { border-bottom: none; }
  .sd-funding-grid { grid-template-columns: 1fr; }
  .sd-tech-grid { grid-template-columns: 1fr 1fr; }
  .sd-press-grid { grid-template-columns: 1fr; }
  .sd-testimonial-grid { grid-template-columns: 1fr; }
  .sd-doc-grid { grid-template-columns: 1fr; }
  .sd-social-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .wrap, .nav, .hero, .page-hero { padding-left: 20px; padding-right: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .startup-grid { grid-template-columns: 1fr; }
  .sd-products-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .foot-grid { grid-template-columns: 1fr; }
  .sd-about-visual { grid-template-columns: 1fr; }
  .sd-team-grid { grid-template-columns: 1fr; }
  .sd-form .sd-form-row { grid-template-columns: 1fr; }
  .sd-tech-grid { grid-template-columns: 1fr; }
  .sd-funding-rounds { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .trajectory-path, .spark, .node, .service-card, .cpath {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}
