/* ============================================
   Genesis Science Park — Design Tokens
   Colors, type and spacing pulled directly
   from the Figma file. Do not change values
   here without checking the design file.
   ============================================ */
:root {
  --nearly-black: #1e1e1e;
  --neon-blue: #00f0ff;
  --white: #ffffff;
  --off-white: #fdfdfd;
  --grey: #979797;
  --grey-overlay: rgba(255, 255, 255, 0.1);

  --font-display: 'Darker Grotesque', sans-serif;
  --font-body: 'Lexend', sans-serif;

  /* Fluid type scale (desktop values from Figma in comments) */
  --fs-hero-word: clamp(2.5rem, 12vw, 14rem); /* scales to fill full width on one line; ~182px at 1512px viewport */
  --fs-h3: clamp(2rem, 5vw + 1rem, 4rem);               /* 64px */
  --fs-h2: clamp(1.5rem, 3vw + 1rem, 2.5rem);            /* 40px */
  --fs-heading1: clamp(1.75rem, 3vw + 1rem, 2.5rem);     /* 40px */
  --fs-body: 1rem;                                       /* 16px */
  --fs-nav: 1rem;                                        /* 16px */

  --container-max: 1512px;
  --gutter: clamp(20px, 4vw, 44px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--nearly-black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, p { margin: 0; }

.text-accent { color: var(--neon-blue); }

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  background: var(--nearly-black);
}

.logo img { height: 28px; width: auto; }

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

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-nav);
  color: var(--white);
  padding: 0 8px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-link.active {
  font-weight: 700;
  border-bottom-color: var(--neon-blue);
}

.nav-link:hover { color: var(--neon-blue); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 24px;
  border-radius: 20px;
  background: var(--neon-blue);
  color: var(--nearly-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.48px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-cta:not(:disabled):hover { opacity: 0.85; }

.btn-cta:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-cta--mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
  overflow: hidden;
  background: var(--nearly-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.figma.com/api/mcp/asset/aba89084-2047-4494-b154-9988f3e535c4.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 10vw, 126px);
  padding: 0 var(--gutter);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 758px;
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-heading1);
  line-height: 1.1;
}

.hero__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  letter-spacing: 0.48px;
  line-height: 1.5;
}

.hero__wordmark-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero-word);
  line-height: 1;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.hero__pill {
  display: inline-block;
  padding: 2px 16px;
  border: 1.5px solid var(--neon-blue);
  border-radius: 20px;
  line-height: 1.6;
}

/* ============================================
   Difference section
   ============================================ */
.difference {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
  text-align: center;
  overflow: hidden;
}

.difference__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  max-width: 661px;
}

.tiles {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1340px;
}

.tile {
  position: relative;
  width: 335px;
  max-width: 100%;
  flex: 1 1 260px;
  height: 497px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.tile--photo {
  background: var(--grey);
  border: 0.5px solid var(--white);
}

.tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile--text {
  background: var(--grey-overlay);
  border: 0.5px solid var(--white);
  border-left: none;
  padding: 32px 24px;
  gap: 12px;
  transition: background 0.25s ease;
}

.tile--text:hover { background: rgba(255, 255, 255, 0.18); }

.tile--text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  margin-bottom: 8px;
}

.tile--text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.4;
}

.tile::before,
.tile::after {
  content: '';
  position: absolute;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--neon-blue);
  z-index: 2;
}
 
.tile::before { top: -8px; }
.tile::after { bottom: -8px; }

/* ============================================
   Progress banner
   ============================================ */
.progress {
  background: var(--neon-blue);
  color: var(--nearly-black);
  padding: clamp(40px, 8vw, 10px) var(--gutter);
  display: flex;
  justify-content: flex-end;
  min-height: 200px;
  align-items: center;
}

.progress__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 0;
  max-width: 600px;
}

.progress__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
}

.progress__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
}

/* ============================================
   Insight / Opportunity article page
   ============================================ */
.insight { background: var(--nearly-black); }

.insight__header {
  display: flex;
  align-items: stretch;
}

.insight__title {
  flex: 1 1 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--white);
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  align-items: center;
}

.insight__header-img {
  flex: 1 1 0;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}

.insight__header-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight__quote {
  margin: 0;
  background: var(--neon-blue);
  color: var(--nearly-black);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 64px) var(--gutter);
}

.insight__quote-line {
  flex: 0 0 auto;
  align-self: stretch;
  width: 2px;
  background: var(--nearly-black);
  display: none;
}

.insight__quote-mark {
  flex: 0 0 auto;
  width: clamp(28px, 4vw, 50px);
  height: auto;
}

.insight__quote-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight__quote-text p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0;
}

.insight__quote-text cite {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  font-style: normal;
}

.insight__content {
  background: #fcfdfe;
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.insight__body {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}

.insight__toc {
  flex: 0 0 auto;
  width: 280px;
  position: sticky;
  top: 96px;
  color: var(--nearly-black);
}

.insight__toc h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  margin: 0 0 16px;
}

.insight__toc ol {
  margin: 0;
  padding-left: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight__toc a { color: var(--nearly-black); }
.insight__toc a:hover { color: var(--neon-blue);}

.insight__qa {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
  color: var(--nearly-black);
}

.qa-block { scroll-margin-top: 96px; }

.qa-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0 0 16px;
}

.qa-num { margin-right: 8px; }

.qa-block p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.qa-block p:last-child { margin-bottom: 0; }

.qa-block a {
  color: var(--nearly-black);
  text-decoration: underline;
}

.qa-block a:hover { color: var(--neon-blue); }

.qa-pullquote {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: var(--fs-h2) !important;
  color: var(--grey) !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
  padding: 24px 0 24px 40px;
}

.qa-cta {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.48px;
}

/* ============================================
   FAQ accordion
   ============================================ */
.faqs {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}

.faqs__panel {
  flex: 0 0 auto;
  width: 280px;
}

.faqs__panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--nearly-black);
  margin: 0;
  padding-top: 24px;
}

.faqs__list {
  flex: 1 1 0;
  min-width: 0;
}

.faq-item { position: relative; }

.faq-divider {
  border: none;
  border-top: 1px solid rgba(30, 30, 30, 0.15);
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  color: var(--nearly-black);
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--nearly-black);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-question.is-open .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  padding-bottom: 24px;
  margin: 0;
}

/* ============================================
   Model page
   ============================================ */
.model-hero {
  background: var(--nearly-black);
  padding: clamp(80px, 15vw, 180px) var(--gutter) clamp(48px, 8vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.model-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--white);
  max-width: 756px;
}

.model-hero__lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.25;
  color: var(--white);
  max-width: 1320px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--nearly-black);
  max-width: 1100px;
}

.what-you-get {
  background: var(--white);
  padding: clamp(48px, 8vw, 64px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
}

.model-card {
  position: relative;
  background: var(--off-white);
  border: 0.5px solid var(--nearly-black);
  padding: 32px 16px;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.model-card::before,
.model-card::after {
  content: '';
  position: absolute;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--neon-blue);
  z-index: 2;
}

.model-card::before { top: -8px; }
.model-card::after { bottom: -8px; }

.grid-marker {
  display: none;
  position: absolute;
  left: -8px;
  width: 16px;
  height: 16px;
  background: var(--neon-blue);
  z-index: 2;
}
 
.grid-marker--tl { top: -8px; }
.grid-marker--bl { bottom: -8px; }

.model-card:nth-child(3n+1) .grid-marker { display: block; }

.model-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--nearly-black);
  margin: 0;
}

.model-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.4;
  color: var(--nearly-black);
  margin: 0;
}

.what-you-get__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
}

.what-you-get__text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: 0;
}

/* ============================================
   Why this model
   ============================================ */
.why-model {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.why-model__row {
  display: flex;
  align-items: stretch;
}

.why-model__heading {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--nearly-black);
  padding: clamp(24px, 4vw, 44px) var(--gutter);
}

.why-model__heading--right { text-align: right; justify-content: flex-end; }

.why-model__panel {
  flex: 1 1 0;
  max-width: 756px;
  background: var(--neon-blue);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.why-model__panel p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: 0;
}

.why-model__panel a {
  color: var(--nearly-black);
  text-decoration: underline;
}

.why-model__panel a:hover { color: var(--white); }

.why-model__cta {
  font-weight: 500;
}

.model-faqs {
  background: #fcfdfe;
  padding: clamp(48px, 8vw, 64px) var(--gutter);
}

/* ============================================
   Coalition page
   ============================================ */
.coalition-logos {
  background: var(--white);
  padding: clamp(48px, 8vw, 64px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
}

.coalition-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
}

.coalition-logo__img {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coalition-logo__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.coalition-logo p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  color: var(--nearly-black);
  margin: 0;
  text-align: center;
}

.progress-timeline {
  background: var(--white);
  padding: 0 var(--gutter) clamp(48px, 8vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.progress-timeline__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--nearly-black);
  margin: 0;
  text-align: center;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--nearly-black);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  width: 50%;
}

.timeline-item--left {
  justify-content: flex-end;
  padding-right: 44px;
  margin-right: auto;
}

.timeline-item--right {
  justify-content: flex-start;
  padding-left: 44px;
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--nearly-black);
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-blue);
  transform: translate(-50%, -50%);
}

.timeline-item--left .timeline-dot { right: -8px; }
.timeline-item--right .timeline-dot { left: -8px; }

.timeline-card {
  background: #f1feff;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 380px;
}

.timeline-item--right .timeline-card { flex-direction: row-reverse; }

.timeline-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.4;
  color: var(--nearly-black);
  margin: 0;
  flex: 1 1 0;
}

.timeline-date {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--nearly-black);
  white-space: nowrap;
  flex: 0 0 auto;
}

/* ============================================
   Insights hub page
   ============================================ */
.insights-header {
  background: var(--nearly-black);
  padding: clamp(48px, 8vw, 64px) var(--gutter) clamp(24px, 4vw, 40px);
}

.insights-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  color: var(--white);
  margin: 0;
}

.insights-content {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.insights-featured {
  display: flex;
  align-items: stretch;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px var(--gutter) 64px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--nearly-black);
}

.insights-featured .insight-card {
  flex: 1 1 0;
  padding: clamp(24px, 4vw, 64px) var(--gutter) 24px;
}

.insight-card__img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--grey);
}

.insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-card__img img { transform: scale(1.03); }

.insight-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0;
  color: var(--nearly-black);
}

.insight-card--small .insight-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

.insight-card--small .insight-card__img { height: 400px; }

.insight-card__meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.48px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.insight-card__meta .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon-blue);
}

/* ============================================
   Insights - Bankability
   ============================================ */
.qa-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--nearly-black);
  margin: 0;
}

.qa-list {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: -8px 0 16px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qa-list--numbered {
  gap: 12px;
  margin-top: 0;
}

.qa-list strong {
  font-family: var(--font-body);
  font-weight: 500;
}

.qa-placeholder {
  color: #ff383c;
}

/* ============================================
   Insights - API Cost
   ============================================ */
.qa-lead {
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================
   Team page
   ============================================ */
.team-header {
  background: var(--nearly-black);
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 64px);
}

.team-header__title {
  flex: 1 1 320px;
  max-width: 756px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}

.team-header__intro {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-header__intro p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}

.founders {
  background: var(--white);
  padding: 0 var(--gutter);
}

.founders__row {
  display: flex;
  gap: 44px;
}

.founder-card {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(32px, 6vw, 64px) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-card__img {
  width: 100%;
  height: clamp(280px, 34vw, 516px);
  overflow: hidden;
  background: var(--grey);
}

.founder-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card__name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founder-card__name h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--nearly-black);
  margin: 0;
}

.founder-card__role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--grey);
  margin: 0;
}

.founder-card__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-card__bio p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: 0;
}

.advisory-board {
  background: var(--white);
  padding: 0 var(--gutter) clamp(48px, 8vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advisory-board__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  text-align: center;
  color: var(--nearly-black);
  margin: 0;
}

.advisory-board__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: -16px 0 0;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.advisor-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advisor-card__img {
  width: 100%;
  height: 200px;
  background: var(--grey);
  margin-bottom: 8px;
}

.advisor-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}

.advisor-card__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}

.advisor-card p:not(.advisor-card__role) {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   Prospectus page
   ============================================ */
.prospectus-header {
  background: var(--nearly-black);
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 64px);
}

.prospectus-header__title {
  flex: 1 1 320px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}

.prospectus-header__intro {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prospectus-header__intro p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.25;
  color: var(--white);
  margin: 0;
}

.prospectus-form {
  background: var(--white);
  padding: clamp(48px, 8vw, 64px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.prospectus-form__iframe-wrap {
  width: 100%;
  max-width: 700px;
  overflow-x: auto;
}

.prospectus-form__iframe-wrap iframe {
  display: block;
  width: 100%;
  min-width: 320px;
  max-width: 700px;
  height: 520px;
  border: none;
}

.prospectus-form__btn {
  border: none;
  cursor: not-allowed;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.prospectus-form__btn.is-active {
  cursor: pointer;
  opacity: 1;
}

.prospectus-form__btn:not(:disabled):hover { opacity: 0.85; }

.prospectus-form__hint {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  letter-spacing: 0.28px;
  color: var(--nearly-black);
  margin: 0;
  text-align: center;
}

@media (max-width: 640px) {
  .prospectus-form__iframe-wrap iframe { height: 620px; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--nearly-black);
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}

.footer__inner {
  max-width: 1074px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__rule {
  border: none;
  border-top: 0.5px solid var(--grey);
  margin: 0;
}

.footer__rule--faint {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

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

.footer__logo img { height: 185.5px; width: auto; }

.footer__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.28px;
  max-width: 283px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer__address {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

.footer__socials {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  width: 100%;
}

.footer__socials svg {
  width: 22px;
  height: 22px;
  fill: var(--neon-blue);
  transition: fill 0.2s ease;
}

.footer__socials a:hover svg { fill: var(--neon-blue); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer__copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.32px;
  max-width: 564px;
}

.footer__legal {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer__legal a:hover { color: var(--neon-blue); }

/* ============================================
   Legal pages (Privacy Policy, etc.)
   ============================================ */
.legal { background: var(--nearly-black); }

.legal__header {
  padding: clamp(48px, 8vw, 64px) var(--gutter) clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  color: var(--white);
  margin: 0;
}

.legal__updated {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  color: var(--grey);
  margin: 0;
}

.legal__content {
  background: #fcfdfe;
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}

.legal__toc {
  flex: 0 0 auto;
  width: 280px;
  position: sticky;
  top: 96px;
  color: var(--nearly-black);
}

.legal__toc h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  margin: 0 0 16px;
}

.legal__toc ol {
  margin: 0;
  padding-left: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__toc a {
  color: var(--nearly-black);
  transition: color 0.2s ease;
}

.legal__toc a:hover { color: var(--neon-blue); }

.legal__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--nearly-black);
}

.legal-section { scroll-margin-top: 96px; }

.legal-section h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0 0 16px;
}

.legal-section p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-lead {
  font-family: var(--font-body);
  font-weight: 500;
}

.legal-list {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: -8px 0 16px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .legal__content { flex-direction: column; }
  .legal__toc { position: static; width: 100%; }
}

/* ============================================
   Contact page
   ============================================ */
.contact-header {
  background: var(--nearly-black);
  padding: clamp(32px, 6vw, 64px) var(--gutter) clamp(24px, 4vw, 32px);
}

.contact-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  color: var(--white);
  margin: 0;
}

.contact-body {
  background: #fcfdfe;
  padding: clamp(32px, 6vw, 64px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.contact-body__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  max-width: 700px;
  margin: 0;
}

.contact-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-panel {
  flex: 0 0 auto;
  width: 652px;
  max-width: 100%;
  background: #f1feff;
  border-left: 2px solid var(--neon-blue);
  padding: clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--nearly-black);
  margin: 0;
}

.contact-panel p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.6;
  color: var(--nearly-black);
  margin: 0;
}

.contact-panel__cta {
  color: var(--nearly-black);
  font-weight: 500;
  text-decoration: underline;
}

.contact-panel__cta:hover { color: var(--neon-blue); }

.contact-form {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.48px;
  color: var(--nearly-black);
  background: var(--white);
  border: 1px solid var(--nearly-black);
  border-radius: 16px;
  padding: 0 24px;
  height: 64px;
  transition: border-color 0.2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--grey);
  font-style: italic;
  opacity: 1;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
}

.contact-form__field textarea {
  height: auto;
  padding: 24px;
  resize: vertical;
  min-height: 120px;
}

.contact-form__field--message { flex: 1 1 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form__consent input {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  accent-color: var(--nearly-black);
  border: 1px solid var(--nearly-black);
  cursor: pointer;
  flex: 0 0 auto;
}

.contact-form__consent label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 1.5;
  color: var(--nearly-black);
}

.contact-form__consent label a {
  color: var(--nearly-black);
  text-decoration: underline;
}

.contact-form__consent label a:hover { color: #007a85; }

.contact-form__error {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #d1293d;
  margin: 0;
}

.contact-form__submit { display: flex; }

/* ============================================
   Responsive breakpoints
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .tile { flex-basis: 45%; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .btn-cta--desktop { display: none; }
  .btn-cta--mobile {
    display: inline-flex;
    margin-top: 8px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--nearly-black);
    padding: 16px var(--gutter) 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 10px 8px;
    border-bottom: none;
    border-left: 2px solid transparent;
  }

  .nav-link.active { border-left-color: var(--neon-blue); }

  .hero__pill { display: none; }
}

@media (max-width: 640px) {
  .tile { flex-basis: 100%; height: 380px; }
  .tile--text { border-left: 0.5px solid var(--white); }

  .progress { justify-content: flex-start; }
  .progress__inner { align-items: flex-start; text-align: left; }

  .footer__contact { align-items: flex-start; }
  .footer__address { text-align: left; }
  .footer__socials { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================
   Opportunity page responsive
   ============================================ */
@media (max-width: 900px) {
  .insight__header { flex-direction: column-reverse; align-items: stretch; }
  .insight__header-img { width: 100%; height: 220px; }
  .insight__title { padding-bottom: 24px; }

  .insight__quote { flex-wrap: wrap; }

  .insight__body { flex-direction: column; }
  .insight__toc { position: static; width: 100%; }

  .faqs { flex-direction: column; }
  .faqs__panel { width: 100%; }
  .faqs__panel h2 { padding-top: 0; }
}

@media (max-width: 640px) {
  .qa-block h3, .qa-pullquote { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .faq-question span:first-child { font-size: 20px; }
}

/* ============================================
   Model page responsive
   ============================================ */
@media (max-width: 900px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }

  .model-card:nth-child(3n+1) .grid-marker { display: none; }
  .model-card:nth-child(2n+1) .grid-marker { display: block; }

  .why-model__row,
  .why-model__row--reverse { flex-direction: column; }

  .why-model__heading,
  .why-model__heading--right {
    max-width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .model-grid { grid-template-columns: 1fr; }
  .model-card { min-height: 220px; }
}

/* ============================================
   Insights hub responsive
   ============================================ */
@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .insights-featured { flex-direction: column; }

  .insights-featured .insight-card {
    padding: 24px var(--gutter);
  }

  .insight-card__img,
  .insight-card--small .insight-card__img { height: 280px; }
}

@media (max-width: 560px) {
  .insights-grid { grid-template-columns: 1fr; padding: 24px var(--gutter) 48px; }
}

/* ============================================
   Team page responsive
   ============================================ */
@media (max-width: 860px) {
  .founders__row { flex-direction: column; gap: 0; }
  .founder-card { padding: 32px 0; }
  .founder-card:not(:last-child) { border-bottom: 0.5px solid var(--grey); }
}

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

@media (max-width: 640px) {
  .advisor-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Coalition page responsive
   ============================================ */
@media (max-width: 768px) {
  .timeline::before { left: 8px; }

  .timeline-item,
  .timeline-item--left,
  .timeline-item--right {
    width: 100%;
    justify-content: flex-start;
    padding-left: 32px;
    padding-right: 0;
    margin: 0;
  }

  .timeline-item--left .timeline-dot,
  .timeline-item--right .timeline-dot {
    left: 0;
    right: auto;
  }

  .timeline-item--right .timeline-card { flex-direction: row; }
  .timeline-card { max-width: 100%; }
}

/* ============================================
   Contact page responsive
   ============================================ */
@media (max-width: 860px) {
  .contact-grid { flex-direction: column; }
  .contact-panel { max-width: 100%; }
}
