:root {
  --green-950: #06240c;
  --green-900: #0a3f14;
  --green-800: #0c5c1c;
  --green-700: #0f7a24;
  --green-600: #1a9a32;
  --green-500: #2db84a;
  --green-400: #5ad66a;
  --green-300: #97e89a;
  --green-200: #c9f3cb;
  --green-100: #e7f8e8;
  --green-50: #f3fbf4;
  --ink: #161c16;
  --ink-soft: #3d4a3d;
  --muted: #6b776b;
  --line: rgba(15, 122, 36, 0.18);
  --paper: #f7f8f6;
  --white: #ffffff;
  --black: #0b0d0b;
  --shadow: 0 18px 40px rgba(10, 63, 20, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --slide-ms: 780ms;
  --header-h: 80px;
  --pad-x: clamp(32px, 5.5vw, 88px);
  --pad-y: clamp(24px, 4.2vh, 56px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a {
  color: inherit;
}

#app,
.stage {
  height: 100%;
  overflow: hidden;
}

.boot {
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--green-800);
  color: #fff;
  gap: 16px;
}

.boot p {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;
}

.boot-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9aff55, #148a28);
  clip-path: polygon(8% 8%, 52% 8%, 8% 92%, 8% 8%, 92% 8%, 92% 92%, 48% 92%, 92% 8%);
  animation: pulse 1.2s ease-in-out infinite;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 40;
  background: linear-gradient(90deg, #9aff55, #1a9a32);
  transition: width 0.45s var(--ease);
}

.brand {
  position: fixed;
  top: 20px;
  right: var(--pad-x);
  z-index: 30;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

html.is-hero-slide .brand {
  display: none !important;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.brand-logo-dark {
  display: none;
}

html.is-dark-slide .brand-logo-light {
  display: none;
}

html.is-dark-slide .brand-logo-dark {
  display: block;
}

.menu-toggle {
  position: fixed;
  top: 18px;
  left: var(--pad-x);
  z-index: 50;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  background: rgba(8, 24, 12, 0.28);
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

html.is-dark-slide .menu-toggle,
.menu-open .menu-toggle {
  color: #fff;
}

html:not(.is-dark-slide) .menu-toggle {
  color: var(--green-800);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 16, 8, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.topic-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: min(340px, 86vw);
  height: 100%;
  padding: 84px 28px 32px;
  overflow: auto;
  background: linear-gradient(180deg, #072010 0%, #04140a 100%);
  color: #fff;
  transform: translateX(-108%);
  transition: transform 0.45s var(--ease);
}

.menu-open .topic-menu {
  transform: none;
}

.topic-menu-head img {
  height: 28px;
  width: auto;
  margin-bottom: 18px;
}

.topic-menu-head p {
  margin: 0 0 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.55;
}

.topic-list,
.topic-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topic-list > li {
  margin-bottom: 4px;
}

.topic-list button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.topic-list button:hover,
.topic-list button.is-current {
  background: rgba(46, 184, 74, 0.18);
  color: #fff;
}

.topic-group > span {
  display: block;
  margin: 16px 12px 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
}

.topic-group ul button {
  padding-left: 20px;
  font-weight: 500;
}

.dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: 1px solid currentColor;
  opacity: 0.38;
  transition: transform 0.25s var(--ease), opacity 0.25s, background 0.25s, height 0.25s;
}

html.is-dark-slide .dot {
  color: #fff;
}

html:not(.is-dark-slide) .dot {
  color: var(--green-700);
}

.dot.is-on {
  opacity: 1;
  height: 22px;
  background: currentColor;
}

.dot:hover {
  opacity: 1;
}

.arrows {
  position: fixed;
  bottom: 22px;
  right: 64px;
  z-index: 30;
  display: flex;
  gap: 8px;
}

.arrow {
  display: grid;
  place-items: center;
}

.arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

html.is-dark-slide .arrow,
html.is-dark-slide .pager,
html.is-dark-slide .hint {
  color: #fff;
}

html:not(.is-dark-slide) .arrow,
html:not(.is-dark-slide) .pager,
html:not(.is-dark-slide) .hint {
  color: var(--green-800);
}

html.is-split-slide .dot,
html.is-split-slide .arrow {
  color: #fff;
}

.pager {
  position: fixed;
  left: var(--pad-x);
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.counter {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  white-space: nowrap;
}

.pager-copy {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  font-weight: 500;
  opacity: 0.72;
  white-space: nowrap;
}

.hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 30;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  pointer-events: none;
}

.deck {
  display: flex;
  height: 100%;
  transition: transform var(--slide-ms) var(--ease);
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: var(--pad-y) calc(var(--pad-x) + 20px) calc(var(--pad-y) + 8px) var(--pad-x);
}

.slide-inner {
  height: 100%;
  padding: var(--header-h) 0 52px;
}

.watermark {
  position: absolute;
  inset: 8% 18%;
  background: radial-gradient(circle at 50% 45%, rgba(46, 184, 74, 0.08), transparent 58%);
  pointer-events: none;
}

.watermark::before,
.watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(15, 122, 36, 0.16);
  transform: scale(0.72);
  animation: spin 48s linear infinite;
}

.watermark::after {
  transform: scale(1);
  animation-duration: 72s;
  animation-direction: reverse;
  border-style: solid;
  border-color: rgba(15, 122, 36, 0.08);
}

.kicker {
  margin: 0 0 6px;
  color: var(--green-600);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.1vw, 14px);
}

.display {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--green-700);
  font-size: clamp(28px, 3.4vw, 48px);
}

.lede,
.body,
.muted {
  color: var(--ink-soft);
  line-height: 1.55;
}

.anim {
  opacity: 0;
  transform: translateY(28px);
}

.slide.is-active .anim {
  animation: rise 0.85s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

.anim-left {
  transform: translateX(-32px);
}

.anim-right {
  transform: translateX(40px);
}

.slide.is-active .anim-left,
.slide.is-active .anim-right {
  animation-name: rise;
}

/* Cover / thank you */
.slide-cover {
  background:
    radial-gradient(900px 500px at 18% 10%, rgba(90, 214, 106, 0.28), transparent 55%),
    radial-gradient(800px 600px at 88% 80%, rgba(20, 120, 40, 0.35), transparent 50%),
    linear-gradient(160deg, #083016 0%, #04140a 48%, #020805 100%);
  color: #fff;
}

.lava {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 46% 54% 62% 38%;
  filter: blur(8px);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.b1 {
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  top: -22%;
  left: -14%;
  background: radial-gradient(circle, rgba(170, 255, 120, 0.55), rgba(10, 90, 30, 0.05) 70%);
  animation: morph 14s ease-in-out infinite;
}

.b2 {
  width: min(48vw, 580px);
  height: min(42vw, 520px);
  right: -12%;
  bottom: -24%;
  background: radial-gradient(circle, rgba(80, 210, 90, 0.48), rgba(8, 50, 16, 0.04) 72%);
  animation: morph 18s ease-in-out infinite reverse;
}

.b3 {
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  top: 28%;
  left: 42%;
  background: radial-gradient(circle, rgba(210, 255, 150, 0.32), transparent 68%);
  animation: morph 11s ease-in-out infinite;
}

.b4 {
  width: min(28vw, 340px);
  height: min(36vw, 400px);
  left: 8%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(46, 184, 74, 0.4), transparent 70%);
  animation: morph 16s ease-in-out infinite reverse;
}

.b5 {
  width: min(22vw, 260px);
  height: min(22vw, 260px);
  top: 12%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 255, 180, 0.22), transparent 66%);
  animation: morph 13s ease-in-out infinite;
}

.hero-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-h) 24px 52px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(58vw, 560px);
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.hero-inner .display {
  color: #fff;
  max-width: 16ch;
  font-size: clamp(28px, 4.2vw, 58px);
  letter-spacing: -0.045em;
}

.hero-sub {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.cta {
  margin-top: 36px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9aff55, #1a9a32);
  color: #06240c;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 40px rgba(46, 184, 74, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(46, 184, 74, 0.48);
}

.cover-thanks {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 640px;
}

.cover-thanks .display {
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
}

.cover-date,
.cover-meta {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  opacity: 0.92;
}

.contacts a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* About */
.slide-about {
  background: var(--white);
  padding: 0;
}

.about-layout {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) minmax(72px, 11vh);
  min-height: 0;
}

.about-head {
  max-width: 920px;
  padding: var(--header-h) calc(var(--pad-x) + 20px) 16px var(--pad-x);
  height: auto;
}

.about-head .lede {
  margin: 10px 0 0;
  max-width: 880px;
  font-size: clamp(13px, 1.15vw, 16px);
}

.pillars-block {
  --step-size: 28px;
  --step-pad-mid: clamp(20px, 2.4vw, 36px);
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(180deg, var(--green-700), var(--green-800));
  color: #fff;
}

.step-track {
  position: relative;
  padding: 12px 0 0;
}

.step-track ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.step-track li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step-num {
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  background: var(--green-900);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  opacity: 0.5;
  transform: scale(0.9);
}

.step-rail {
  position: absolute;
  top: calc(12px + var(--step-size) / 2);
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
}

.step-rail-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #97e89a, #fff);
  box-shadow: 0 0 10px rgba(154, 255, 85, 0.55);
}

.slide.is-active .step-rail-fill {
  animation: step-fill 1.7s var(--ease) forwards;
  animation-delay: 0.45s;
}

.slide.is-active .step-track li:nth-child(1) .step-num {
  animation: step-on 0.35s var(--ease) forwards;
  animation-delay: 0.45s;
}

.slide.is-active .step-track li:nth-child(2) .step-num {
  animation: step-on 0.35s var(--ease) forwards;
  animation-delay: 1.22s;
}

.slide.is-active .step-track li:nth-child(3) .step-num {
  animation: step-on 0.35s var(--ease) forwards;
  animation-delay: 2s;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 0;
}

.pillar {
  padding: clamp(12px, 1.8vh, 22px) clamp(20px, 2.4vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.pillar:first-child {
  padding-left: var(--pad-x);
}

.pillar:last-child {
  border-right: 0;
  padding-right: calc(var(--pad-x) + 20px);
}

.pillar img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 10px;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.35vw, 20px);
}

.pillar p,
.pillar .deliverable {
  margin: 0;
  font-size: clamp(12px, 1.05vw, 14.5px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.pillar .deliverable {
  margin-top: 12px;
  font-weight: 700;
}

.banner {
  position: relative;
  min-height: 72px;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 50, 16, 0.35), rgba(8, 40, 14, 0.55));
}

.banner p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px var(--pad-x);
  max-width: 1100px;
  color: #fff;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.4;
}

/* Capabilities */
.slide-light {
  background: var(--white);
}

.cap-head {
  margin-bottom: 18px;
}

[data-id="modular"] .cap-head {
  margin-bottom: 12px;
}

[data-id="modular"] .slide-inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

[data-id="modular"] .slide-inner.mod-page {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(12px, 2vw, 36px);
  align-items: stretch;
  flex: 1;
}

[data-id="modular"] .cap-head .lede {
  max-width: 52ch;
}

.mod-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.cap-head .lede {
  margin: 8px 0 0;
  max-width: 820px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 24px) clamp(16px, 2vw, 28px);
}

.cap-card {
  min-width: 0;
}

.cap-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 8px;
}

.cap-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
}

.cap-card h3 {
  margin: 0 0 6px;
  color: var(--green-700);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.25;
}

.cap-card p {
  margin: 0;
  font-size: clamp(12px, 1.02vw, 14px);
  color: var(--muted);
}

/* Leadership */
.slide-leadership {
  background: #fff;
  padding: 0;
}

.lead-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
}

.lead-main {
  padding: var(--header-h) 40px 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lead-main .lede {
  font-style: italic;
  margin: 8px 0 18px;
  font-size: clamp(13px, 1.15vw, 16px);
}

.person {
  margin-bottom: 16px;
}

.person h3 {
  margin: 0 0 6px;
  font-size: clamp(15px, 1.3vw, 18px);
}

.person h3 span {
  color: var(--green-700);
}

.person p {
  margin: 0;
  font-size: clamp(12px, 1.05vw, 14.5px);
}

.orgs {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.orgs img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.orgs-caption {
  width: 100%;
  margin: 6px 0 0;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
}

.lead-aside {
  background: #0b0d0b;
  color: #fff;
  padding: var(--header-h) calc(var(--pad-x) + 20px) 32px 32px;
  position: relative;
  overflow: hidden;
}

.lead-aside h3 {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 700;
  max-width: 16ch;
}

.lead-aside h3 em {
  color: var(--green-400);
  font-style: normal;
}

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

.stat strong {
  display: block;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
}

.stat span {
  font-size: 11px;
  opacity: 0.8;
}

.globe {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 120%;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  opacity: 0.95;
  animation: slowspin 80s linear infinite;
  transform-origin: 50% 55%;
}

/* Partnerships */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(180px, 28%) 1fr;
  align-items: center;
  min-height: 92px;
  padding: 12px 28px;
  background: #ecefed;
  border-radius: 18px;
  gap: 16px;
}

.partner-row span {
  color: var(--muted);
  font-weight: 600;
}

.partner-logos {
  display: flex;
  justify-content: flex-start;
  gap: 36px;
  align-items: center;
  min-width: 0;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 58px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  flex: 0 1 auto;
}

.partner-footer {
  margin: 28px 0 0;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
}

/* Section divider */
.slide-section .display {
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
}

.slide-section .lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.6vw, 22px);
}

.section-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10vh;
  padding: 0 calc(var(--pad-x) + 20px) 0 var(--pad-x);
}

/* Modular */
.mod-layout {
  flex: 1;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}

.mod-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 22px 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7ead8;
  box-shadow: 0 14px 36px rgba(8, 50, 16, 0.08);
}

.mod-card h3 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mod-see,
.mod-hide {
  align-self: flex-start;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  border: 1px solid #d7ead8;
  transition: background 0.2s var(--ease), border-color 0.2s;
}

.mod-see:hover,
.mod-hide:hover {
  background: var(--green-100);
  border-color: #b7d8b9;
}

.mod-hide {
  margin-top: 0;
  background: #fff;
}

/* Added: the one link out of the deck, to the full capability showcase.
   Deliberately unlike .mod-see — those open a panel inside this slide,
   this one leaves for another page — so it is filled rather than
   outlined. White on --green-800 is 8.19:1. */
.mod-open {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--green-800);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--green-800);
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease);
}

.mod-open:hover,
.mod-open:focus-visible {
  background: var(--green-900);
  border-color: var(--green-900);
}

.mod-open:hover span[aria-hidden] {
  transform: translate(2px, -2px);
}

.mod-open span[aria-hidden] {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

/* the deck has no such helper yet; the link needs one for its new-tab note */
.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;
}

.mod-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  pointer-events: none;
}

.iso-viz {
  width: 100%;
  height: 100%;
  max-height: min(100%, 560px);
  overflow: visible;
}

.iso-viz .iso-top,
.iso-viz .iso-left,
.iso-viz .iso-right {
  stroke: rgba(6, 42, 20, 0.14);
  stroke-width: 0.7;
  stroke-linejoin: round;
}

.iso-viz .iso-quad .iso-top,
.iso-viz .iso-unit .iso-top {
  stroke: rgba(40, 110, 64, 0.16);
}

.iso-pads polygon {
  fill: rgba(155, 214, 172, 0.28);
  stroke: #8ecfa0;
  stroke-width: 1;
}

.iso-guides line {
  stroke: #0f6b38;
  stroke-width: 1.35;
  stroke-dasharray: 3 4.5;
  stroke-linecap: round;
  opacity: 0.72;
}

.iso-brackets polyline {
  fill: none;
  stroke: #0a5c32;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iso-accent line {
  stroke: #1b7a48;
  stroke-width: 1.15;
  stroke-dasharray: 2.4 4.6;
  opacity: 0.42;
}

.iso-accent polygon {
  fill: #0d6b3c;
}

.iso-accent circle {
  fill: #1b7a48;
  opacity: 0.5;
}

.iso-slot {
  stroke: #083828;
  stroke-width: 1.65;
  stroke-linecap: round;
  opacity: 0.88;
}

.mod-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}

.mod-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mod-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 8, 0.58);
  backdrop-filter: blur(4px);
}

.mod-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100vw - 48px));
  max-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d7ead8;
  box-shadow: 0 24px 64px rgba(4, 16, 8, 0.28);
  overflow: hidden;
}

.mod-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 14px;
  flex-shrink: 0;
}

.mod-modal-head h3 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.03em;
}

.mod-modal-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 24px 24px;
}

.mod-modal-list.is-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.mod-modal-list .module-card {
  background: var(--green-50);
  padding: 14px 16px;
  border-radius: 14px;
  gap: 12px;
  grid-template-columns: 48px 1fr;
}

.mod-modal-list .module-card img {
  width: 48px;
  height: 48px;
}

.mod-modal-list .module-card h3 {
  font-size: clamp(14px, 1.15vw, 16px);
}

.mod-modal-list .module-card p {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.45;
}

/* Modules grid */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 10px;
  height: calc(100% - 58px);
}

.module-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px 10px;
  background: var(--green-50);
  border: 1px solid #cfe8d0;
  border-radius: 12px;
  min-height: 0;
}

.module-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.module-card h3 {
  margin: 0 0 2px;
  color: var(--green-800);
  font-size: clamp(12px, 1.05vw, 14.5px);
  line-height: 1.2;
}

.module-card p {
  margin: 0;
  font-size: clamp(11px, 0.92vw, 12.5px);
  color: var(--muted);
  line-height: 1.35;
}

/* Product */
.product-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.25fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

.product-copy .display {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 14px;
}

.product-copy p {
  margin: 0 0 12px;
  font-size: clamp(14px, 1.2vw, 16.5px);
}

.badge-row {
  margin-top: 18px;
}

.badge-row p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.badge-row img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e3e8e3;
  border-radius: 8px;
  padding: 6px 10px;
}

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

.feature {
  display: grid;
  grid-template-columns: 36px 1fr minmax(120px, 34%);
  gap: 12px;
  align-items: center;
  background: #ecefed;
  border-radius: 16px;
  padding: 12px 14px 12px 12px;
  min-height: 96px;
}

.feature-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.feature h3 {
  margin: 0 0 4px;
  color: var(--green-700);
  font-size: clamp(15px, 1.3vw, 18px);
}

.feature p {
  margin: 0;
  font-size: clamp(12px, 1.05vw, 14px);
  color: var(--ink-soft);
}

.feature img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  object-position: top left;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #fff;
}

.feature.no-image {
  grid-template-columns: 36px 1fr;
  min-height: 88px;
}

/* Motion */
@keyframes step-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes step-on {
  to {
    opacity: 1;
    transform: scale(1);
    background: #fff;
    color: var(--green-800);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes morph {
  0%,
  100% {
    border-radius: 46% 54% 62% 38%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    border-radius: 62% 38% 46% 54%;
    transform: translate(4%, -6%) rotate(10deg) scale(1.08);
  }
  66% {
    border-radius: 38% 62% 54% 46%;
    transform: translate(-5%, 5%) rotate(-8deg) scale(0.94);
  }
}

@keyframes pulse {
  50% {
    transform: scale(0.92);
    opacity: 0.7;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg) scale(0.72);
  }
}

@keyframes slowspin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .anim {
    opacity: 1;
    transform: none;
  }

  .step-rail-fill {
    width: 100%;
  }

  .step-num {
    opacity: 1;
    transform: none;
    background: #fff;
    color: var(--green-800);
    border-color: #fff;
  }
}

@media (max-width: 960px) {
  .dots,
  .hint {
    display: none;
  }

  .arrows {
    right: 16px;
  }

  .pager {
    left: 20px;
    bottom: 16px;
    max-width: calc(100% - 120px);
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .pager-copy {
    font-size: 10px;
  }

  .slide {
    overflow: auto;
  }

  .cover-grid,
  .lead-grid,
  .product-grid,
  .mod-layout,
  .mod-page,
  .pillars,
  .module-grid,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .partner-list {
    gap: 12px;
    margin-top: 16px;
  }

  .partner-row {
    min-height: 0;
    padding: 14px 16px;
    gap: 10px;
    align-items: flex-start;
  }

  .partner-row span {
    font-size: 13px;
    line-height: 1.35;
  }

  .partner-logos {
    width: 100%;
    gap: 12px 20px;
  }

  .partner-logos img {
    height: 40px;
  }

  .partner-footer {
    margin-top: 16px;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
  }

  .slide {
    padding: 16px 20px 20px;
  }

  .slide-about,
  .slide-leadership {
    padding: 0;
  }

  .about-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-copy {
    padding-bottom: 72px;
  }

  .slide-inner,
  .lead-main,
  .lead-aside,
  .hero-inner {
    padding: 72px 8px 64px;
    overflow: visible;
    height: auto;
    min-height: 100%;
  }

  .lead-main {
    padding: 76px 20px 28px;
  }

  .lead-aside {
    padding: 32px 20px 96px;
  }

  .slide-leadership .lead-grid {
    height: auto;
  }

  .slide-leadership .lead-main,
  .slide-leadership .lead-aside {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .slide-leadership .orgs {
    margin-top: 20px;
  }

  .slide-leadership .orgs img {
    height: 40px;
    max-width: 120px;
  }

  .slide-leadership .lead-aside h3 {
    max-width: none;
  }

  .slide-leadership .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
    margin: 4px 0 12px;
  }

  .slide-leadership .globe {
    position: relative;
    width: min(100%, 340px);
    max-height: 220px;
    margin: 12px auto 0;
    left: auto;
    transform: none;
    mix-blend-mode: normal;
  }

  .about-layout {
    height: auto;
    min-height: 100%;
    grid-template-rows: auto auto auto;
  }

  .step-track li:nth-child(1),
  .step-track li:nth-child(2),
  .step-track li:nth-child(3) {
    padding-left: 0;
    justify-content: center;
  }

  .step-rail {
    left: 16.666%;
    right: 16.666%;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 20px;
    padding-right: 20px;
  }

  .pillar:first-child,
  .pillar:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner p {
    padding: 24px 20px;
  }

  .cover-thanks {
    justify-content: center;
  }

  .hero-logo {
    width: min(78vw, 420px);
    margin-bottom: 24px;
  }

  .globe {
    position: relative;
    width: 100%;
    left: 0;
    transform: none;
    max-height: 240px;
    object-fit: contain;
    animation: none;
  }

  .module-grid,
  .cap-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .cap-card img {
    width: 44px;
    height: 44px;
  }

  .feature {
    grid-template-columns: 32px 1fr;
  }

  .feature img {
    grid-column: 1 / -1;
    height: 120px;
  }

  .banner {
    min-height: 96px;
    height: auto;
    max-height: none;
  }

  .mod-layout {
    height: auto;
    grid-template-rows: none;
    gap: 14px;
  }

  .mod-card {
    min-height: 180px;
    height: 200px;
  }

  [data-id="modular"] .slide-inner.mod-page {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mod-viz {
    order: -1;
    max-height: 220px;
  }

  .iso-viz {
    max-height: 220px;
  }

  .mod-modal {
    padding: 16px;
  }

  .mod-modal-dialog {
    width: 100%;
    max-height: 86vh;
  }

  .mod-modal-list.is-wide {
    grid-template-columns: 1fr;
  }
}

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

  .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .brand-word {
    display: none;
  }
}
