:root {
  --bg: #07141d;
  --bg-2: #0c1c27;
  --card: rgba(14, 28, 40, 0.92);
  --card-2: rgba(9, 20, 30, 0.84);
  --text: #edf5f8;
  --muted: #a8bfcb;
  --line: rgba(134, 193, 206, 0.22);
  --accent: #69d6e6;
  --accent-2: #19516d;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #04111a 0%, #07141d 38%, #08151e 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
iframe { display: block; border: none; }

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 80%, rgba(33, 140, 164, 0.18), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(56, 176, 199, 0.16), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 70, 70, 0.04), transparent 30%);
  z-index: -1;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section { padding: 5.25rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 14, 20, 0.7);
  border-bottom: 1px solid rgba(135, 197, 213, 0.1);
}
.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand img {
  width: 2.8rem;
  height: 2.8rem;
}
.brand span { font-size: 1.05rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow-tight {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
}
.section-head {
  max-width: 48rem;
  margin-bottom: 2rem;
}
.section-head.left { margin-bottom: 1.5rem; }
.section-head h2,
.hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.section-head p,
.hero-text,
.publication-card p,
.card p,
.note-card p,
.footer-note,
.cta-card p,
.timeline span,
.embed-head p,
.report-points,
.report-points li,
.stat-label,
.benchmark-proof p,
.card-image figcaption span {
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  padding-top: 4.75rem;
  padding-bottom: 1.6rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 3rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(3rem, 6.8vw, 5.35rem);
  max-width: 10.5ch;
}
.hero-text {
  max-width: 43rem;
  font-size: 1.08rem;
  margin: 1.35rem 0 0;
}
.hero-actions,
.report-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #88ecf6 100%);
  color: #04202b;
}
.button-secondary {
  border: 1px solid rgba(105, 214, 230, 0.36);
  background: rgba(10, 30, 42, 0.5);
  color: var(--text);
}
.button-compact { min-height: 2.7rem; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}
.hero-chips li,
.benchmark-proof-pills span,
.spotlight-tags span,
.explainer-pills span {
  border: 1px solid rgba(105, 214, 230, 0.28);
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: #d8edf2;
  background: rgba(12, 29, 40, 0.55);
}
.hero-media {
  display: flex;
  justify-content: flex-end;
}
.hero-spotlight {
  width: min(100%, 29rem);
}
.hero-spotlight img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: rgba(5, 12, 18, 0.8);
}
.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.55rem;
}
.spotlight-tags span,
.explainer-pills span {
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.intro-band {
  padding-top: 0.35rem;
  padding-bottom: 2rem;
}
.intro-stack {
  display: grid;
  gap: 1rem;
}
.explainer-card {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: center;
}
.explainer-copy {
  padding: 0.35rem 0.2rem;
}
.explainer-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.explainer-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.68;
}
.explainer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.explainer-pills strong {
  color: var(--text);
}
.explainer-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: rgba(5, 12, 18, 0.92);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card,
.card,
.cta-card,
.note-card {
  background: linear-gradient(180deg, rgba(14, 29, 40, 0.95) 0%, rgba(8, 18, 27, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card { padding: 1.35rem 1.3rem; }
.stat-number {
  display: block;
  font-size: clamp(1.95rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card { padding: 1.5rem; }
.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.section-dark {
  background: linear-gradient(180deg, rgba(5, 15, 22, 0.55) 0%, rgba(9, 18, 28, 0.72) 100%);
  border-top: 1px solid rgba(105, 214, 230, 0.08);
  border-bottom: 1px solid rgba(105, 214, 230, 0.08);
}

.about-grid,
.pipeline-grid,
.interactive-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.about-grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
}
.pipeline-grid { grid-template-columns: 1.04fr 0.96fr; gap: 2rem; }

.founder-profile-card {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 0;
  overflow: hidden;
  max-width: 29rem;
  width: 100%;
  height: 100%;
  justify-self: center;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  background: #0c1620;
}
.founder-meta {
  padding: 1.35rem 1.45rem 1.55rem;
  display: grid;
  gap: 0.35rem;
}
.founder-role {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.founder-name {
  margin: 0;
  font-size: 1.75rem;
}
.founder-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.founder-context {
  padding: 1.15rem 1.45rem 1.45rem;
  border-top: 1px solid rgba(105, 214, 230, 0.12);
  background: linear-gradient(180deg, rgba(9, 21, 31, 0.45) 0%, rgba(7, 16, 25, 0.72) 100%);
  display: grid;
  align-content: start;
  gap: 0.85rem;
}
.founder-context-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.founder-track {
  display: grid;
  gap: 0.85rem;
}
.founder-track-item {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(105, 214, 230, 0.1);
}
.founder-track-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.founder-track-item span {
  display: block;
  margin-bottom: 0.34rem;
  color: #c4eef4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.founder-track-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.about-bio-card {
  grid-column: 2;
  grid-row: 1;
  padding: 1.6rem;
}
.about-mini-grid {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.timeline li {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 2px solid rgba(105, 214, 230, 0.28);
  background: rgba(9, 21, 31, 0.45);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.timeline strong {
  display: block;
  margin-bottom: 0.45rem;
}
.pipeline-visual .large { padding: 1rem; }

.card-image {
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
}
.card-image img {
  width: 100%;
  height: auto;
}
.card-image figcaption {
  padding: 1rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.35rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #072532;
  background: linear-gradient(135deg, var(--accent) 0%, #b5f3f7 100%);
}

.benchmark-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 1.25rem;
  align-items: start;
}
.benchmark-figure img {
  aspect-ratio: 1400 / 787;
  object-fit: cover;
}
.benchmark-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.benchmark-proof {
  padding: 1.45rem 1.4rem;
}
.benchmark-proof h3 { margin-top: 0; font-size: 1.55rem; }
.benchmark-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.benchmark-proof-pills span { padding: 0.58rem 0.82rem; font-size: 0.88rem; }
.benchmark-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.benchmark-score-row div {
  padding: 0.95rem 0.9rem;
  border-radius: 16px;
  background: rgba(8, 18, 28, 0.62);
  border: 1px solid rgba(105, 214, 230, 0.14);
}
.benchmark-score-row strong {
  display: block;
  font-size: 1rem;
}
.benchmark-score-row span {
  color: var(--muted);
  font-size: 0.88rem;
}
.benchmark-plain-language {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(9, 22, 32, 0.5);
  border: 1px solid rgba(105, 214, 230, 0.14);
  font-size: 0.95rem;
}
.benchmark-plain-language strong { color: var(--text); }
.benchmark-reference {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(105, 214, 230, 0.14);
  font-size: 0.97rem;
}
.benchmark-reference strong { color: var(--text); }
.benchmark-highlight img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.benchmark-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.benchmark-case-grid .card-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.interactive-layout {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
}
.interactive-copy {
  display: grid;
  gap: 1rem;
}
.report-summary { padding: 1.6rem; }
.report-kicker { display:inline-flex; margin-bottom:0.8rem; padding:0.45rem 0.75rem; border-radius:999px; background:rgba(105,214,230,0.12); border:1px solid rgba(105,214,230,0.18); color:var(--accent); font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; font-weight:700; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.1rem 0 1rem;
}
.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(7, 17, 24, 0.65);
  border: 1px solid rgba(105, 214, 230, 0.16);
  display: grid;
  gap: 0.28rem;
}
.metric-value {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
}
.metric-label {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.report-points {
  margin: 0;
  padding-left: 1.1rem;
}
.report-points strong { color: var(--text); }
.report-points li + li { margin-top: 0.35rem; }
.report-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.sample-guide { padding: 1.45rem 1.5rem; }
.guide-list { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.guide-list li + li { margin-top: 0.6rem; }
.guide-list strong { color: var(--text); }
.report-preview-grid .card-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.report-embed-card {
  padding: 1rem;
  border-color: rgba(105, 214, 230, 0.28);
}
.sample-proof-banner {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 0.9rem;
  margin-bottom: 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(105, 214, 230, 0.12) 0%, rgba(20, 47, 62, 0.18) 100%);
  border: 1px solid rgba(105, 214, 230, 0.22);
}
.sample-proof-banner strong { font-size: 1.02rem; }
.sample-proof-banner span:last-child { color: var(--muted); line-height: 1.6; }
.sample-proof-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.embed-instructions {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.embed-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 0.2rem 0.2rem 1rem;
}
.embed-head h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}
.embed-label {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.report-embed {
  width: 100%;
  min-height: 58rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(8, 24, 36, 0.14);
  box-shadow: inset 0 0 0 1px rgba(8, 24, 36, 0.04);
}

.use-case-grid { grid-template-columns: repeat(3, 1fr); }

.publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.publication-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.pub-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.publication-card h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  margin: 0;
}
.publication-card a {
  margin-top: auto;
  width: fit-content;
  text-decoration: none;
  color: #c4eef4;
  font-weight: 700;
}
.publication-card a:hover { color: var(--accent); }

.cta-section { padding-top: 4rem; }
.cta-card {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.cta-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
}

.site-footer { padding: 2.4rem 0 4rem; }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  width: 3.4rem;
  height: 3.4rem;
}
.footer-brand p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}
.footer-note {
  max-width: 65rem;
  margin: 0;
}

.lightbox {
  padding: 0;
  border: none;
  border-radius: 24px;
  max-width: min(92vw, 1200px);
  width: 100%;
  background: rgba(7, 17, 24, 0.97);
  color: var(--text);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}
.lightbox img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}
#lightbox-caption {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.stat-number-wide {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
}

.ref-sup {
  font-size: 0.72rem;
  line-height: 0;
}
.ref-sup a {
  color: var(--accent);
  text-decoration: none;
}
.ref-sup a:hover { color: #b7f4f8; }

.benchmark-section .section-head {
  max-width: 60rem;
}
.benchmark-lead-card strong,
.benchmark-story-card strong,
.reference-list strong,
.benchmark-table td strong,
.benchmark-table th {
  color: var(--text);
}
.benchmark-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.benchmark-pill-row span {
  border: 1px solid rgba(105, 214, 230, 0.22);
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  color: #d9edf2;
  background: rgba(12, 29, 40, 0.62);
}
.benchmark-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}
.benchmark-lead-card {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.benchmark-lead-card h3 {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.benchmark-lead-card p {
  margin: 0;
}
.benchmark-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.benchmark-kpi {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(7, 17, 24, 0.68);
  border: 1px solid rgba(105, 214, 230, 0.16);
  display: grid;
  gap: 0.25rem;
}
.benchmark-kpi-value {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.benchmark-kpi-label {
  color: var(--muted);
  line-height: 1.45;
}
.benchmark-casewise-card img,
.benchmark-metrics-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: rgba(5, 12, 18, 0.92);
}
.benchmark-middle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}
.benchmark-story-card {
  padding: 1.55rem;
  display: grid;
  gap: 1rem;
}
.benchmark-story-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}
.benchmark-story-card p {
  margin: 0;
}
.benchmark-story-card code {
  padding: 0.16rem 0.38rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dff7fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}
.benchmark-story-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.benchmark-story-list li + li {
  margin-top: 0.7rem;
}
.benchmark-caveat {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(105, 214, 230, 0.16);
  background: rgba(9, 22, 32, 0.5);
  color: var(--muted);
  line-height: 1.65;
}
.benchmark-table-card,
.benchmark-reference-card {
  margin-top: 1rem;
  padding: 1.2rem;
}
.benchmark-table-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.benchmark-table-head h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.08;
}
.benchmark-table-head p {
  margin: 0;
  max-width: 27rem;
  color: var(--muted);
  line-height: 1.6;
}
.table-wrap {
  overflow: auto;
  border: 1px solid rgba(105, 214, 230, 0.14);
  border-radius: 18px;
  background: rgba(8, 18, 27, 0.72);
}
.benchmark-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.benchmark-table thead th {
  text-align: left;
  padding: 1rem 1rem 0.95rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(105, 214, 230, 0.08);
  border-bottom: 1px solid rgba(105, 214, 230, 0.14);
}
.benchmark-table tbody td {
  padding: 1rem;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.65;
  border-bottom: 1px solid rgba(105, 214, 230, 0.1);
}
.benchmark-table tbody tr:last-child td {
  border-bottom: none;
}
.benchmark-table tbody td:first-child {
  width: 20%;
  color: var(--text);
  font-weight: 700;
}
.benchmark-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}
.benchmark-featured-case img,
.benchmark-secondary-cases .card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.benchmark-secondary-cases {
  display: grid;
  gap: 1rem;
}
.reference-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}
.reference-list li::marker {
  color: var(--accent);
  font-weight: 700;
}
.reference-list a {
  color: #c4eef4;
  text-decoration: none;
  font-weight: 700;
}
.reference-list a:hover { color: var(--accent); }

@media (max-width: 1160px) {
  .hero-grid,
  .about-grid,
  .pipeline-grid,
  .benchmark-top,
  .benchmark-hero-grid,
  .benchmark-middle-grid,
  .benchmark-visual-grid,
  .interactive-layout,
  .cta-card,
  .explainer-card {
    grid-template-columns: 1fr;
  }
  .hero-media { justify-content: flex-start; }
  .hero-spotlight { width: min(100%, 26rem); }
  .explainer-copy { padding: 0; }
  .founder-profile-card,
  .about-bio-card,
  .about-mini-grid {
    grid-column: auto;
    grid-row: auto;
  }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mini-grid,
  .publications-grid,
  .benchmark-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid,
  .use-case-grid { grid-template-columns: 1fr; }
  .benchmark-table-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .report-embed { min-height: 48rem; }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 24, 0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .section { padding: 4.5rem 0; }
  .hero { padding-top: 3.8rem; }
  .hero-copy h1 { max-width: 10ch; }
  .card-grid,
  .about-mini-grid,
  .publications-grid,
  .benchmark-case-grid,
  .benchmark-kpi-grid,
  .benchmark-secondary-cases,
  .use-case-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .benchmark-score-row { grid-template-columns: 1fr; }
  .benchmark-table { min-width: 700px; }
  .embed-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .report-embed { min-height: 42rem; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.1rem), var(--container)); }
  .hero-copy h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions,
  .report-actions,
  .cta-actions { width: 100%; }
  .button { width: 100%; }
  .footer-brand { align-items: flex-start; }
  .benchmark-lead-card h3 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .benchmark-table { min-width: 640px; }
  .report-embed { min-height: 36rem; }
}


/* v9 founder refinement */
.about-bio-card {
  display: grid;
  gap: 1rem;
}
.about-bio-card p {
  margin: 0;
}
.about-mini-grid {
  align-items: stretch;
}
.about-mini-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.about-mini-card h3 {
  margin: 0;
  line-height: 1.12;
}
.about-mini-card p {
  margin: 0;
}
.about-mini-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(105, 214, 230, 0.1);
  border: 1px solid rgba(105, 214, 230, 0.18);
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.15rem;
}
.about-mini-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d9edf2;
  background: rgba(12, 29, 40, 0.55);
  border: 1px solid rgba(105, 214, 230, 0.18);
}

/* v9 benchmark redesign */
.benchmark-section .section-head {
  max-width: 62rem;
}
.benchmark-summary-grid,
.benchmark-chart-grid,
.benchmark-context-grid,
.benchmark-case-grid-uniform {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.benchmark-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.benchmark-narrative-card,
.benchmark-proof-card {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.benchmark-narrative-card h3,
.benchmark-proof-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.benchmark-narrative-card p,
.benchmark-proof-card p {
  margin: 0;
}
.benchmark-meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.benchmark-meaning-grid div {
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(7, 17, 24, 0.58);
  border: 1px solid rgba(105, 214, 230, 0.14);
}
.benchmark-meaning-grid span {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.benchmark-meaning-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.benchmark-proof-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.benchmark-proof-number {
  min-width: 7.4rem;
  padding: 1rem 1rem 0.9rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(105, 214, 230, 0.14) 0%, rgba(18, 45, 61, 0.2) 100%);
  border: 1px solid rgba(105, 214, 230, 0.2);
  color: var(--accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
}
.benchmark-proof-note {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(9, 22, 32, 0.54);
  border: 1px solid rgba(105, 214, 230, 0.16);
  color: var(--muted);
  line-height: 1.62;
}
.benchmark-proof-note strong {
  color: var(--text);
}
.benchmark-chart-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}
.benchmark-panel img,
.benchmark-case-grid-uniform .card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: rgba(5, 12, 18, 0.92);
}
.benchmark-context-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}
.benchmark-detail-card {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.benchmark-detail-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(105, 214, 230, 0.1);
  border: 1px solid rgba(105, 214, 230, 0.18);
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.benchmark-detail-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}
.benchmark-detail-card p {
  margin: 0;
}
.benchmark-detail-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}
.benchmark-detail-list li {
  line-height: 1.6;
}
.benchmark-detail-list code {
  padding: 0.16rem 0.38rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dff7fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}
.benchmark-table-card,
.benchmark-reference-card {
  margin-top: 1rem;
  padding: 1.2rem;
}
.benchmark-table {
  table-layout: fixed;
}
.benchmark-table col.col-dim { width: 22%; }
.benchmark-table col.col-comp { width: 39%; }
.benchmark-table col.col-ing { width: 39%; }
.benchmark-case-grid-uniform {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}
.benchmark-case-grid-uniform .card-image {
  height: 100%;
}

@media (max-width: 1160px) {
  .benchmark-summary-grid,
  .benchmark-chart-grid {
    grid-template-columns: 1fr;
  }
  .benchmark-context-grid,
  .benchmark-case-grid-uniform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .benchmark-meaning-grid,
  .benchmark-context-grid,
  .benchmark-case-grid-uniform {
    grid-template-columns: 1fr;
  }
  .benchmark-proof-hero {
    grid-template-columns: 1fr;
  }
  .benchmark-proof-number {
    width: fit-content;
  }
}



/* v10 founder + benchmark refinements */
.founder-portrait {
  object-position: center 12%;
}
.about-bio-actions {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.about-bio-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.benchmark-positive {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(14, 35, 45, 0.6);
  border: 1px solid rgba(105, 214, 230, 0.16);
  color: var(--muted);
  line-height: 1.62;
}
.benchmark-positive strong {
  color: var(--text);
}
.reference-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1rem;
}
@media (max-width: 860px) {
  .reference-list {
    grid-template-columns: 1fr;
  }
}

/* v10 about page */
.about-longform-page .site-header {
  backdrop-filter: blur(18px);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 1.25rem;
  align-items: stretch;
}
.about-hero-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.about-hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  background: #0c1620;
}
.about-hero-meta {
  padding: 1.35rem 1.45rem 1rem;
  display: grid;
  gap: 0.45rem;
}
.about-hero-meta h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.about-hero-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.about-hero-facts {
  padding: 1rem 1.45rem 1.45rem;
  display: grid;
  gap: 0.95rem;
  border-top: 1px solid rgba(105, 214, 230, 0.12);
  background: linear-gradient(180deg, rgba(9, 21, 31, 0.45) 0%, rgba(7, 16, 25, 0.72) 100%);
}
.about-hero-facts div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(105, 214, 230, 0.1);
}
.about-hero-facts div:first-child {
  padding-top: 0;
  border-top: 0;
}
.about-hero-facts span {
  display: block;
  margin-bottom: 0.34rem;
  color: #c4eef4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-hero-facts p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.about-hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}
.about-hero-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.about-overview-grid,
.focus-grid,
.talks-grid,
.bio-length-grid {
  display: grid;
  gap: 1rem;
}
.about-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-overview-card,
.focus-card,
.talk-card,
.bio-length-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}
.about-overview-card h3,
.focus-card h3,
.talk-card h3 {
  margin: 0;
  line-height: 1.08;
  font-size: 1.4rem;
}
.about-overview-card p,
.focus-card p,
.talk-card p,
.bio-length-card p {
  margin: 0;
}
.about-trajectory-card {
  margin-top: 1rem;
}
.about-trajectory {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.95rem;
}
.about-trajectory li {
  color: var(--muted);
  line-height: 1.62;
}
.about-trajectory strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.focus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.philosophy-card {
  padding: 1.35rem;
}
.philosophy-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}
.philosophy-card p {
  margin: 0;
}
.about-publication-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.external-links-card {
  margin-top: 1rem;
}
.link-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.link-chip-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(105, 214, 230, 0.1);
  border: 1px solid rgba(105, 214, 230, 0.18);
  color: #dff7fb;
  text-decoration: none;
  font-weight: 600;
}
.link-chip-row a:hover {
  color: var(--accent);
}
.talks-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bio-length-grid {
  grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 1160px) {
  .about-hero-grid,
  .about-overview-grid,
  .talks-grid,
  .bio-length-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid,
  .about-publication-grid,
  .philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .focus-grid,
  .about-publication-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}


/* v10 portrait uncrop refinement */
.founder-portrait,
.about-hero-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: center top;
  display: block;
}


/* v11 completion: refined hero workflow + rebuilt sample report stage */
.hero {
  padding-bottom: 2.2rem;
}
.hero-copy {
  display: grid;
  align-content: center;
}
.hero-flow-wrap {
  margin-top: 1.4rem;
}
.hero-flow-shell {
  padding: 1.15rem 1.2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 29, 40, 0.9) 0%, rgba(8, 18, 27, 0.96) 100%);
  border: 1px solid rgba(105, 214, 230, 0.2);
  box-shadow: var(--shadow);
}
.hero-flow-label {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-flow-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1fr) auto minmax(0, 0.9fr) auto minmax(0, 1.28fr);
  gap: 0.75rem;
  align-items: stretch;
}
.hero-flow-step {
  min-height: 100%;
  padding: 1rem 1rem 0.95rem;
  border-radius: 20px;
  background: rgba(8, 18, 27, 0.78);
  border: 1px solid rgba(105, 214, 230, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-flow-step strong {
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-flow-step > span:last-of-type {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.hero-flow-step-accent {
  background: linear-gradient(180deg, rgba(18, 43, 58, 0.88) 0%, rgba(8, 21, 31, 0.96) 100%);
  border-color: rgba(105, 214, 230, 0.28);
}
.hero-flow-step-output {
  justify-content: flex-start;
}
.hero-flow-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--accent);
  background: rgba(105, 214, 230, 0.1);
  border: 1px solid rgba(105, 214, 230, 0.22);
}
.hero-flow-arrow {
  width: 2.35rem;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--accent);
  font-size: 1.42rem;
  font-weight: 800;
}
.hero-flow-output-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.1rem;
}
.hero-flow-output-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #d9edf2;
  background: rgba(12, 29, 40, 0.55);
  border: 1px solid rgba(105, 214, 230, 0.18);
}

.section-head-wide {
  max-width: 74rem;
}
.report-section .container {
  display: grid;
  gap: 1rem;
}
.report-section-head h2 {
  max-width: 22ch;
}
.report-section-head h2 span {
  display: block;
}
.report-section-head > p:not(.eyebrow) {
  max-width: 68rem;
}
.report-head-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.report-head-pills span {
  border: 1px solid rgba(105, 214, 230, 0.22);
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  color: #d9edf2;
  background: rgba(12, 29, 40, 0.62);
}
.report-live-stage {
  padding: 1rem;
  border-color: rgba(105, 214, 230, 0.28);
}
.sample-proof-banner-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.95rem;
  margin-bottom: 1rem;
}
.sample-proof-banner-wide > div {
  display: grid;
  gap: 0.3rem;
}
.report-embed-wide {
  width: 100%;
  min-height: 74rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(8, 24, 36, 0.14);
  box-shadow: inset 0 0 0 1px rgba(8, 24, 36, 0.04);
}
.report-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.report-proof-card {
  height: 100%;
}
.report-proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(5, 12, 18, 0.92);
}
.report-proof-card figcaption {
  min-height: 10.5rem;
}
.report-proof-card figcaption strong {
  line-height: 1.15;
}

@media (max-width: 1160px) {
  .report-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .report-embed-wide {
    min-height: 64rem;
  }
}
@media (max-width: 980px) {
  .hero-flow-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .hero-flow-arrow {
    width: 100%;
    height: auto;
    transform: rotate(90deg);
    line-height: 1;
  }
}
@media (max-width: 860px) {
  .sample-proof-banner-wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .report-feature-grid {
    grid-template-columns: 1fr;
  }
  .report-embed-wide {
    min-height: 52rem;
  }
}
@media (max-width: 640px) {
  .hero-flow-shell {
    padding: 1rem;
  }
  .report-embed-wide {
    min-height: 44rem;
  }
}

/* v12 targeted refinements */
.hero-flow-row {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.34fr);
}
.hero-flow-step-uniform {
  justify-content: flex-start;
}
.hero-flow-step-uniform strong,
.hero-flow-step-uniform .hero-flow-subline {
  white-space: nowrap;
}
.hero-flow-step-uniform strong {
  font-size: 0.96rem;
}
.hero-flow-step-uniform .hero-flow-subline {
  min-height: 1.55rem;
}
.hero-flow-step-output {
  background: linear-gradient(180deg, rgba(18, 43, 58, 0.88) 0%, rgba(8, 21, 31, 0.96) 100%);
  border-color: rgba(105, 214, 230, 0.28);
}
.explainer-copy h2 span {
  display: block;
}
.founder-section .section-head {
  max-width: 60rem;
}
#expertise .section-head {
  max-width: 58rem;
}
.desktop-nowrap {
  white-space: nowrap;
}
.cta-side {
  display: grid;
  gap: 1rem;
  justify-items: end;
  width: min(100%, 34rem);
}
.license-strip {
  width: min(100%, 34rem);
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 22px;
  background: rgba(8, 18, 27, 0.54);
  border: 1px solid rgba(105, 214, 230, 0.16);
  display: grid;
  gap: 0.8rem;
}
.license-strip-label {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.license-card {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 17, 24, 0.08);
  display: grid;
  gap: 0.7rem;
  align-items: center;
  min-height: 9.5rem;
}
.license-card span {
  color: #223744;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}
.license-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 4.4rem;
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
}
.license-logo-wrap-light {
  background: #f3f8fb;
}
.license-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.license-logo-mda {
  max-height: 2.15rem;
}
.license-logo-mayo {
  max-height: 2.55rem;
}
@media (max-width: 1160px) {
  .cta-side {
    justify-items: stretch;
    width: 100%;
  }
  .license-strip {
    width: 100%;
  }
}
@media (max-width: 980px) {
  .hero-flow-step-uniform strong,
  .hero-flow-step-uniform .hero-flow-subline,
  .desktop-nowrap {
    white-space: normal;
  }
}
@media (max-width: 860px) {
  .license-grid {
    grid-template-columns: 1fr;
  }
  .license-card {
    min-height: auto;
  }
}


/* v13 about-page refinement */
.about-hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.about-hero-card,
.about-hero-copy {
  height: 100%;
}
.about-hero-copy.card {
  padding: 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-hero-copy .hero-text {
  max-width: none;
  margin: 0;
  font-size: 1.02rem;
}
.about-hero-copy .hero-actions {
  margin-top: 0.35rem;
}
.about-hero-summary {
  margin-top: auto;
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(105, 214, 230, 0.14);
}
.about-hero-summary-item {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(105, 214, 230, 0.1);
}
.about-hero-summary-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.about-hero-summary-item span {
  display: block;
  margin-bottom: 0.28rem;
  color: #c4eef4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-hero-summary-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.about-trajectory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.about-trajectory {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.45rem;
  display: grid;
  gap: 0.95rem;
}
.about-trajectory li {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(105, 214, 230, 0.12);
  background: rgba(8, 18, 27, 0.5);
  color: var(--muted);
  line-height: 1.62;
}
.about-trajectory li::before {
  content: '';
  position: absolute;
  left: -0.55rem;
  top: 1.2rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.24rem rgba(105, 214, 230, 0.12);
}
.trajectory-date {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: rgba(105, 214, 230, 0.1);
  border: 1px solid rgba(105, 214, 230, 0.16);
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-trajectory strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}
@media (max-width: 1160px) {
  .about-trajectory-layout {
    grid-template-columns: 1fr;
  }
}

/* v16 mobile-only fixes: preserve desktop, repair iPhone layout */
@media (max-width: 980px) {
  .hero-flow-row {
    grid-template-columns: 1fr !important;
    gap: 0.55rem;
  }
  .hero-flow-shell {
    overflow: hidden;
  }
  .hero-flow-step {
    min-height: 0;
    padding: 0.95rem 1rem 0.92rem;
  }
  .hero-flow-step-uniform,
  .hero-flow-step-output {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.85rem;
    row-gap: 0.18rem;
    align-items: start;
  }
  .hero-flow-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 0.05rem;
  }
  .hero-flow-step strong,
  .hero-flow-step > span:last-of-type,
  .hero-flow-output-pills {
    grid-column: 2;
  }
  .hero-flow-step strong {
    white-space: normal !important;
    font-size: 1.08rem;
    line-height: 1.08;
  }
  .hero-flow-step > span:last-of-type,
  .hero-flow-subline {
    white-space: normal !important;
    min-height: 0;
    font-size: 0.96rem;
    line-height: 1.55;
  }
  .hero-flow-output-pills {
    margin-top: 0.55rem;
    padding-top: 0;
  }
  .hero-flow-arrow {
    width: 100%;
    justify-self: center;
    transform: rotate(90deg);
    margin: -0.08rem 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 860px) {
  .about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .about-hero-copy.card {
    padding: 1.2rem;
    gap: 0.85rem;
  }
  .about-hero-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
  }
  .about-hero-summary {
    margin-top: 0.35rem;
    padding-top: 0.85rem;
  }
}

@media (max-width: 640px) {
  .hero-flow-shell {
    padding: 0.95rem;
    border-radius: 24px;
  }
  .hero-flow-label {
    margin-bottom: 0.75rem;
  }
  .hero-flow-step {
    border-radius: 18px;
  }
  .about-hero-meta,
  .about-hero-facts {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
