:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(13, 13, 13, 0.9);
  --panel-strong: rgba(20, 20, 20, 0.96);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f7f5ef;
  --muted: #b9b6ad;
  --accent: #ffffff;
  --accent-strong: #c8c8c2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  --radius: 30px;
  --radius-sm: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #030303 0%, #0b0b0b 44%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: contain;
}

.brand-text {
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.language-option {
  display: inline-grid;
  place-items: center;
  min-width: 31px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--text);
}

.language-option.is-active {
  background: #f7f5ef;
  color: #050505;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.82);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.section {
  padding: 44px 0;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.95), rgba(9, 9, 9, 0.9));
  box-shadow: var(--shadow);
}

.panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow.subtle {
  margin-bottom: 12px;
  color: #d9d7cf;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  max-width: 100%;
  font-size: 4.5rem;
}

h2 {
  max-width: 26ch;
  font-size: 3.1rem;
  line-height: 1.1;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

p,
li,
span,
label {
  line-height: 1.68;
}

p,
li {
  text-wrap: pretty;
}

p {
  margin: 0;
}

.brand-mark {
  position: relative;
  top: -0.42em;
  display: inline-block;
  margin-left: 0.03em;
  font-size: 0.52em;
  line-height: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: start;
  min-height: auto;
}

.hero-copy,
.visual-card,
.hero-support,
.wide-logo-card,
.step-card,
.platform-aside,
.proof-card,
.case-study,
.ecosystem-card,
.contact-layout {
  padding: 22px;
}

.hero-text,
.hero-subtext,
.section-heading p:last-child,
.step-card p,
.proof-card p,
.platform-aside li,
.contact-copy p {
  color: var(--muted);
}

.hero-subtext {
  margin-top: 10px;
}

.hero-copy h1 {
  margin-top: 6px;
  margin-bottom: 12px;
}

.hero-lede {
  max-width: 17ch;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-copy .hero-text {
  margin: 16px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #ffffff, #d7d5cd);
  border-color: transparent;
  color: #050505;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.11);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.035);
}

.section-cta {
  display: flex;
  margin-top: 18px;
}

.mini-stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 16px 18px;
}

.mini-stat span,
.comparison-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.mini-stat span {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mini-stat strong {
  margin-top: 8px;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 1.24rem;
  line-height: 1.12;
}

.mini-stat small {
  display: block;
  margin-top: 6px;
  color: #d9d7cf;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-visual {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.proof-slate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 0;
  align-content: start;
}

.logo-slate {
  display: grid;
  gap: 14px;
  padding-top: 22px;
}

.hero-support {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 20px;
  align-items: center;
}

.hero-support .eyebrow {
  margin: 0;
}

.logo-grid {
  display: grid;
  gap: 12px;
}

.supported-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.supported-grid .logo-chip {
  min-height: 76px;
  padding: 12px;
}

.supported-grid .logo-chip img {
  max-height: 42px;
}

.supported-grid .logo-chip img[alt*="Google for Startups"],
.supported-grid .logo-chip img[alt*="NVIDIA"] {
  max-height: 58px;
}

.supported-grid .logo-chip img[alt*="OpenAI"] {
  max-height: 60px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 1;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 12px;
  animation: marquee-scroll 56s linear infinite;
  will-change: transform;
}

.logo-marquee .logo-chip {
  min-width: 188px;
  min-height: 82px;
}

.logo-marquee-featured .logo-chip {
  min-width: 176px;
}

.logo-marquee .logo-chip img[alt*="OpenAI"] {
  max-height: 66px;
}

.logo-marquee .logo-chip img[alt*="Google for Startups"] {
  max-height: 54px;
}

.logo-marquee .logo-chip img[alt*="IBM"] {
  max-height: 58px;
}

.logo-marquee .logo-chip img[alt*="NVIDIA"] {
  max-height: 56px;
}

.logo-marquee-featured .logo-chip img {
  max-height: 40px;
}

.logo-marquee-featured .logo-chip img[alt*="Amazon"] {
  max-height: 34px;
}

.logo-marquee-featured .logo-chip img[alt*="Forbes"] {
  max-height: 34px;
}

.logo-grid-double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.logo-grid-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.logo-chip {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfd, #f7fafc);
  border: 1px solid rgba(219, 228, 236, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 6px 16px rgba(0, 0, 0, 0.05);
}

.logo-chip img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.logo-grid-double .logo-chip img {
  max-height: 48px;
}

.logo-grid-triple .logo-chip img {
  max-height: 46px;
}

.wide-logo-card {
  display: grid;
  gap: 18px;
}

.f6s-section {
  padding-top: 14px;
}

.founders-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.founders-badge-wide {
  justify-content: center;
  padding: 18px 24px;
}

.founders-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f26b3a;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.founders-copy span,
.founders-copy small {
  display: block;
}

.founders-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.founders-copy strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.founders-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.logo-strip-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.logo-strip-heading p:last-child {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.ecosystem-copy {
  margin: 0 0 14px;
  color: var(--muted);
}

.wide-logo-image,
.client-wall {
  width: 100%;
  border-radius: 22px;
}

.client-marquee {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px 0;
  overflow: hidden;
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 1;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 0 16px;
  animation: marquee-scroll 74s linear infinite;
  will-change: transform;
}

.marquee-track-secondary {
  animation-name: marquee-scroll-reverse;
  animation-duration: 91s;
}

.client-card {
  display: grid;
  place-items: center;
  width: 176px;
  min-width: 176px;
  height: 88px;
  gap: 0;
  padding: 14px;
  border: 1px solid rgba(219, 228, 236, 0.7);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfd, #f7fafc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 6px 16px rgba(0, 0, 0, 0.05);
}

.client-card img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.client-label {
  display: none;
}

.client-card img[alt*="Fashion Clinic"],
.client-card img[src*="fashion-clinic"] {
  max-height: 50px;
}

.client-card img[alt*="McKinsey"],
.client-card img[src*="McKinsey"] {
  max-height: 66px;
}

.client-card img[alt*="Perfumes"],
.client-card img[src*="Perfumes.png"] {
  max-height: 60px;
}

.client-card img[alt*="European Commission"],
.client-card img[src*="European_Commission"] {
  max-height: 66px;
}

.client-card img[alt*="SIBS"],
.client-card img[src*="sibs"] {
  max-height: 66px;
}

.client-card img[alt*="Fundação la Caixa"],
.client-card img[alt*="Fundacao la Caixa"],
.client-card img[src*="fundacao la caixa"] {
  max-height: 58px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.section-heading p:last-child {
  max-width: 64ch;
  margin: 0;
}

@media (min-width: 900px) {
  .section-heading.split-heading {
    grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.56fr);
    column-gap: 34px;
    align-items: end;
  }

  .section-heading.split-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .section-heading.split-heading h2 {
    max-width: none !important;
  }

  .section-heading.split-heading p:last-child {
    justify-self: end;
    max-width: 54ch;
  }
}

#leadership .section-heading h2,
#clients .section-heading h2,
#ecosystem .section-heading h2,
#proof .section-heading h2,
#advisory .section-heading h2,
#science .section-heading h2,
#platform .section-heading h2,
.contact-copy h2 {
  max-width: 48ch;
}

.hero-copy,
.section-heading,
.case-study-copy,
.leadership-copy,
.expert-copy {
  max-width: 100%;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
}

.steps-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advisory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecosystem-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.credentials-layout {
  display: grid;
  gap: 16px;
}

.credentials-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  gap: 16px;
}

.credential-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.credential-card .ecosystem-copy {
  margin: 0;
}

.credential-card .logo-grid {
  gap: 10px;
}

.credential-card .logo-chip {
  min-height: 76px;
  padding: 12px;
  border-radius: 16px;
}

.credential-card .logo-grid-double .logo-chip img {
  max-height: 42px;
}

.credential-card .logo-grid-triple .logo-chip img {
  max-height: 40px;
}

.credential-card .logo-chip img[alt*="INSEAD"] {
  max-height: 50px;
}

.credential-card .logo-chip img[alt*="CNCA"] {
  max-height: 48px;
}

.credential-inline-stat {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.credential-inline-stat span,
.credential-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.credential-inline-stat strong,
.credential-meta-grid strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  line-height: 1.12;
}

.credential-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.95fr);
  align-items: start;
  gap: 16px;
}

.credential-wide-copy {
  display: grid;
  gap: 14px;
}

.credential-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.credential-meta-grid article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.step-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bullet-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.bullet-list li + li {
  margin-top: 10px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.section-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-study {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.case-study-copy h3,
.step-card h3,
.proof-card h3,
.ecosystem-card h3,
.platform-aside h3,
.leadership-bio h3,
.expert-copy h3 {
  margin-bottom: 10px;
}

.case-study-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-column {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-column ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-column li:last-child {
  border-bottom: 0;
}

.comparison-column strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.comparison-column small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.comparison-column.muted {
  opacity: 0.76;
}

.gaia-facts {
  margin-bottom: 20px;
}

.gaia-metrics-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.science-note {
  margin-top: 16px;
  padding: 18px 22px;
}

.science-note p {
  max-width: 92ch;
  color: var(--muted);
}

.science-paper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 22px;
}

.science-paper-copy {
  display: grid;
  gap: 8px;
}

.science-paper-copy .eyebrow {
  margin: 0;
}

.science-paper-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1.12;
}

.science-paper-button {
  flex-shrink: 0;
  min-width: 180px;
}

.expandable-panel {
  padding: 0;
}

.expandable-panel[open] {
  border-color: var(--line-strong);
}

.expandable-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 22px;
  list-style: none;
  cursor: pointer;
}

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

.expandable-copy {
  display: grid;
  gap: 10px;
}

.expandable-copy p:last-child {
  color: var(--muted);
}

.expandable-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e8e5dc;
  font-size: 0.86rem;
  font-weight: 700;
}

.expandable-panel[open] .expandable-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--accent);
}

.expandable-body {
  display: grid;
  gap: 20px;
  padding: 0 22px 22px;
}

.savings-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.savings-banner span {
  color: var(--muted);
  font-size: 0.92rem;
}

.savings-banner strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.certification-copy {
  display: grid;
  gap: 14px;
}

.government-copy {
  margin: 14px 0 0;
  color: var(--muted);
}

.leadership-layout {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.leadership-image-wrap {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 96px;
  height: 96px;
  min-height: 0;
  border-radius: 22px;
  border: 2px solid #111111;
  background: #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.leadership-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 20%;
}

.leadership-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.leadership-copy > p,
.leadership-bio p {
  margin: 0;
  color: var(--muted);
}

.leadership-bio {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.leadership-role {
  color: #e8e5dc;
  font-weight: 700;
}

.timeline-shell {
  padding: 8px 0 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(158px, 1fr));
  gap: 0;
  min-width: 1020px;
  padding: 34px 0 4px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  inset: 47px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
}

.timeline-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 48px 14px 8px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 16px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #bdbbb3);
  box-shadow: 0 0 0 8px rgba(5, 5, 5, 0.96), 0 0 0 9px rgba(255, 255, 255, 0.18);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-card h3 {
  font-size: 1.08rem;
  line-height: 1.16;
}

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

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.expert-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
}

.expert-image {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid #111111;
  background: #111111;
  padding: 0;
  transform: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.expert-copy {
  display: grid;
  gap: 8px;
}

.expert-copy h3 {
  font-size: 1.2rem;
}

.expert-role,
.expert-credential {
  margin: 0;
}

.expert-role {
  color: #e8e5dc;
  font-weight: 700;
}

.expert-credential {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.expert-copy p:last-child,
.expert-copy p {
  margin: 0;
  color: var(--muted);
}

.expert-copy p + p {
  margin-top: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #e8e5dc;
  font-size: 0.92rem;
}

.form-help {
  color: rgba(185, 182, 173, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8b82;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 1.5em;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #ffb5b5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  gap: 10px 18px;
  padding: 18px 0 26px;
  color: rgba(185, 182, 173, 0.88);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.site-footer-links a {
  color: rgba(247, 245, 239, 0.9);
  transition: color 180ms ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--text);
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 10px;
}

.legal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-back {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--text);
}

.legal-main {
  padding: 28px 0 48px;
}

.legal-card {
  padding: 28px;
}

.legal-intro {
  margin-top: 14px;
  max-width: 66ch;
  color: var(--muted);
}

.legal-copy {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .platform-layout,
  .contact-layout,
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .credentials-top,
  .credential-card-wide {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisory-grid {
    grid-template-columns: 1fr;
  }

  .science-grid {
    grid-template-columns: 1fr;
  }

  .supported-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gaia-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .logo-marquee .logo-chip {
    min-width: 170px;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-grid;
    place-content: center;
    flex-shrink: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.97);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav .language-switcher {
    justify-content: space-between;
    width: 100%;
  }

  .site-nav .language-option {
    flex: 1;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-footer {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .legal-shell {
    width: min(calc(100% - 20px), 860px);
  }

  .site-header {
    padding-top: 14px;
  }

  .hero,
  .proof-slate,
  .steps-grid,
  .proof-grid,
  .timeline-grid,
  .comparison-grid,
  .gaia-metrics-grid {
    grid-template-columns: 1fr;
  }

  .timeline-shell {
    padding: 22px;
  }

  .timeline-grid {
    min-width: 0;
    gap: 16px;
    padding: 0;
  }

  .timeline-grid::before {
    inset: 0 auto 0 5px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  }

  .timeline-card {
    min-height: 0;
    padding: 22px 18px 20px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
  }

  .timeline-card::before {
    top: 24px;
    left: -1px;
  }

  .expandable-summary {
    flex-direction: column;
  }

  .science-paper {
    flex-direction: column;
    align-items: start;
  }

  .science-paper-button {
    min-width: 0;
  }

  .expandable-toggle {
    min-width: 0;
  }

  .credential-meta-grid {
    grid-template-columns: 1fr;
  }

  .supported-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-support {
    grid-template-columns: 1fr;
  }

  .supported-grid .logo-chip,
  .supported-grid .logo-chip:nth-child(4),
  .supported-grid .logo-chip:nth-child(5) {
    grid-column: auto;
  }

  .credential-card .logo-grid-double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-card .logo-grid-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marquee-track {
    animation-duration: 86s;
  }

  .marquee-track-secondary {
    animation-duration: 103s;
  }

  .client-card {
    width: 150px;
    min-width: 150px;
    height: 78px;
  }

  .client-marquee::before,
  .client-marquee::after {
    width: 42px;
  }

  .logo-grid-double .logo-chip img,
  .logo-grid-triple .logo-chip img {
    max-height: 40px;
  }

  .leadership-image {
    width: 100%;
    height: 100%;
  }

  .founders-badge {
    flex-direction: column;
    align-items: start;
  }

  .hero-copy .hero-text {
    margin-top: 14px;
  }

  .expert-card {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 22px;
  }

  .expert-image {
    width: 82px;
    height: 82px;
    border-radius: 18px;
    object-position: center 20%;
  }

  .section {
    padding: 34px 0;
  }

  .hero-copy,
  .visual-card,
  .wide-logo-card,
  .step-card,
  .platform-aside,
  .proof-card,
  .case-study,
  .ecosystem-card,
  .contact-layout {
    padding: 22px;
  }

  .logo-strip-heading {
    flex-direction: column;
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .legal-header {
    flex-direction: column;
    align-items: start;
  }

  .legal-actions {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    max-width: 100%;
    font-size: 3rem;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1.55rem;
  }

  h2,
  #leadership .section-heading h2,
  #clients .section-heading h2,
  #ecosystem .section-heading h2,
  #proof .section-heading h2,
  #advisory .section-heading h2,
  #science .section-heading h2,
  #platform .section-heading h2,
  .contact-copy h2 {
    max-width: 100%;
    font-size: 2.05rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  h2,
  #leadership .section-heading h2,
  #clients .section-heading h2,
  #ecosystem .section-heading h2,
  #proof .section-heading h2,
  #advisory .section-heading h2,
  #science .section-heading h2,
  #platform .section-heading h2,
  .contact-copy h2 {
    font-size: 1.85rem;
  }

  .button {
    width: 100%;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }
}
