*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #ffffff;
  --color-text: #1b1f27;
  --color-text-muted: #5c6370;
  --color-border: #e8eaed;
  --color-accent: #f8d864;
  --color-accent-hover: #f0cf4f;
  --color-green: #3d6848;
  --color-green-muted: #5f6f62;
  --color-hero-bg: #f3f3f1;
  --color-mission-bg-start: #226238;
  --color-mission-bg-mid: #1e5e35;
  --color-mission-bg-end: #164d27;
  --color-mission-accent: #f6da66;
  --color-research-card: #f2f2f2;
  --color-research-green: #226238;
  --header-height: 88px;
  --font-satoshi: "Satoshi", system-ui, -apple-system, sans-serif;
  --font-cabinet: "Cabinet Grotesk", var(--font-satoshi);
  --container-max: 1440px;
  --container-padding: clamp(20px, 4vw, 48px);
  --screen-ref: 1600;
  --broccoli-w: calc(348 / var(--screen-ref) * 100vw);
  --broccoli-h: calc(276 / var(--screen-ref) * 100vw);
  --testimony-w: calc(1115 / var(--screen-ref) * 100vw);
  --testimony-gap: 20px;
  --testimony-card-w: calc((var(--testimony-w) - var(--testimony-gap) * 2) / 2.5);
  --social-card-size: calc(220 / var(--screen-ref) * 100vw);
  --social-gap: 16px;
  --footer-veg-1-h: calc(205 / var(--screen-ref) * 100vw);
  --footer-veg-2-h: calc(312 / var(--screen-ref) * 100vw);
  --footer-veg-gap: calc(90 / var(--screen-ref) * 100vw);
  --footer-bar-h: calc(var(--footer-veg-1-h) * 0.7 + 44px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  overflow: visible;
  isolation: isolate;
}

.site-header__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--container-padding);
  min-height: var(--header-height);
}

.site-header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo img {
  width: clamp(120px, 11vw, 160px);
  height: auto;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
}

.site-header__nav-list a {
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__nav-list a:hover {
  opacity: 0.65;
}

.site-header__actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA bar */

.cta-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--color-accent);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  min-height: 44px;
  color: #000000;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-bar:hover {
  background: var(--color-accent-hover);
}

.cta-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cta-bar__waitlist {
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.cta-bar__sep {
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.cta-bar__guide {
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.cta-bar__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  max-width: none;
}

/* Broccoli decoration */

.site-header__broccoli {
  position: absolute;
  top: 50%;
  right: 0;
  width: var(--broccoli-w);
  height: var(--broccoli-h);
  max-width: none;
  transform: translateY(-42%);
  object-fit: contain;
}

/* Mobile menu toggle */

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  background-color: var(--color-hero-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--container-padding);
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-green-muted);
}

.hero__title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  font-family: var(--font-cabinet);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.hero__title-accent {
  color: #164d27;
}

.hero__text {
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  max-width: 520px;
  font-family: var(--font-satoshi);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.hero__text strong {
  font-weight: 700;
  color: var(--color-text);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero__btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero__btn-title {
  font-family: var(--font-cabinet);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__btn-sub {
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.hero__btn-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  max-width: none;
}

.hero__btn--primary {
  background: #164d27;
  color: #ffffff;
}

.hero__btn--primary .hero__btn-sub {
  color: rgba(214, 232, 214, 0.9);
}

.hero__btn--primary:hover {
  background: #1a5a2e;
}

.hero__btn--secondary {
  border: 1.5px solid #164d27;
  background: transparent;
  color: #164d27;
  min-height: 56px;
  padding-left: 28px;
}

.hero__btn--secondary:hover {
  background: rgba(22, 77, 39, 0.05);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 720px;
  height: auto;
}

/* Methodology */

.methodology {
  background: var(--color-bg);
}

.methodology__text {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) var(--container-padding);
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #6b6f76;
}

/* Ecosystem accordion */

.ecosystem {
  background: #ffffff;
}

.ecosystem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--container-padding);
}

.ecosystem__header {
  max-width: 920px;
  margin: 0 0 clamp(40px, 5vw, 56px);
  text-align: left;
}

.ecosystem__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #226238;
}

.ecosystem__title {
  margin: 0 0 16px;
  font-family: var(--font-cabinet);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ecosystem__title-strong {
  color: #1b1f27;
}

.ecosystem__title-muted {
  color: rgba(27, 31, 39, 0.45);
}

.ecosystem__lead {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #5c6370;
}

.ecosystem__lead strong {
  font-weight: 700;
  color: #1b1f27;
}

.ecosystem__accordion {
  --ecosystem-pad-x: clamp(22px, 2.5vw, 36px);
  --ecosystem-gap: clamp(24px, 3vw, 40px);
  --ecosystem-toggle-size: 32px;
  --ecosystem-green: 34, 98, 56;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ecosystem__dots {
  display: none;
}

.ecosystem-item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: background 0.25s ease;
}

.ecosystem-item:nth-child(1) {
  background: rgba(var(--ecosystem-green), 0.05);
}

.ecosystem-item:nth-child(2) {
  background: rgba(var(--ecosystem-green), 0.1);
}

.ecosystem-item:nth-child(3) {
  background: rgba(var(--ecosystem-green), 0.15);
}

.ecosystem-item:nth-child(4) {
  background: rgba(var(--ecosystem-green), 0.2);
}

.ecosystem-item:nth-child(5) {
  background: rgba(var(--ecosystem-green), 0.25);
}

.ecosystem-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ecosystem-gap);
  width: 100%;
  padding: clamp(22px, 2.5vw, 32px) calc(var(--ecosystem-pad-x) + var(--ecosystem-toggle-size)) clamp(22px, 2.5vw, 32px) var(--ecosystem-pad-x);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ecosystem-item.is-open .ecosystem-item__trigger {
  padding-bottom: 12px;
}

.ecosystem-item__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.ecosystem-item__badge {
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #226238;
}

.ecosystem-item__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.ecosystem-item__title {
  font-family: var(--font-cabinet);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  color: #1b1f27;
}

.ecosystem-item__meta {
  font-family: var(--font-satoshi);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  color: #9aa0ab;
}

.ecosystem-item__emoji {
  width: 40px;
  height: 40px;
  max-width: none;
}

.ecosystem-item__toggle-btn {
  position: absolute;
  top: 50%;
  right: var(--ecosystem-pad-x);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--ecosystem-toggle-size);
  height: var(--ecosystem-toggle-size);
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.ecosystem-item__toggle {
  display: block;
  width: var(--ecosystem-toggle-size);
  height: var(--ecosystem-toggle-size);
  max-width: none;
}

.ecosystem-item__panel {
  padding: 0 calc(var(--ecosystem-pad-x) + var(--ecosystem-toggle-size)) clamp(28px, 3.5vw, 40px) var(--ecosystem-pad-x);
}

.ecosystem-item__panel[hidden] {
  display: none;
}

.ecosystem-item__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ecosystem-gap);
}

.ecosystem-item__body--media {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.ecosystem-item__copy {
  flex: 0 1 auto;
  max-width: min(520px, 48%);
  min-width: 0;
}

.ecosystem-item__visual {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.ecosystem-item__image {
  width: min(100%, 340px);
  height: auto;
  max-width: none;
}

.ecosystem-item--flush-media.is-open {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) var(--ecosystem-toggle-size);
  grid-template-rows: auto 1fr;
  align-items: stretch;
  padding-left: var(--ecosystem-pad-x);
  padding-right: var(--ecosystem-pad-x);
}

.ecosystem-item--flush-media.is-open .ecosystem-item__panel,
.ecosystem-item--flush-media.is-open .ecosystem-item__body--media {
  display: contents;
}

.ecosystem-item--flush-media.is-open .ecosystem-item__trigger {
  grid-column: 1;
  grid-row: 1;
  padding-left: 0;
  padding-right: 0;
}

.ecosystem-item--flush-media.is-open .ecosystem-item__copy {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
  width: auto;
  padding-bottom: clamp(28px, 3.5vw, 40px);
}

.ecosystem-item--flush-media.is-open .ecosystem-item__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 420px;
  height: auto;
}

.ecosystem-item--flush-media.is-open .ecosystem-item__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: 100%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center center;
}

.ecosystem-item--flush-media.is-open .ecosystem-item__toggle-btn {
  grid-column: 3;
  grid-row: 1 / -1;
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  align-self: center;
  justify-self: end;
}

.ecosystem-item__text {
  margin: 0 0 18px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #5c6370;
}

.ecosystem-item__text p {
  margin: 0;
}

.ecosystem-item__text p + p {
  margin-top: 0.15em;
}

.ecosystem-item__more {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #1b1f27;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ecosystem-item__more:hover {
  color: #226238;
}

.ecosystem-item__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: min(100%, 280px);
  min-height: 52px;
  padding: 8px 10px 8px 24px;
  border-radius: 999px;
  background: #f6da66;
  color: #1b1f27;
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ecosystem-item__cta:hover {
  background: #f0cf4f;
}

.ecosystem-item__cta img {
  width: 32px;
  height: 32px;
  max-width: none;
}

.ecosystem-item__cta--green {
  background: #164d27;
  color: #ffffff;
}

.ecosystem-item__cta--green:hover {
  background: #1a5a2e;
}

.ecosystem-item__price {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  color: #164d27;
}

.ecosystem-item__list {
  margin: 20px 0 0;
  padding: 0 0 0 1.1em;
  list-style: disc;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #5c6370;
}

.ecosystem-item__list li + li {
  margin-top: 6px;
}

/* Plate Method */

.plate-method {
  background: #ffffff;
  color: var(--color-text);
}

.plate-method__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
}

.plate-method__intro {
  max-width: 720px;
  margin: 0 0 clamp(56px, 7vw, 88px);
  padding-inline: calc(44 / var(--screen-ref) * 100vw);
}

.plate-method__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #226238;
}

.plate-method__title {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plate-method__title-strong {
  color: #1b1f27;
}

.plate-method__title-muted {
  color: rgba(27, 31, 39, 0.45);
}

.plate-method__lead {
  margin: 0 0 28px;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #5c6370;
}

.plate-method__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 8px 10px 8px 24px;
  border-radius: 999px;
  background: #164d27;
  color: #ffffff;
  font-family: var(--font-cabinet);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease;
}

.plate-method__cta:hover {
  background: #1a5a2e;
}

.plate-method__cta img {
  width: 32px;
  height: 32px;
  max-width: none;
}

/* Plate diagram — layout from baby-plate-block, scaled so plate ≈ 719px @ 1600 */
.plate-block {
  --w: 1267;
  --h: 588;
  --col: calc(215 / var(--w) * 100%);

  --c-fruits: #b75d6f;
  --c-protein: #6690a4;
  --c-dairy: #48556f;
  --c-veg: #226238;
  --c-fats: #a4825b;
  --c-carbs: #e2802c;

  --ink: #1b1f27;
  --mute: #8c8e92;

  position: relative;
  width: min(100%, calc(1596 / var(--screen-ref) * 100vw));
  max-width: 1596px;
  aspect-ratio: var(--w) / var(--h);
  margin: 0 auto;
  container-type: inline-size;
  container-name: plate;
  background: #fff;
  font-family: var(--font-satoshi);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.plate-block__figure {
  position: absolute;
  top: 2.381%;
  left: 23.046%;
  width: 54.065%;
  margin: 0;
}

.plate-block__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.pb-item {
  position: absolute;
  width: var(--col);
  color: var(--c);
}

.pb-item__head {
  display: flex;
  align-items: center;
  margin: 0 0 calc(15 / var(--w) * 100cqw);
  font-family: var(--font-satoshi);
  font-size: calc(17 / var(--w) * 100cqw);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c);
  white-space: nowrap;
}

.pb-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: default;
  pointer-events: none;
}

.pb-item__title {
  flex-shrink: 0;
}

.pb-item__chevron {
  display: none;
}

.pb-item__body {
  display: block;
}

.pb-item__text {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: calc(12 / var(--w) * 100cqw);
  line-height: calc(15 / var(--w) * 100cqw);
  font-weight: 400;
  color: var(--ink);
}

.pb-item__try {
  margin: calc(11 / var(--w) * 100cqw) 0 0;
  font-family: var(--font-satoshi);
  font-size: calc(10 / var(--w) * 100cqw);
  line-height: calc(15 / var(--w) * 100cqw);
  font-weight: 400;
  color: var(--mute);
}

.pb-item__try span {
  font-weight: 700;
  color: var(--ink);
}

.pb-item__lead {
  position: relative;
  height: calc(5 / var(--w) * 100cqw);
  background-image: radial-gradient(
    circle at center,
    var(--cd) 0.9px,
    rgba(255, 255, 255, 0) 1.1px
  );
  background-size: calc(5.5 / var(--w) * 100cqw) calc(5 / var(--w) * 100cqw);
  background-position: 0 50%;
  background-repeat: repeat-x;
}

.pb-item__lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(5 / var(--w) * 100cqw);
  height: calc(5 / var(--w) * 100cqw);
  margin-top: calc(-2.5 / var(--w) * 100cqw);
  border-radius: 50%;
  background: var(--c);
}

.pb-item--left {
  left: 9.708%;
}

.pb-item--left .pb-item__lead {
  flex: 1 1 auto;
  margin-left: calc(10 / var(--w) * 100cqw);
}

.pb-item--left .pb-item__lead::after {
  right: 0;
}

.pb-item--right {
  left: 73.954%;
}

.pb-item--right .pb-item__head {
  margin-left: calc(-1 * var(--lead));
}

.pb-item--right .pb-item__lead {
  flex: 0 0 var(--lead);
  width: var(--lead);
  margin-right: calc(10 / var(--w) * 100cqw);
}

.pb-item--right .pb-item__lead::after {
  left: 0;
}

.pb-fruits {
  top: 21.088%;
  --c: var(--c-fruits);
  --cd: #d49ea9;
}

.pb-protein {
  top: 50.680%;
  --c: var(--c-protein);
  --cd: #a3bcc8;
}

.pb-dairy {
  top: 77.721%;
  --c: var(--c-dairy);
  --cd: #9199a9;
}

.pb-veg {
  top: 11.735%;
  --c: var(--c-veg);
  --cd: #7aa188;
  --lead: calc(120 / var(--w) * 100cqw);
}

.pb-fats {
  top: 41.156%;
  --c: var(--c-fats);
  --cd: #c8b49d;
  --lead: calc(43 / var(--w) * 100cqw);
}

.pb-carbs {
  top: 70.578%;
  --c: var(--c-carbs);
  --cd: #eeb380;
  --lead: calc(79 / var(--w) * 100cqw);
}

.pb-fruits .pb-item__head {
  width: calc(287 / var(--w) * 100cqw);
}

.pb-protein .pb-item__head {
  width: calc(251 / var(--w) * 100cqw);
}

.pb-dairy .pb-item__head {
  width: calc(191 / var(--w) * 100cqw);
}

@media (max-width: 900px) {
  .plate-block {
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
    padding: 0 clamp(20px, 5.5vw, 28px) 8px;
    container-type: normal;
  }

  .plate-block__figure {
    position: static;
    width: min(100%, 420px);
    margin: 0 auto 36px;
  }

  .pb-item {
    position: static;
    width: 100%;
    left: auto;
    top: auto;
  }

  .pb-item + .pb-item {
    margin-top: 4px;
  }

  .pb-item__head {
    width: 100% !important;
    margin: 0 !important;
    font-size: 18px;
    line-height: 1.2;
    white-space: normal;
  }

  .pb-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 0;
    cursor: pointer;
    pointer-events: auto;
    text-align: left;
  }

  .pb-item__title {
    flex: 1 1 auto;
  }

  .pb-item__lead {
    display: none !important;
  }

  .pb-item__chevron {
    display: block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: -2px;
    border-right: 2px solid rgba(27, 31, 39, 0.45);
    border-bottom: 2px solid rgba(27, 31, 39, 0.45);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
  }

  .pb-item.is-open .pb-item__chevron {
    margin-top: 0;
    transform: rotate(45deg);
  }

  .pb-item__body {
    display: none;
    padding: 0 28px 18px 0;
  }

  .pb-item.is-open .pb-item__body {
    display: block;
  }

  .pb-item__text {
    font-size: 14px;
    line-height: 1.5;
    color: #5c6370;
  }

  .pb-item__try {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
    color: #8c8e92;
  }

  .pb-item__try span {
    font-weight: 700;
    color: #5c6370;
  }

  .pb-fruits,
  .pb-protein,
  .pb-dairy,
  .pb-veg,
  .pb-fats,
  .pb-carbs {
    top: auto;
  }
}

.plate-method__journey {
  width: 100%;
  margin: 0;
  padding: 0;
}

.plate-method__journey-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  vertical-align: top;
}

/* Mission */

.mission {
  background: radial-gradient(
    circle at 50% 50%,
    var(--color-mission-bg-start) 0%,
    var(--color-mission-bg-mid) 28%,
    var(--color-mission-bg-end) 100%
  );
  color: #ffffff;
}

.mission__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--container-padding) clamp(64px, 8vw, 104px);
  text-align: center;
}

.mission__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.mission__toggle {
  display: none;
  margin: 20px auto 0;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.mission__toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
  max-width: none;
}

.mission__panel {
  display: block;
}

.mission__panel[hidden] {
  display: none;
}

@media (min-width: 901px) {
  .mission__toggle {
    display: none !important;
  }

  .mission__panel[hidden] {
    display: block !important;
  }
}

.mission__title {
  margin: 0 0 16px;
  font-family: var(--font-cabinet);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #f6da66;
}

.mission__subtitle {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
  margin: 0 0 clamp(48px, 6vw, 72px);
  padding: 0;
  list-style: none;
}

.mission__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission__icon {
  width: 64px;
  height: 64px;
  max-width: none;
  margin-bottom: 20px;
}

.mission__item-title {
  margin: 0 0 12px;
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f6da66;
}

.mission__item-text {
  margin: 0;
  max-width: 320px;
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}

.mission__quote {
  margin: 0;
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mission__quote-text {
  margin: 0 auto clamp(24px, 3vw, 32px);
  max-width: 920px;
  font-family: var(--font-cabinet);
  font-size: 64px;
  font-weight: 400;
  line-height: 72px;
  color: #ffffff;
}

.mission__quote-text strong {
  font-weight: 800;
}

.mission__quote-source {
  margin: 0;
}

.mission__quote-link {
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.mission__quote-link:hover {
  color: #ffffff;
}

/* Community */

.community {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 42vw, 560px);
  padding: clamp(56px, 7vw, 96px) var(--container-padding);
  background: url("../assets/community-bg.webp") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.community__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 39, 0.45);
  pointer-events: none;
}

.community__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.community__title {
  margin: 0 0 16px;
  font-family: var(--font-cabinet);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.community__subtitle {
  margin: 0 0 32px;
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.community__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: #1b1f27;
  transition: background 0.2s ease;
}

.community__btn:hover {
  background: rgba(255, 255, 255, 0.52);
}

.community__btn-text {
  font-family: var(--font-cabinet);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1f27;
}

.community__btn-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  max-width: none;
}

/* Research */

.research {
  background: var(--color-bg);
}

.research__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--container-padding);
}

.research__header {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-right: 16px;
}

.research__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #226238;
}

.research__title {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1b1f27;
}

.research__title-muted {
  color: rgba(27, 31, 39, 0.5);
}

.research__title-strong {
  color: #1b1f27;
}

.research__lead {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--color-text-muted);
}

.research__slider {
  display: contents;
}

.research__track {
  display: contents;
}

.research__dots {
  display: none;
}

.research-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  background: var(--color-research-card);
}

.research-card--featured {
  grid-column: 3;
  grid-row: 1;
}

.research-card:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}

.research-card:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.research-card:nth-of-type(4) {
  grid-column: 3;
  grid-row: 2;
}

.research-card__label {
  margin: 0 0 24px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
  color: #226238;
}

.research-card__stat {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.research-card__text {
  margin: 0 0 20px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
}

.research-card__citation {
  margin: 0 0 16px;
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #226238;
}

.research-card__link {
  margin-top: auto;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #1b1f27;
  transition: opacity 0.2s ease;
}

.research-card__link:hover {
  opacity: 0.7;
}

.research-card__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 31, 39, 0.1);
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: #1b1f27;
}

.research__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.research__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.research__tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  border: 1px solid var(--color-research-green);
  border-radius: 999px;
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.research__tag:hover {
  background: var(--color-research-green);
  color: #ffffff;
}

.research__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #164d27 0%, #226238 100%);
  color: #ffffff;
  flex-shrink: 0;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.research__cta:hover {
  filter: brightness(1.08);
}

.research__cta span {
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}

.research__cta img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  max-width: none;
}

/* R&D Video */

.rd-video {
  background: #000000;
}

.rd-video__media-wrap {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 42vw, 640px);
  overflow: hidden;
}

.rd-video__player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 42vw, 640px);
  object-fit: cover;
  background: #1b1f27;
}

.rd-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.rd-video.is-playing .rd-video__overlay {
  opacity: 0;
  pointer-events: none;
}

.rd-video.is-playing .rd-video__player {
  cursor: pointer;
}

.rd-video__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.rd-video__btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.rd-video__btn-text {
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1f27;
  white-space: nowrap;
}

.rd-video__btn-icon {
  flex-shrink: 0;
  width: 34px;
  height: 32px;
  max-width: none;
}

/* Founder */

.founder {
  background: var(--color-bg);
}

.founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--container-padding);
}

.founder__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #226238;
}

.founder__title {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.founder__title-muted {
  color: rgba(27, 31, 39, 0.5);
}

.founder__title-strong {
  color: #1b1f27;
}

.founder__subtitle {
  margin: 0 0 28px;
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #1b1f27;
}

.founder__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.founder__text p {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1b1f27;
}

.founder__tagline {
  margin: 0 0 28px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #226238;
}

.founder__name {
  margin: 0 0 4px;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #1b1f27;
}

.founder__role {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.founder__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder__photo {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  max-width: none;
}

/* Testimony */

.testimony {
  background: #f3f3f1 url("../assets/testimony-bg.webp") center / cover no-repeat;
  overflow: hidden;
}

.testimony__inner {
  width: var(--testimony-w);
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px) var(--container-padding);
}

.testimony__main {
  min-width: 0;
}

.testimony__title {
  margin: 0 0 32px;
  font-family: var(--font-cabinet);
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimony__title-top {
  display: block;
  color: #1b1f27;
}

.testimony__title-bottom {
  display: block;
  color: rgba(27, 31, 39, 0.45);
}

.testimony__slider-wrap {
  overflow: hidden;
  margin-right: 0;
}

.testimony__slider {
  display: flex;
  gap: var(--testimony-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimony__slider::-webkit-scrollbar {
  display: none;
}

.testimony-card {
  flex: 0 0 var(--testimony-card-w);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
}

.testimony-card__quote {
  width: 35px;
  height: 30px;
  margin-bottom: 20px;
  max-width: none;
}

.testimony-card__text {
  margin: 0 0 24px;
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #1b1f27;
}

.testimony-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimony-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  max-width: none;
}

.testimony-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-satoshi);
  font-size: 15px;
  line-height: 1.3;
}

.testimony-card__meta strong {
  font-weight: 700;
  color: #1b1f27;
}

.testimony-card__meta em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted);
}

.testimony__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testimony__arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s ease;
}

.testimony__arrow:hover {
  background: rgba(27, 31, 39, 0.06);
}

.testimony__arrow img {
  width: 29px;
  height: 8px;
  max-width: none;
}

.testimony__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimony__arrow:disabled:hover {
  background: transparent;
}

/* Guide CTA */

.guide-cta {
  background: var(--color-bg);
}

.guide-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--container-padding);
}

.guide-cta__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #226238;
}

.guide-cta__title {
  margin: 0 0 28px;
  font-family: var(--font-cabinet);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.guide-cta__title-strong {
  color: #1b1f27;
}

.guide-cta__title-muted {
  color: rgba(27, 31, 39, 0.5);
}

.guide-cta__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.guide-cta__intro p {
  margin: 0;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #1b1f27;
}

.guide-cta__list-title {
  margin: 0 0 20px;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1b1f27;
}

.guide-cta__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-cta__list li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1b1f27;
}

.guide-cta__list li + li {
  margin-top: 12px;
}

.guide-cta__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b1f27;
}

.guide-cta__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-cta__image {
  width: min(100%, 560px);
  height: auto;
  max-width: none;
}

/* Waitlist */

.waitlist {
  position: relative;
  background: url("../assets/waitlist-bg.jpg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.waitlist__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.55);
  pointer-events: none;
}

.waitlist__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--container-padding);
  text-align: center;
}

.waitlist__title {
  margin: 0 0 16px;
  font-family: var(--font-cabinet);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f6da66;
}

.waitlist__lead {
  margin: 0 0 40px;
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.waitlist__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waitlist__label {
  font-family: var(--font-satoshi);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.waitlist__input {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.waitlist__input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.18);
}

.waitlist__select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.waitlist__select option {
  color: #1b1f27;
}

.waitlist__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  min-height: 56px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: #f6da66;
  color: #1b1f27;
  transition: background 0.2s ease;
}

.waitlist__submit:hover {
  background: #f0cf4f;
}

.waitlist__submit-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cabinet);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.waitlist__submit-sep {
  font-family: var(--font-satoshi);
  font-weight: 400;
}

.waitlist__submit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  max-width: none;
}

.waitlist__note {
  margin: 24px 0 0;
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Social / Instagram */

.social {
  background: #ffffff;
  color: var(--color-text);
}

.social__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) var(--container-padding);
}

.social__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.social__title {
  margin: 0 0 20px;
  font-family: var(--font-cabinet);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social__title-strong {
  color: #1b1f27;
}

.social__title-muted {
  color: #9aa0ab;
}

.social__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.social__handle {
  font-family: var(--font-satoshi);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: #8b919c;
  text-decoration: none;
}

.social__handle:hover {
  color: #5c6370;
}

.social__links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #1b1f27;
  transition: opacity 0.2s ease;
}

.social__link:hover {
  opacity: 0.65;
}

.social__link img {
  width: 20px;
  height: 20px;
  max-width: none;
}

.social__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.social__viewport {
  min-width: 0;
}

.social__track {
  display: flex;
  gap: var(--social-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.social__track::-webkit-scrollbar {
  display: none;
}

.social-card {
  flex: 0 0 var(--social-card-size);
  width: var(--social-card-size);
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #f2f2f2;
  scroll-snap-align: start;
  transition: transform 0.2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
}

.social-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #f4f4f2 0%, #ececea 100%);
}

.social-card__placeholder-text {
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #5c6370;
}

.social__status {
  margin: 16px 0 0;
  font-family: var(--font-satoshi);
  font-size: 14px;
  line-height: 1.4;
  color: #8b919c;
  text-align: center;
}

.social__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social__arrow img {
  width: 32px;
  height: 32px;
  max-width: none;
}

.social__arrow:hover {
  transform: scale(1.05);
}

.social__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* Footer */

.site-footer {
  position: relative;
  background: #164d27;
  color: #ffffff;
  overflow: hidden;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 96px) var(--container-padding) 0;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(140px, 0.75fr)) minmax(180px, 0.9fr);
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: calc(var(--footer-veg-2-h) * 0.45);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 24px;
}

.site-footer__logo img {
  width: 160px;
  height: auto;
  max-width: none;
}

.site-footer__tagline {
  max-width: 320px;
  margin: 0 0 36px;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__tagline strong {
  font-weight: 700;
}

.site-footer__newsletter-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-satoshi);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__newsletter-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}

.site-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 40px;
  padding: 6px 8px 6px 16px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #164d27;
  font-family: var(--font-cabinet);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-footer__newsletter-btn:hover {
  background: #f3f3f1;
}

.site-footer__newsletter-btn img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.site-footer__newsletter-note {
  margin: 12px 0 0;
  font-family: var(--font-satoshi);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__heading {
  margin: 0 0 18px;
  font-family: var(--font-satoshi);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 12px;
}

.site-footer__list a {
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__list a:hover {
  color: #ffffff;
}

.site-footer__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer__email {
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  word-break: break-word;
}

.site-footer__email:hover {
  color: #ffffff;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.site-footer__social a:hover {
  opacity: 0.7;
}

.site-footer__social img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 10px 8px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #164d27;
  font-family: var(--font-cabinet);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.site-footer__cta:hover {
  background: #f3f3f1;
}

.site-footer__cta img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.site-footer__bar {
  position: relative;
  z-index: 2;
  background: transparent;
  min-height: var(--footer-bar-h);
}

.site-footer__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--footer-bar-h);
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 0;
}

.site-footer__decor {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: var(--footer-veg-gap);
  height: var(--footer-veg-2-h);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.site-footer__veg {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  flex-shrink: 0;
}

.site-footer__veg--1 {
  height: var(--footer-veg-1-h);
}

.site-footer__veg--2 {
  height: var(--footer-veg-2-h);
}

.site-footer__bar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  min-height: var(--footer-bar-h);
  padding: 22px var(--container-padding);
  font-family: var(--font-satoshi);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__location,
.site-footer__copy,
.site-footer__legal {
  margin: 0;
  flex: 1 1 0;
  white-space: nowrap;
}

.site-footer__location {
  text-align: left;
}

.site-footer__copy {
  flex: 0 1 auto;
  text-align: center;
}

.site-footer__legal {
  text-align: right;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: #ffffff;
}

.site-footer__legal span {
  margin: 0 6px;
}

/* Responsive */

@media (max-width: 1100px) {
  .site-header__nav-list {
    gap: 14px;
  }

  .cta-bar {
    padding-left: 16px;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    order: -1;
  }

  .ecosystem__header {
    margin-bottom: 8px;
  }

  .ecosystem__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  .ecosystem__lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .ecosystem__accordion {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ecosystem__accordion::-webkit-scrollbar {
    display: none;
  }

  .ecosystem-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .ecosystem-item__toggle-btn {
    display: none;
  }

  .ecosystem-item__trigger {
    padding: 28px 24px 10px;
    cursor: default;
    pointer-events: none;
  }

  .ecosystem-item.is-open .ecosystem-item__trigger {
    padding-bottom: 10px;
  }

  .ecosystem-item__title {
    font-size: 24px;
  }

  .ecosystem-item__panel,
  .ecosystem-item__panel[hidden] {
    display: block !important;
    padding: 0;
  }

  .ecosystem-item__body,
  .ecosystem-item__body--media {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ecosystem-item__copy {
    flex: 1 1 auto;
    max-width: none;
    padding: 0 24px 24px;
  }

  .ecosystem-item__visual {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
  }

  .ecosystem-item__image {
    width: min(72%, 240px);
    max-width: none;
    height: auto;
  }

  .ecosystem-item--flush-media,
  .ecosystem-item--flush-media.is-open {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding-left: 0;
    padding-right: 0;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__panel,
  .ecosystem-item--flush-media.is-open .ecosystem-item__body--media {
    display: flex;
    flex-direction: column;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__trigger {
    padding: 28px 24px 10px;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__copy {
    padding: 0 24px 20px;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__visual {
    position: relative;
    order: 2;
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__image {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    height: auto;
    width: min(72%, 240px);
    transform: none;
  }

  .ecosystem-item--flush-media.is-open .ecosystem-item__toggle-btn {
    display: none;
  }

  .ecosystem__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .ecosystem__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .ecosystem__dot.is-active {
    background: #226238;
    transform: scale(1.15);
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    z-index: 3;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px var(--container-padding) 28px;
    box-shadow: 0 12px 32px rgba(27, 31, 39, 0.08);
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-header__burger {
    display: flex;
  }

  .mission__inner {
    padding: 48px var(--container-padding) 56px;
  }

  .mission__header {
    margin-bottom: 0;
  }

  .mission__title {
    font-size: clamp(40px, 12vw, 56px);
    margin-bottom: 12px;
  }

  .mission__subtitle {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.35;
  }

  .mission__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mission.is-open .mission__header {
    margin-bottom: 36px;
  }

  .mission:not(.is-open) .mission__header {
    margin-bottom: 28px;
  }

  .mission__panel[hidden] {
    display: none !important;
  }

  .mission.is-open .mission__panel {
    display: block;
  }

  .mission__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
    text-align: left;
  }

  .mission__item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
  }

  .mission__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .mission__item-title {
    grid-column: 2;
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
  }

  .mission__item-text {
    grid-column: 2;
    max-width: none;
    font-size: 15px;
    line-height: 1.45;
  }

  .mission__quote {
    padding-top: 28px;
  }

  .mission__quote-text {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .mission__quote-link {
    font-size: 11px;
    line-height: 1.4;
  }

  .research__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .research__header,
  .research-card--featured,
  .research-card:nth-of-type(2),
  .research-card:nth-of-type(3),
  .research-card:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .research__header {
    padding-right: 0;
  }

  .research__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .research__lead {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .research__slider {
    display: block;
    width: 100%;
  }

  .research__track {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .research__track::-webkit-scrollbar {
    display: none;
  }

  .research-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }

  .research-card__label {
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .research-card__stat {
    font-size: clamp(44px, 12vw, 56px);
    font-weight: 800;
  }

  .research__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .research__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .research__dot.is-active {
    background: var(--color-research-green);
    transform: scale(1.15);
  }

  .research__footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
  }

  .research__tags {
    gap: 10px;
  }

  .research__tag {
    padding: 10px 18px;
    font-size: 14px;
  }

  .research__cta {
    justify-content: space-between;
    width: 100%;
  }

  .testimony__inner {
    width: 100%;
    margin-left: 0;
    padding: clamp(56px, 7vw, 96px) var(--container-padding);
  }

  .testimony-card {
    flex: 0 0 min(100%, 420px);
  }

  .guide-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px var(--container-padding) 48px;
  }

  .guide-cta__visual {
    order: 0;
    justify-content: center;
  }

  .guide-cta__eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.3;
  }

  .guide-cta__title {
    margin-bottom: 24px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.12;
    letter-spacing: 0.04em;
  }

  .guide-cta__title-muted {
    color: rgba(27, 31, 39, 0.45);
  }

  .guide-cta__intro {
    gap: 14px;
    margin-bottom: 28px;
  }

  .guide-cta__intro p {
    font-size: 16px;
    line-height: 1.5;
  }

  .guide-cta__list-title {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .guide-cta__list li {
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .guide-cta__list li + li {
    margin-top: 10px;
  }

  .guide-cta__image {
    width: min(100%, 320px);
  }

  .waitlist__fields {
    grid-template-columns: 1fr;
  }

  .waitlist__submit-text {
    font-size: 14px;
  }

  .social__carousel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social__arrow {
    display: none;
  }

  .social-card {
    flex: 0 0 min(72vw, 280px);
    width: min(72vw, 280px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .cta-bar__guide,
  .cta-bar__sep {
    display: none;
  }

  .rd-video__btn-text {
    white-space: normal;
    text-align: left;
  }

  .founder__inner {
    grid-template-columns: 1fr;
  }

  .founder__visual {
    order: -1;
  }

  .founder__photo {
    width: min(100%, 360px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter-field {
    flex-wrap: wrap;
    padding: 10px;
  }

  .site-footer__newsletter-input {
    width: 100%;
    padding: 8px 10px;
  }

  .site-footer__newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: 