:root {
  --ink: #000000;
  --muted: #000000;
  --cream: #fffbf5;
  --blush: #f8f3f1;
  --lilac: #d7cbf0;
  --coral: #eebbaf;
  --aqua: #52d4cf;
  --line: rgba(0, 0, 0, .18);
  --surface: rgba(255, 255, 255, .58);
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 243, 241, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
}

.brand img {
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #000000;
}

.button.light {
  background: transparent;
  color: #000000;
}

.button.light:hover {
  background: transparent;
  color: #000000;
}

.section {
  padding: clamp(72px, 9vw, 126px) 0;
  position: relative;
  overflow: hidden;
}

.inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  background: #fff;
  padding: clamp(70px, 8vw, 120px) 0 clamp(54px, 7vw, 92px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -4%;
  width: min(1880px, 148vw);
  aspect-ratio: 1472 / 704;
  background: url("assets/media/27bca97209b79673e05571a660d7287c.png") center / contain no-repeat;
  opacity: .96;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.04;
  font-weight: 500;
  overflow-wrap: break-word;
}

h2 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(30px, 4.1vw, 48px);
  line-height: 1.08;
  font-weight: 500;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 600;
}

.lead {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.28;
  font-weight: 500;
}

.support {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.band-lilac { background: var(--lilac); }
.band-cream { background: var(--cream); }
.band-blush { background: var(--blush); }
.band-coral { background: var(--coral); }
.band-white { background: #fff; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}

#problem .lead,
#intelligence .lead,
#intelligence .big-statement {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
}

.panel {
  border: 0;
  border-radius: 0;
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 42px);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.check-grid li,
.report-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-grid li::before,
.report-list li::before {
  content: "✓";
  color: var(--ink);
  font-weight: 800;
  flex: 0 0 auto;
}

.report-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.article-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.article-card h3 {
  min-height: 88px;
}

.article-card p {
  margin-top: 0;
}

.article-card span {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.card {
  border: 0;
  border-radius: 0;
  background: var(--surface);
  padding: 28px;
  min-height: 260px;
}

.card p:last-child,
.panel p:last-child { margin-bottom: 0; }

.big-statement {
  max-width: 960px;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}

.pattern {
  position: absolute;
  width: min(980px, 82vw);
  aspect-ratio: 1472 / 704;
  background: url("assets/media/27bca97209b79673e05571a660d7287c.png") center / contain no-repeat;
  opacity: .9;
  right: -220px;
  bottom: -150px;
  pointer-events: none;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  background: url("assets/media/27bca97209b79673e05571a660d7287c.png") center / cover no-repeat;
  min-height: 172px;
}

.metric {
  background: transparent;
  color: var(--ink);
  padding: clamp(24px, 4vw, 42px);
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric + .metric {
  border-left: 1px solid #ffffff;
}

.metric strong {
  display: block;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 500;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.logo-marquee {
  margin-top: 44px;
  overflow: hidden;
  background: #fff;
  padding: 18px 0;
  white-space: nowrap;
}

.marquee-title {
  margin: 44px 0 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding-right: clamp(34px, 6vw, 82px);
}

.logo-group img {
  display: block;
  max-width: none;
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.18);
  mix-blend-mode: multiply;
}

.logo-group img.tall {
  height: 76px;
}

.logo-group img.wide {
  height: 46px;
}

.logo-group img.climate-logo {
  height: 86px;
}

.logo-group img.female-logo {
  height: 38px;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.founders-photo {
  width: 100%;
  aspect-ratio: 1155 / 727;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 34px;
  border: 0;
}

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

.founder-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.founder-summary {
  min-height: 56px;
}

.role {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact {
  margin-top: 24px;
  display: grid;
  gap: 5px;
  font-size: 16px;
}

.contact a {
  text-underline-offset: 4px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.linkedin-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: #000000;
}

footer {
  background: rgba(248, 243, 241, .9);
  color: #000000;
  padding: 44px 0;
  font-size: 15px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav {
    min-height: 78px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .two-col,
  .cards,
  .founder-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  body { font-size: 17px; }

  .nav {
    width: min(var(--max), calc(100% - 28px));
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .brand img {
    width: 96px;
    height: 96px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .nav-links .button {
    width: 100%;
  }

  .inner,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  .hero::before {
    opacity: .78;
    inset: 12% auto auto -70%;
    width: 1080px;
  }

  .card,
  .panel {
    padding: 22px;
  }
}
