@font-face {
  font-family: 'Fustat';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/fustat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fustat';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/fustat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fluid rebuild of the 1920 artboard. Every clamp() upper bound is the value the
   approved 1920 mockup uses, and the coefficient is that value divided by 19.2.
   --vw is one viewport percent that stops growing at --design-cap, so the design
   reproduces the artboard proportionally and freezes above a 1440 viewport. */
:root {
  --design-cap: 1920;
  --radius-lg: clamp(16px, calc(1.67 * var(--vw)), 32px);
  --radius-md: clamp(12px, calc(1.25 * var(--vw)), 24px);
  --radius-sm: clamp(7px, calc(.68 * var(--vw)), 13px);
  --vw: min(1vw, calc(var(--design-cap) * 1px / 100));
  --yellow: #ffee04;
  --ink: #212121;
  --orange: #ff7800;
  --grey-bg: #f8f8f8;
  --card-grey: #f1f1f1;
  --white: #ffffff;
  --max: calc(95 * var(--vw));
  --gutter: clamp(20px, calc(2.5 * var(--vw)), 48px);
  /* the artboard's own split, measured off frame 589:3: 56 top, 167 bottom */
  --pad-top: clamp(18px, calc(2.92 * var(--vw)), 56px);
  --pad-bottom: clamp(54px, calc(8.7 * var(--vw)), 167px);
  --nav-top: clamp(10px, calc(.99 * var(--vw)), 19px);
  --nav-h: clamp(50px, calc(4.583 * var(--vw)), 88px);
  --hero-clear: clamp(24px, 2.5vw, 48px);
  --hero-lockup: clamp(268px, 53.65vw, 1030px);
  /* the lockup centres on 52.4% of the hero, so the floor is the height at which
     its top edge still clears the fixed nav by --hero-clear */
  --hero-min: calc(
    (var(--nav-top) + var(--nav-h) + var(--hero-clear) + var(--hero-lockup) * .2728) / .524);
}

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

html {
  background: var(--white);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 32px);
}

body {
  margin: 0;
  font-family: 'Fustat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.shape-defs { position: absolute; width: 0; height: 0; pointer-events: none; }

div.page { position: relative; width: 100%; overflow-x: clip; }

.band { position: relative; width: 100%; overflow-x: clip; }

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: var(--pad-top) var(--pad-bottom);
}

/* ---------- shared type ---------- */
.display {
  font-weight: 700;
  font-size: clamp(44px, calc(11.15 * var(--vw)), 214px);
  line-height: .944;
  letter-spacing: -.02em;
  margin: 0;
}

.h2 {
  font-weight: 700;
  font-size: clamp(30px, calc(5.21 * var(--vw)), 100px);
  line-height: 1.1;
  margin: 0;
}

.h2-lg {
  font-weight: 700;
  font-size: clamp(30px, calc(5.21 * var(--vw)), 100px);
  line-height: 1.1;
  margin: 0;
}

.lede {
  font-weight: 700;
  font-size: clamp(26px, calc(5.21 * var(--vw)), 100px);
  line-height: 1;
  margin: 0;
}

.lede--tight { letter-spacing: -.02em; }

.body-50 {
  font-weight: 600;
  font-size: clamp(19px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  margin: 0;
}

.body-35 {
  font-weight: 400;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
  margin: 0;
}

.body-35 strong,
.caption-title { font-weight: 700; }

.caption {
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.2;
  margin: 0;
}

.track-105 { letter-spacing: -.03em; }

.track-150 { letter-spacing: -.043em; }

.weight-400 { font-weight: 400; }

.credit { font-weight: 500; }

.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;
}

/* Long single words in the artboard copy must not push a narrow column wide. */
h1, h2, h3, p, li, summary, .pill { overflow-wrap: break-word; }

/* ---------- pill button ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  font-weight: 400;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  padding: clamp(9px, calc(.86 * var(--vw)), 16px) clamp(18px, calc(1.77 * var(--vw)), 34px);
  min-height: clamp(44px, calc(4.32 * var(--vw)), 83px);
  transition: background-color .18s ease, color .18s ease;
}

.pill--glass {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 1px 0 0 rgba(255, 255, 255, .22),
    inset -1px 0 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(255, 255, 255, .12),
    0 8px 24px rgba(0, 0, 0, .18);
}

.pill--social { min-height: clamp(40px, calc(3.44 * var(--vw)), 66px); padding-inline: clamp(16px, calc(1.35 * var(--vw)), 26px); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, calc(2.08 * var(--vw)), 40px);
}

@media (hover: hover) {
  .pill:hover { background: var(--ink); color: var(--yellow); }
  .pill--glass:hover { background: rgba(255, 255, 255, .38); color: #fff; }
}

/* ---------- nav ---------- */
/* the glass overlay stays in position as the page scrolls under it (brief P14) */
.site-nav {
  position: fixed;
  z-index: 60;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, calc(1.46 * var(--vw)), 28px);
  padding-inline: var(--gutter);
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
}

.glass {
  background: rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 1px 0 0 rgba(255, 255, 255, .22),
    inset -1px 0 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(255, 255, 255, .12),
    0 8px 24px rgba(0, 0, 0, .18);
}

.nav-home {
  flex: none;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, calc(.83 * var(--vw)), 16px);
  padding-inline: clamp(14px, calc(1.25 * var(--vw)), 24px);
}

.nav-home img { width: clamp(27px, calc(2.6 * var(--vw)), 50px); height: auto; }

.nav-home .nav-wordmark { width: auto; height: clamp(13px, calc(1.25 * var(--vw)), 24px); }

.nav {
  flex: 1;
  min-width: 0;
  margin-left: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, calc(1.46 * var(--vw)), 28px);
}

.nav a {
  font-weight: 700;
  font-size: clamp(15px, calc(1.5625 * var(--vw)), 30px);
  line-height: 1.2;
  color: var(--yellow);
  text-align: center;
  transition: opacity .18s ease;
}


.nav-toggle { display: none; }

/* ---------- hero ---------- */
/* every hero is one screen tall, floored so its contents clear the fixed nav */
.hero {
  height: 100vh;
  height: 100svh;
  min-height: var(--hero-min);
}

.about-hero { height: clamp(420px, calc(61.46 * var(--vw)), 1180px); overflow: hidden; }

@media (min-width: 1167px) {
  :root[data-cb-scale="85"] {
    --vw: min(.85vw, calc(var(--design-cap) * 1px / 100 * .85));
    --vhs: .85;
  }

  :root[data-cb-scale="70"] {
    --vw: min(.7vw, calc(var(--design-cap) * 1px / 100 * .7));
    --vhs: .7;
  }
}

:root[data-cb-scale="cap"] { --design-cap: 1440; }

@media (min-width: 1441px) {
  :root[data-cb-scale="cap"] { --vhs: .75; }

  :root[data-cb-scale="cap"] div.page {
    max-width: 1440px;
    margin-inline: auto;
  }

  :root[data-cb-scale="cap"] .site-nav { max-width: 1440px; }
}

.hero { background: #6f7f5a; }

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(169.036deg, rgba(0, 0, 0, 0) 48.928%, rgba(0, 0, 0, .21) 67.262%);
}

.hero-lockup {
  position: absolute;
  left: 50%;
  top: 52.4%;
  transform: translate(-50%, -50%);
  width: var(--hero-lockup);
  height: auto;
}

body.is-intro { overflow: hidden; }


.site-nav.is-tucked { transform: translateX(-50%) translateY(calc(-100% - var(--nav-top) - 12px)); }

@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: none; }
}

.hero-anim {
  position: absolute;
  left: 50%;
  top: 52.4%;
  width: calc(var(--hero-lockup) * 1.81474);
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

html.intro-jump { scroll-behavior: auto; }

html.intro-hold .hero-lockup { opacity: 0; }

/* ---------- yellow intro ---------- */
.intro { background: var(--yellow); }

.display-br { display: inline; }

.intro-lede { margin-top: clamp(20px, calc(3.33 * var(--vw)), 64px); }

.intro .pill-row { margin-top: clamp(40px, calc(14.11 * var(--vw)), 271px); }

/* ---------- traceability / blob ---------- */
.blob-band { background: var(--white); overflow: clip; }

/* The artboard puts the yellow pane ON TOP of the headline at 50% opacity, so the
   words read through it. Measured off frame 19:2: ink #212121 under the pane
   resolves to rgb(144,136,18), which solves to #ffee04 at alpha .50 on all three
   channels. Stacking runs: headline, pane, white crop panel, then cards. */
.blob-band .wrap { z-index: auto; --pad-top: clamp(30px, calc(4.896 * var(--vw)), 94px); --pad-bottom: clamp(60px, calc(19.06 * var(--vw)), 366px); }

.blob-lede { position: relative; z-index: 1; }

/* Frame 19:2 puts the blob at x=36 y=37 sized 3539x3085 inside a 1920 artboard,
   measured from the section's top-left. It is a glass shape, not a flat pane: the
   headline behind it refracts through the clipped shape, not under a flat tint.
   The shape MUST come from clip-path: a mask silently disables backdrop-filter in
   Chromium, which is what left this section tinted but never blurred. */
.blob {
  position: absolute;
  left: 50%;
  top: calc(3.49 * var(--vw));
  width: calc(184.3 * var(--vw));
  aspect-ratio: 3539 / 3085;
  transform: translateX(calc(-50% + 39.5 * var(--vw)));
  max-width: none;
  clip-path: url(#blob-clip);
  background: rgba(255, 238, 4, .5);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
  z-index: 2;
}

/* the white panel crops the blob's bottom-left corner, as on the artboard */
.blob-panel {
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% - 13.625 * var(--vw)));
  bottom: 0;
  width: calc(79 * var(--vw));
  height: 39.1%;
  background: var(--white);
  border-radius: 0 clamp(20px, calc(2.08 * var(--vw)), 40px) 0 0;
  z-index: 3;
}

.blob-band .card-duo,
.blob-band .blob-lede-2,
.blob-band .pill-row { position: relative; z-index: 4; }

/* the artboard sets these cards at 582px each in an 1824 column, so the pair takes
   two thirds of it — as a fraction, not a pixel cap that outgrows a narrower column */
.card-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, calc(2.66 * var(--vw)), 51px);
  max-width: 56%;
  margin-top: clamp(24px, calc(6 * var(--vw)), 115px);
}

.card-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 582 / 692;
  position: relative;
}

.card-shot > img { width: 100%; height: 100%; object-fit: cover; }

.card-shot .card-mark {
  position: absolute;
  left: 8.08%;
  top: 5.93%;
  width: 11.17%;
  height: auto;
  object-fit: contain;
}

.card-item { margin: 0; }

.card-item figcaption { margin-top: clamp(12px, calc(2.45 * var(--vw)), 47px); }

.blob-lede-2 { margin-top: clamp(28px, calc(5.78 * var(--vw)), 111px); }

.blob-band .pill-row { margin-top: clamp(40px, calc(15.05 * var(--vw)), 289px); }

/* ---------- empowering / stats ---------- */
.empower { background: var(--grey-bg); }

.empower-quote { margin-top: clamp(20px, calc(4.79 * var(--vw)), 92px); max-width: 58.8%; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, calc(1.82 * var(--vw)), 35px);
  margin-top: clamp(24px, calc(5.52 * var(--vw)), 106px);
}

.stat-card { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }

.stat-summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: var(--radius-md);
}

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

.stat-summary:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }

.stat-mark {
  position: absolute;
  top: clamp(12px, calc(1.56 * var(--vw)), 30px);
  left: clamp(12px, calc(1.56 * var(--vw)), 30px);
  width: clamp(26px, calc(2.4 * var(--vw)), 46px);
  height: clamp(26px, calc(2.4 * var(--vw)), 46px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  transition: background .2s ease;
}

.stat-mark img { width: 48%; height: auto; transition: filter .2s ease; }

.stat-summary:hover .stat-mark,
.stat-summary:focus-visible .stat-mark { background: var(--ink); }

.stat-summary:hover .stat-mark img,
.stat-summary:focus-visible .stat-mark img { filter: invert(1); }

.stat-more {
  margin: clamp(10px, calc(.94 * var(--vw)), 18px) 0 0;
  font-size: clamp(15px, calc(1.35 * var(--vw)), 26px);
  line-height: 1.35;
  font-weight: 400;
}

.empower .pill-row { margin-top: clamp(32px, calc(8.5 * var(--vw)), 163px); }

.photo-round {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(32px, calc(6.5 * var(--vw)), 125px);
  aspect-ratio: 1820 / 939;
}

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

.is-flipped { transform: scaleX(-1); }

.empower-quote-2 { margin-top: clamp(28px, calc(5.47 * var(--vw)), 105px); max-width: 58.8%; }

.photo-round--quote { position: relative; }

.photo-round--quote img { object-position: center top; }

.photo-quote {
  position: absolute;
  top: 50%;
  right: clamp(16px, calc(6 * var(--vw)), 116px);
  background: rgba(0, 0, 0, .35);
  transform: translateY(-50%);
  width: clamp(260px, calc(33 * var(--vw)), 634px);
  padding: clamp(18px, calc(2.08 * var(--vw)), 40px);
  color: #fff;
  font-weight: 600;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.35;
}

.photo-quote p + p { margin-top: clamp(10px, calc(.94 * var(--vw)), 18px); }

@media (max-width: 620px) {
  .photo-quote {
    position: static;
    transform: none;
    width: auto;
    margin: clamp(12px, 3vw, 20px) 0 0;
    color: inherit;
    background: rgba(0, 0, 0, .06);
  }
}

/* ---------- on the ground ---------- */
.ground { background: var(--yellow); }

.ground-lede { margin-top: clamp(20px, calc(3.28 * var(--vw)), 63px); max-width: 98.4%; }

.ground-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(28px, calc(6.1 * var(--vw)), 117px);
  aspect-ratio: 1817 / 992;
}

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

.ground .pill { margin-top: clamp(32px, calc(8.4 * var(--vw)), 161px); }

/* ---------- industry leaders ---------- */
.leaders { background: var(--white); }

.leaders-intro { margin-top: clamp(20px, calc(3.85 * var(--vw)), 74px); max-width: 58.8%; }

.leaders-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, calc(3.02 * var(--vw)), 58px) clamp(20px, calc(3.02 * var(--vw)), 58px);
  margin-top: clamp(36px, calc(14.32 * var(--vw)), 275px);
}

.leaders .wrap { --pad-top: clamp(18px, calc(2.86 * var(--vw)), 55px); --pad-bottom: clamp(28px, calc(4.375 * var(--vw)), 84px); }

.leaders-logos img { height: auto; object-fit: contain; flex: none; }

.lg-cocacola      { width: clamp(72px, calc(8.07 * var(--vw)), 155px); }
.lg-salesforce    { width: clamp(52px, calc(6.25 * var(--vw)), 120px); }
.lg-cdrfyi        { width: clamp(84px, calc(9.43 * var(--vw)), 181px); }
.lg-imc           { width: clamp(116px, calc(15.26 * var(--vw)), 293px); }
.lg-sega          { width: clamp(76px, calc(8.44 * var(--vw)), 162px); }
.lg-swissre       { width: clamp(116px, calc(14.9 * var(--vw)), 286px); }
.lg-adyen         { width: clamp(70px, calc(7.86 * var(--vw)), 151px); }
.lg-celonis       { width: clamp(98px, calc(11.41 * var(--vw)), 219px); }
.lg-aeg           { width: clamp(86px, calc(9.95 * var(--vw)), 191px); }
.lg-wise          { width: clamp(80px, calc(9.01 * var(--vw)), 173px); }
.lg-ba            { width: clamp(76px, calc(10.05 * var(--vw)), 193px); }
.lg-commerzbank   { width: clamp(150px, calc(22.71 * var(--vw)), 436px); }

/* ---------- why us ---------- */
.whyus { background: var(--grey-bg); }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, calc(2.19 * var(--vw)), 42px);
  max-width: 66.93%;
  margin-top: clamp(28px, calc(2.5 * var(--vw)), 48px);
  align-items: stretch;
}

/* the stack fills the tall card's height exactly, so no dead space under the
   third box whatever the column width resolves to */
.orange-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, calc(1.61 * var(--vw)), 31px);
}

.orange-stack .orange-card {
  flex: 1 1 0;
  min-height: 0;
  aspect-ratio: auto;
}

.orange-card {
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, calc(1.5 * var(--vw)), 28px);
}

.orange-card--tall { aspect-ratio: 582 / 692; }

.orange-card--wide { aspect-ratio: 582 / 210; }

.orange-card img { width: auto; height: auto; max-width: 92%; max-height: 100%; object-fit: contain; }

.orange-card--tall img { max-width: 73.5%; }

/* each registry lockup is drawn at its own size inside an identical 582x210 box */
.orange-card--wide img { max-height: 100%; }
.orange-card--wide .lg-isometric { width: 92.4%; max-width: 92.4%; }
.orange-card--wide .lg-verra { width: 39.9%; max-width: 39.9%; }
.orange-card--wide .lg-csi { width: 79.9%; max-width: 79.9%; }

.whyus-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, calc(2.19 * var(--vw)), 42px);
  max-width: 66.93%;
  margin-top: clamp(16px, calc(2.92 * var(--vw)), 56px);
}

.whyus .pill { margin-top: clamp(48px, calc(13.85 * var(--vw)), 266px); }

/* ---------- adaptive ---------- */
/* the parallax photo is taller than the band and is translated against the
   scroll, so the band has to clip it instead of letting it paint over Why us */
.adaptive {
  background: #2f4a2c;
  overflow: clip;
}

.adaptive .wrap { --pad-bottom: clamp(18px, calc(2.92 * var(--vw)), 56px); }

/* the photo is taller than the band and drifts against the scroll, so the glass
   tiles blur a moving backdrop */
.adaptive-photo {
  position: absolute;
  top: -108.43%;
  left: -49.79%;
  width: 192.4%;
  height: 223.4%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .adaptive-photo { transform: none !important; }
}

.adaptive-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, .2); }

.glass-tile {
  background: rgba(255, 255, 255, .25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(20px, calc(3.02 * var(--vw)), 58px);
}

.adaptive-grid {
  display: grid;
  grid-template-columns: 870fr 905fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  align-items: center;
}

.adaptive-heading { color: var(--yellow); }

.adaptive-lede { margin-top: clamp(14px, calc(1.72 * var(--vw)), 33px); color: #fff; max-width: 92%; }

.adaptive-cta { margin-top: clamp(24px, calc(3.13 * var(--vw)), 60px); }

.adaptive-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, calc(1.66 * var(--vw)), 32px);
}

.adaptive-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 0;
}

.adaptive-tile img {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.adaptive-tile:last-child img {
  inset: 2%;
  width: 96%;
  height: 96%;
}

.adaptive-tile:first-child img {
  inset: 17%;
  width: 66%;
  height: 66%;
}

/* ---------- latest news ---------- */
.news { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, calc(1.98 * var(--vw)), 38px);
  margin-top: clamp(24px, calc(3.96 * var(--vw)), 76px);
}

.news-card {
  background: var(--card-grey);
  border-radius: var(--radius-lg);
  padding: clamp(14px, calc(1.8 * var(--vw)), 34px);
}

.news-media { position: relative; }

.news-card .news-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 801 / 534;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* the Ghana photo is a portrait source turned a quarter turn on the artboard */
.news-rot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 802 / 534;
}

.news-rot img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66.56%;
  height: 150.19%;
  max-width: none;
  object-fit: cover;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.news-chip {
  position: absolute;
  left: clamp(12px, calc(1.72 * var(--vw)), 33px);
  bottom: clamp(10px, calc(1.35 * var(--vw)), 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, calc(1.25 * var(--vw)), 24px);
  border-radius: var(--radius-md);
  background: rgba(223, 223, 223, .24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f3fdff;
  font-size: clamp(14px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.2;
}

.news-date { margin-top: clamp(12px, calc(1.67 * var(--vw)), 32px); }

.news-title {
  margin: clamp(8px, calc(1.2 * var(--vw)), 23px) 0 0;
  font-size: clamp(19px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
}

.news-dots { display: block; width: clamp(90px, calc(7.45 * var(--vw)), 143px); height: auto; margin: clamp(20px, calc(2.34 * var(--vw)), 45px) auto 0; }

.news .pill { margin-top: clamp(28px, calc(13.28 * var(--vw)), 255px); }

/* ---------- disclosure motion ---------- */
:root { interpolate-size: allow-keywords; }

.faq-row::details-content,
.advisor::details-content,
.stat::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size .32s ease, content-visibility .32s allow-discrete;
}

.faq-row[open]::details-content,
.advisor[open]::details-content,
.stat[open]::details-content { block-size: auto; }

@media (prefers-reduced-motion: reduce) {
  .faq-row::details-content,
  .advisor::details-content,
  .stat::details-content { transition: none; }
}

/* ---------- faqs ---------- */
.faqs { background: var(--yellow); }

.faq-list { margin-top: clamp(14px, calc(1.51 * var(--vw)), 29px); }

.faq-row { border-bottom: 2px solid var(--ink); }

.faq-row summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, calc(2.08 * var(--vw)), 40px);
  padding: clamp(14px, calc(.94 * var(--vw)), 18px) 0 clamp(12px, calc(.83 * var(--vw)), 16px);
  min-height: 48px;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
}

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

.faq-row summary img {
  width: clamp(24px, calc(2.17 * var(--vw)), 41.57px);
  height: auto;
  flex: none;
  transition: transform .2s ease;
}

.faq-row[open] summary img { transform: rotate(45deg); }

.faq-answer {
  margin: 0 0 clamp(14px, calc(1.04 * var(--vw)), 20px);
  padding-right: clamp(0px, calc(6.25 * var(--vw)), 120px);
  font-size: clamp(15px, calc(1.56 * var(--vw)), 30px);
  line-height: 1.35;
  color: #4a4a08;
}

/* ---------- newsletter footer ---------- */
.site-footer,
.about-footer { background: var(--white); }

.site-footer .wrap,
.about-footer .wrap { --pad-bottom: clamp(12px, calc(1.302 * var(--vw)), 25px); }

.footer-grid {
  display: grid;
  grid-template-columns: 851fr 960fr;
  gap: clamp(32px, calc(3 * var(--vw)), 58px);
  align-items: start;
}

.subscribe-form {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, calc(1.04 * var(--vw)), 20px);
  width: min(640px, 100%);
  border-bottom: 2px solid var(--ink);
  padding-bottom: clamp(8px, calc(.73 * var(--vw)), 14px);
  margin-top: clamp(24px, calc(3.65 * var(--vw)), 70px);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.2;
  color: var(--ink);
  padding: 6px 0;
}

.subscribe-form input::placeholder { color: var(--ink); opacity: 1; }
.subscribe-form input:focus { outline: none; }

.subscribe-form button {
  border: 0;
  background: transparent;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
  line-height: 0;
}

.subscribe-form button img { width: clamp(20px, calc(1.49 * var(--vw)), 28.66px); height: auto; }

.footer-social { margin-top: clamp(28px, calc(15.99 * var(--vw)), 307px); }

.footer-pattern { align-self: start; margin-top: clamp(40px, calc(8.07 * var(--vw)), 155px); }

.footer-pattern img { width: 100%; height: auto; display: block; }

.footer-pattern img + img { margin-top: calc(-1.146 * var(--vw)); }

/* ============================================================
   About Us & News
   ============================================================ */

.about-hero { background: #6f7f5a; }

.mission-panel {
  position: absolute;
  left: max(var(--gutter), calc((100% - var(--max)) / 2));
  bottom: clamp(24px, calc(5 * var(--vw)), 96px);
  width: calc((min(var(--max), 100% - 2 * var(--gutter)) - clamp(24px, calc(4.38 * var(--vw)), 84px)) * .5747);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(18px, calc(3.33 * var(--vw)), 64px);
  z-index: 2;
}

.mission-title {
  font-weight: 700;
  font-size: clamp(30px, calc(5.21 * var(--vw)), 100px);
  line-height: 1.2;
  color: var(--yellow);
  margin: 0;
}

.mission-body {
  font-weight: 600;
  font-size: clamp(18px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  color: var(--yellow);
  margin: clamp(8px, calc(1.04 * var(--vw)), 20px) 0 0;
}

.quote-band { background: var(--yellow); }

.quote-band .body-50 { max-width: 58.8%; }

/* ---------- where it matters most ---------- */
.matters { background: var(--grey-bg); }

.matters .h2-lg { text-wrap: balance; }

.matters-grid {
  display: grid;
  grid-template-columns: 1073fr 605fr;
  column-gap: clamp(24px, calc(7.5 * var(--vw)), 146px);
  row-gap: clamp(28px, calc(4 * var(--vw)), 77px);
  margin-top: clamp(24px, calc(5.2 * var(--vw)), 100px);
  align-items: start;
}

.matters-list { margin: clamp(16px, calc(3.65 * var(--vw)), 70px) 0 0; padding: 0; list-style: none; }

.matters-list li {
  font-weight: 400;
  font-size: clamp(18px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.15;
  padding-bottom: clamp(10px, calc(.83 * var(--vw)), 16px);
  margin-bottom: clamp(12px, calc(1.04 * var(--vw)), 20px);
  border-bottom: 1px solid rgba(33, 33, 33, .28);
}

.matters-list li:last-child { border-bottom: 0; margin-bottom: 0; }

.shot-16 { border-radius: var(--radius-md); overflow: hidden; }
.shot-16 img { width: 100%; height: 100%; object-fit: cover; }

.shot-16--soil { aspect-ratio: 748 / 480; align-self: end; }
.shot-16--harvest { aspect-ratio: 748 / 537; }

.matters-caption { margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px); }

/* ---------- foundation principles ---------- */
.principles { background: var(--white); }

.principles-intro { margin-top: clamp(14px, calc(1.5 * var(--vw)), 29px); max-width: 71.3%; }

.principle-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, calc(1.2 * var(--vw)), 24px);
  margin-top: clamp(28px, calc(3.8 * var(--vw)), 73px);
}

.principle-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, calc(1.56 * var(--vw)), 30px);
}

.principle-btn {
  width: clamp(64px, calc(7.81 * var(--vw)), 150px);
  height: clamp(64px, calc(7.81 * var(--vw)), 150px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dddddd;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease;
}

.principle-btn img { width: 52%; height: auto; }

.principle-btn[aria-selected="true"] { background: var(--orange); }

@media (hover: hover) {
  .principle-btn:hover:not([aria-selected="true"]) { background: #ffb066; }
}

.principle-label {
  width: 100%;
  font-weight: 700;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
  text-align: center;
  margin: 0;
}

.principle-reveal {
  width: 57.1%;
  border-radius: var(--radius-md);
  background: var(--orange);
  padding: clamp(20px, calc(2.92 * var(--vw)), 56px);
  margin-top: clamp(28px, calc(3.75 * var(--vw)), 72px);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), height .45s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .principle-reveal { transition: none; }
}

.principles .wrap { --pad-top: clamp(31px, calc(3.18 * var(--vw)), 61px); --pad-bottom: clamp(31px, calc(3.18 * var(--vw)), 61px); }

.principle-panel h3 {
  font-weight: 700;
  font-size: clamp(20px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.24;
  margin: 0;
}

.principle-panel p {
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.31;
  margin: clamp(14px, calc(2.6 * var(--vw)), 50px) 0 0;
}

.principle-panel .pill { margin-top: clamp(20px, calc(3.65 * var(--vw)), 70px); }

.principle-panel[hidden] { display: none; }

.principle-list {
  margin: clamp(10px, calc(1.04 * var(--vw)), 20px) 0 0;
  padding-left: 1.2em;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.31;
}

.principle-list li { margin-top: clamp(4px, calc(.42 * var(--vw)), 8px); }

.inline-link { text-decoration: underline; text-underline-offset: .18em; }

/* ---------- founder field notes ---------- */
.fieldnotes { background: var(--grey-bg); }

.fieldnotes-top {
  display: grid;
  grid-template-columns: 1200fr 576fr;
  gap: clamp(24px, calc(3.75 * var(--vw)), 72px);
  align-items: start;
}

.fieldnotes-intro { margin-top: clamp(14px, calc(2.08 * var(--vw)), 40px); max-width: 60.3%; }

.fieldnotes-link {
  display: inline-block;
  margin-top: clamp(24px, calc(5.99 * var(--vw)), 115px);
  font-weight: 400;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
}

.fieldnotes .wrap { --pad-top: clamp(31px, calc(3.675 * var(--vw)), 70.5px); --pad-bottom: clamp(31px, calc(3.675 * var(--vw)), 70.5px); }

.shot-24 { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 576 / 486; }
.shot-24 img { width: 100%; height: 100%; object-fit: cover; }

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, calc(2.5 * var(--vw)), 48px);
  margin-top: clamp(28px, calc(2.45 * var(--vw)), 47px);
}

.note-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(16px, calc(2.19 * var(--vw)), 42px);
}

.note-card img { width: 100%; height: auto; aspect-ratio: 492 / 320; object-fit: cover; }

.note-card .note-date { margin: clamp(12px, calc(2.08 * var(--vw)), 40px) 0 0; font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.2; }

.note-card .note-title { margin: clamp(6px, calc(.63 * var(--vw)), 12px) 0 0; font-size: clamp(18px, calc(2.6 * var(--vw)), 50px); line-height: 1.2; }

.note-card--link { cursor: pointer; }

.note-lead {
  margin-top: clamp(24px, calc(3.13 * var(--vw)), 60px);
  display: grid;
  grid-template-columns: clamp(200px, calc(23 * var(--vw)), 442px) 1fr;
  gap: clamp(20px, calc(2.6 * var(--vw)), 50px);
  align-items: center;
}

.note-lead-shot { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3 / 2; }

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

@media (max-width: 900px) {
  .note-lead { grid-template-columns: 1fr; }
}

.note-lead .note-date { margin: 0; font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.2; }

.note-lead .note-title { margin: clamp(6px, calc(.63 * var(--vw)), 12px) 0 0; font-weight: 700; font-size: clamp(18px, calc(2.6 * var(--vw)), 50px); line-height: 1.2; }

.note-lead-excerpt { margin: clamp(12px, calc(1.3 * var(--vw)), 25px) 0 0; font-size: clamp(15px, calc(1.4 * var(--vw)), 27px); line-height: 1.4; font-weight: 400; color: #4c4c4c; }

.note-lead-cta { margin-top: clamp(16px, calc(1.82 * var(--vw)), 35px); background: transparent; cursor: pointer; }

.note-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(0, 0, 0, .78);
}

.note-modal[hidden] { display: none; }

.note-modal-frame { position: relative; width: min(1100px, 100%); }

.note-modal-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, calc(3.13 * var(--vw)), 60px);
  max-height: 82vh;
  overflow-y: auto;
}

.note-modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: clamp(36px, calc(2.29 * var(--vw)), 44px);
  height: clamp(36px, calc(2.29 * var(--vw)), 44px);
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: clamp(20px, calc(1.35 * var(--vw)), 26px);
  line-height: 1;
  cursor: pointer;
}

body.is-note-modal { overflow: hidden; }

.note-full { display: none; }

.note-full.is-active { display: block; }

.note-full .note-date { margin: 0; font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.2; }

.note-full .note-title { margin: clamp(6px, calc(.63 * var(--vw)), 12px) 0 0; font-weight: 700; font-size: clamp(18px, calc(2.6 * var(--vw)), 50px); line-height: 1.2; }

.note-full .note-full-body { margin-top: clamp(12px, calc(1.3 * var(--vw)), 25px); line-height: 1.4; }

.note-full .note-full-body p + p { margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px); }

.note-dots { display: flex; align-items: center; justify-content: center; gap: clamp(8px, calc(.78 * var(--vw)), 15px); margin-top: clamp(20px, calc(2.5 * var(--vw)), 48px); }
.note-dots i { display: block; width: clamp(10px, calc(.89 * var(--vw)), 17px); height: clamp(10px, calc(.89 * var(--vw)), 17px); border-radius: 999px; background: rgba(33, 33, 33, .3); }
.note-dots i:first-child { width: clamp(44px, calc(4.17 * var(--vw)), 80px); height: clamp(11px, calc(.99 * var(--vw)), 19px); background: var(--ink); }

/* ---------- see our team in action ---------- */
.team-video { background: var(--yellow); }

.video-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 1824 / 620;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(24px, calc(5.2 * var(--vw)), 100px);
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel.has-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

.video-panel .video-poster + span { position: relative; z-index: 1; }

.video-panel span {
  width: clamp(64px, calc(7.81 * var(--vw)), 150px);
  height: clamp(64px, calc(7.81 * var(--vw)), 150px);
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-panel svg { width: 37%; height: auto; margin-left: 6%; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(0, 0, 0, .78);
}

.video-modal[hidden] { display: none; }

.video-modal-frame { position: relative; width: min(1100px, 100%); }

.video-modal-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  border-radius: var(--radius-md);
  background: #000;
}

.video-modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: clamp(36px, calc(2.29 * var(--vw)), 44px);
  height: clamp(36px, calc(2.29 * var(--vw)), 44px);
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: clamp(20px, calc(1.35 * var(--vw)), 26px);
  line-height: 1;
  cursor: pointer;
}

body.is-video-modal { overflow: hidden; }

/* ---------- our team ---------- */
.team { background: var(--white); }

.team-body { position: relative; }

.team-blob {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: calc(-1 * var(--pad-bottom));
  width: calc(184.3 * var(--vw));
  transform: translateX(calc(-50% + 42.16 * var(--vw)));
  max-width: none;
  pointer-events: none;
  z-index: -1;
  display: flex;
  flex-direction: column;
}

.team-blob img { width: 100%; height: auto; display: block; flex: none; }

.team-blob::after {
  content: "";
  flex: 1;
  width: 19.43%;
  margin-left: 40.28%;
  margin-top: -1px;
  background: rgba(255, 238, 4, .5);
}

.team-intro { margin-top: clamp(14px, calc(1.72 * var(--vw)), 33px); max-width: 82.2%; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(24px, calc(2.6 * var(--vw)), 50px);
  row-gap: clamp(32px, calc(4.5 * var(--vw)), 86px);
  margin-top: clamp(28px, calc(6.5 * var(--vw)), 125px);
}

.member { position: relative; max-width: 560px; }

.member-photo-wrap { position: relative; width: min(300px, 86%); }

.member-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

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

.member-photo .member-photo-action {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}

@media (hover: hover) {
  .member:hover .member-photo-action,
  .member:focus-within .member-photo-action { opacity: 1; }
}

.member--partner .member-photo { box-shadow: 0 0 0 4px var(--orange); }
.member--partner .member-role { color: var(--orange); }

.member-li {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 2;
  width: clamp(30px, calc(1.98 * var(--vw)), 38px);
  height: clamp(30px, calc(1.98 * var(--vw)), 38px);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(14px, calc(.99 * var(--vw)), 19px);
  line-height: 1;
}

.member-name { font-size: clamp(19px, calc(2.4 * var(--vw)), 46px); line-height: 1.2; margin: clamp(16px, calc(1.98 * var(--vw)), 38px) 0 0; font-weight: 400; }
.member-role { font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.2; margin: clamp(4px, calc(.31 * var(--vw)), 6px) 0 0; font-weight: 400; }

.member-bio-toggle {
  display: inline-block;
  margin-top: clamp(12px, calc(1.15 * var(--vw)), 22px);
  padding: 6px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: none;
  font-family: inherit;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
}

/* the Bio button opens the bio on every device; collapsed rows reserve no space */
.member-bio-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.member.is-open .member-bio-wrap { grid-template-rows: 1fr; }

.member-bio {
  overflow: hidden;
  min-height: 0;
  font-size: clamp(15px, calc(1.67 * var(--vw)), 32px);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}

.member.is-open .member-bio { padding-top: clamp(6px, calc(.52 * var(--vw)), 10px); }

/* ---------- senior advisors ---------- */
.advisors { background: var(--grey-bg); }

.advisor-list { margin-top: clamp(20px, calc(3.65 * var(--vw)), 70px); }

.advisor { border-top: 1px solid var(--ink); }

.advisor summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: clamp(16px, calc(1.77 * var(--vw)), 34px) clamp(48px, calc(3.5 * var(--vw)), 67px) clamp(14px, calc(1.25 * var(--vw)), 24px) 0;
  min-height: 48px;
}

.advisor summary::-webkit-details-marker { display: none; }
.advisor-name { font-weight: 700; font-size: clamp(16px, calc(1.82 * var(--vw)), 35px); line-height: 1.25; margin: 0; }
.advisor-role { font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.25; margin: 0; color: #6b6b6b; }

.advisor-mark { position: absolute; right: 0; top: 50%; margin-top: -21px; width: clamp(26px, calc(2.19 * var(--vw)), 42px); height: clamp(26px, calc(2.19 * var(--vw)), 42px); }
.advisor-mark::before,
.advisor-mark::after { content: ""; position: absolute; background: var(--ink); }
.advisor-mark::before { left: 0; top: 50%; width: 100%; height: 3px; margin-top: -1.5px; }
.advisor-mark::after { left: 50%; top: 0; width: 3px; height: 100%; margin-left: -1.5px; transition: opacity .2s ease; }
.advisor[open] .advisor-mark::after { opacity: 0; }

.advisor-body { display: flex; gap: clamp(20px, calc(3.13 * var(--vw)), 60px); padding: 0 0 clamp(20px, calc(1.77 * var(--vw)), 34px); align-items: flex-start; }
.advisor-body img { width: clamp(90px, calc(9.9 * var(--vw)), 190px); height: clamp(90px, calc(9.9 * var(--vw)), 190px); border-radius: 50%; flex: none; object-fit: cover; }
.advisor-body p { font-size: clamp(15px, calc(1.67 * var(--vw)), 32px); line-height: 1.5; margin: 0; }

/* ---------- join us ---------- */
.joinus { background: var(--yellow); }

.joinus .display { letter-spacing: normal; line-height: 1; }

.joinus-h2 { margin-top: clamp(20px, calc(2.08 * var(--vw)), 40px); max-width: 82.2%; }

.joinus-body { margin-top: clamp(20px, calc(2.08 * var(--vw)), 40px); max-width: 71.3%; }

.joinus .pill { margin-top: clamp(28px, calc(2.92 * var(--vw)), 56px); }

.joinus .wrap { --pad-top: clamp(31px, calc(3.1 * var(--vw)), 59.5px); --pad-bottom: clamp(31px, calc(3.1 * var(--vw)), 59.5px); }

/* ---------- contact ---------- */
.contact { background: var(--grey-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 900fr 848fr;
  gap: clamp(32px, calc(5.83 * var(--vw)), 112px);
  align-items: start;
}

.contact-lead { margin-top: clamp(14px, calc(1.56 * var(--vw)), 30px); font-weight: 700; }

.contact-copy { margin-top: clamp(12px, calc(1.15 * var(--vw)), 22px); max-width: 95.6%; font-size: clamp(16px, calc(1.82 * var(--vw)), 35px); line-height: 1.4; }

.contact-email { margin-top: clamp(16px, calc(2.4 * var(--vw)), 46px); font-size: clamp(16px, calc(1.82 * var(--vw)), 35px); line-height: 1.25; font-weight: 700; }

.contact-send { font-size: clamp(19px, calc(2.6 * var(--vw)), 50px); line-height: 1.2; font-weight: 700; margin: 0; }

.contact-form { margin-top: clamp(20px, calc(3.13 * var(--vw)), 60px); }

.contact .wrap { --pad-top: clamp(33px, calc(5.365 * var(--vw)), 103px); --pad-bottom: clamp(33px, calc(5.365 * var(--vw)), 103px); }

.field { position: relative; width: 100%; padding-right: clamp(16px, calc(1.25 * var(--vw)), 24px); margin-bottom: clamp(24px, calc(4.48 * var(--vw)), 86px); }

.field label { position: absolute; top: 0; left: 0; right: 0; display: block; font-size: 0; line-height: 0; }

.field input::placeholder,
.field textarea::placeholder { color: var(--ink); opacity: 1; }

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(33, 33, 33, .25);
  background: transparent;
  font-family: inherit;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.3;
  color: var(--ink);
  padding: 8px 0;
  resize: none;
}

.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.field .req { position: absolute; right: 0; top: 8px; color: #d94026; font-size: clamp(16px, calc(1.82 * var(--vw)), 35px); line-height: 1.3; }

.contact-submit { background: transparent; cursor: pointer; }

.contact-li {
  width: clamp(44px, calc(2.92 * var(--vw)), 56px);
  height: clamp(44px, calc(2.92 * var(--vw)), 56px);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(18px, calc(1.82 * var(--vw)), 35px);
  line-height: 1;
  margin-top: clamp(20px, calc(2.08 * var(--vw)), 40px);
}

.about-footer .pill--social { min-height: clamp(40px, calc(2.97 * var(--vw)), 57px); }

/* ============================================================
   Breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .site-nav { padding-inline: clamp(14px, calc(2.08 * var(--vw)), 40px); }

  .nav {
    flex: none;
    position: relative;
    margin-left: auto;
    width: var(--nav-h);
    padding-inline: 0;
    justify-content: center;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-toggle {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: var(--nav-h);
    height: var(--nav-h);
    padding: 0;
    border: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-radius: var(--radius-lg);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .55),
      inset 1px 0 0 rgba(255, 255, 255, .22),
      inset -1px 0 0 rgba(255, 255, 255, .22),
      inset 0 -1px 0 rgba(255, 255, 255, .12),
      0 8px 24px rgba(0, 0, 0, .18);
  }

  .nav-toggle span {
    display: block;
    width: 40%;
    height: 3px;
    border-radius: 2px;
    background: var(--yellow);
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .nav-links {
    position: absolute;
    top: calc(var(--nav-h) + 10px);
    right: 0;
    width: min(320px, calc(100vw - 2 * var(--gutter)));
    display: flex;
    flex-direction: column;
    padding: 8px;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .55),
      inset 1px 0 0 rgba(255, 255, 255, .22),
      inset -1px 0 0 rgba(255, 255, 255, .22),
      inset 0 -1px 0 rgba(255, 255, 255, .12),
      0 8px 24px rgba(0, 0, 0, .18);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(.94);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity .26s ease,
      transform .34s cubic-bezier(.32, 1.36, .4, 1),
      visibility 0s linear .34s;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition:
      opacity .26s ease,
      transform .34s cubic-bezier(.32, 1.36, .4, 1);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 16px;
    font-size: 20px;
    text-align: left;
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-links.is-open a { opacity: 1; transform: none; }
  .nav-links.is-open a:nth-child(1) { transition-delay: .05s; }
  .nav-links.is-open a:nth-child(2) { transition-delay: .1s; }
  .nav-links.is-open a:nth-child(3) { transition-delay: .15s; }
  .nav-links.is-open a:nth-child(4) { transition-delay: .2s; }

  @media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links.is-open,
    .nav-links a { transition: none; }
  }
}

@media (min-width: 1025px) {
  .nav-links { display: contents; }

  .nav {
    position: relative;
    justify-content: space-around;
    padding-inline: clamp(16px, calc(2.9 * var(--vw)), 56px);
  }

  .nav-links a {
    flex: 0 1 auto;
    min-width: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(10px, calc(1.07 * var(--vw)), 20.6px);
    position: relative;
    z-index: 1;
  }

  .nav-hover-pill.is-on { opacity: 1; }
}

.nav-hover-pill {
  position: absolute;
  top: 50%;
  height: calc(100% - 12px);
  transform: translateY(-50%);
  border-radius: calc(var(--radius-lg) - 6px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    inset 1px 0 0 rgba(255, 255, 255, .18),
    inset -1px 0 0 rgba(255, 255, 255, .18),
    inset 0 -1px 0 rgba(255, 255, 255, .1),
    0 4px 14px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: left .28s cubic-bezier(.4, 0, .2, 1), width .28s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}

/* ---------- what we do ---------- */
.wwd-hero { position: relative; height: clamp(420px, calc(61.46 * var(--vw)), 1180px); overflow: hidden; }

.wwd-hero .hero-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .55) 100%);
}

.wwd-hero-panel {
  position: absolute;
  left: max(var(--gutter), calc((100% - var(--max)) / 2));
  bottom: clamp(30px, calc(5 * var(--vw)), 96px);
  width: calc((min(var(--max), 100% - 2 * var(--gutter)) - clamp(24px, calc(4.38 * var(--vw)), 84px)) * .5747);
  padding: clamp(20px, calc(2.92 * var(--vw)), 56px) clamp(22px, calc(3.33 * var(--vw)), 64px);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 1px 0 0 rgba(255, 255, 255, .22),
    inset -1px 0 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(255, 255, 255, .12);
}

.wwd-hero-title {
  font-weight: 700;
  font-size: clamp(30px, calc(5.21 * var(--vw)), 100px);
  line-height: 1.1;
  color: var(--yellow);
  margin: 0;
}

.wwd-hero-sub {
  font-weight: 600;
  font-size: clamp(18px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  color: var(--yellow);
  margin: clamp(8px, calc(1 * var(--vw)), 19px) 0 0;
}

.wwd-kicker {
  font-weight: 400;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
  color: #6f6f6f;
  margin: 0 0 clamp(18px, calc(2.6 * var(--vw)), 50px);
}

.wwd-body-gap { margin-top: clamp(18px, calc(2.6 * var(--vw)), 50px); }

.wwd-netzero { background: var(--white); }
.wwd-netzero .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-split {
  display: grid;
  grid-template-columns: 1000fr 740fr;
  column-gap: clamp(24px, calc(4.38 * var(--vw)), 84px);
  align-items: start;
}

.wwd-netzero-shot { border-radius: var(--radius-md); overflow: hidden; }
.wwd-netzero-shot img { width: 100%; height: auto; display: block; }

.wwd-delivered { background: var(--grey-bg); }
.wwd-delivered .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-measure { max-width: 71.3%; }

.wwd-delivered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  align-items: start;
  margin-top: clamp(24px, calc(4.9 * var(--vw)), 94px);
}

.wwd-delivered-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, calc(1.5 * var(--vw)), 29px);
  padding: clamp(14px, calc(1.9 * var(--vw)), 37px) 0;
  border-bottom: 1px solid rgba(33, 33, 33, .28);
  width: 100%;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.wwd-delivered-row img { transition: transform .3s ease; }
.wwd-delivered-row.is-active img { transform: rotate(45deg); }

.wwd-delivered-row:last-child { border-bottom: 0; }

.wwd-delivered-title {
  font-weight: 400;
  font-size: clamp(18px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  margin: 0;
}

.wwd-delivered-row.is-active .wwd-delivered-title { font-weight: 700; color: var(--orange); }

.wwd-delivered-row img { width: clamp(18px, calc(2.19 * var(--vw)), 42px); height: auto; }

.wwd-eagle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(18px, calc(2.14 * var(--vw)), 41px);
  overflow: hidden;
  transition: height .45s cubic-bezier(.4, 0, .2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .wwd-eagle-card { transition: none; }
}

.wwd-delivered-panel p + p { margin-top: clamp(10px, calc(1.3 * var(--vw)), 25px); }
.wwd-delivered-panel > p {
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.31;
  margin: 0;
}

.wwd-eagle-symbols { display: flex; gap: clamp(6px, calc(.63 * var(--vw)), 12px); }

.wwd-symbol-slot {
  position: relative;
  width: clamp(26px, calc(2.92 * var(--vw)), 56px);
  aspect-ratio: 56 / 46;
}

.wwd-symbol-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s ease;
}

.wwd-symbol-slot img:last-child { opacity: 0; }
.wwd-symbol-slot.is-active img:last-child { opacity: 1; }
.wwd-symbol-slot.is-active img:first-child { opacity: 0; }

.wwd-eagle-card p {
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.31;
  margin: clamp(12px, calc(1.98 * var(--vw)), 38px) 0 0;
}

.wwd-eagle-card .pill { margin-top: clamp(14px, calc(2.08 * var(--vw)), 40px); }

.wwd-tech { background: var(--white); }
.wwd-tech .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-tech-grid {
  display: grid;
  grid-template-columns: 888fr 888fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  align-items: start;
  margin-top: clamp(20px, calc(3.54 * var(--vw)), 68px);
}

.wwd-tech-name {
  font-weight: 700;
  font-size: clamp(18px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  margin: 0;
}

.wwd-tech-name-2 { margin-top: clamp(40px, calc(15.94 * var(--vw)), 306px); }

.wwd-tech-col-2 {
  padding-top: calc(
    clamp(18px, calc(2.6 * var(--vw)), 50px) * 1.2 +
    clamp(4px, calc(.4 * var(--vw)), 8px) +
    clamp(15px, calc(1.82 * var(--vw)), 35px) * 1.3 +
    clamp(14px, calc(4.69 * var(--vw)), 90px));
}

.wwd-tech-panel--machinery { margin-top: clamp(20px, calc(5 * var(--vw)), 96px); }

.wwd-tech-state {
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.3;
  margin: clamp(4px, calc(.4 * var(--vw)), 8px) 0 0;
}

.wwd-tech-panel {
  background: var(--yellow);
  border-radius: var(--radius-md);
  aspect-ratio: 888 / 620;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(14px, calc(4.69 * var(--vw)), 90px);
}

.wwd-tech-col-2 .wwd-tech-panel:first-child { margin-top: 0; }
.wwd-tech-caption { margin-top: clamp(12px, calc(2.92 * var(--vw)), 56px); }

.wwd-tech-panel img { width: 46%; height: auto; }

.wwd-t3 { position: relative; }

.wwd-tech-plus {
  position: absolute;
  top: 50%;
  right: calc(-.5 * clamp(24px, calc(5 * var(--vw)), 96px));
  transform: translate(50%, -50%);
  font-weight: 700;
  font-size: clamp(30px, calc(3.13 * var(--vw)), 60px);
  line-height: 1;
  color: var(--ink);
}


.wwd-portfolio-note {
  max-width: 71.3%;
  margin-top: clamp(28px, calc(5.2 * var(--vw)), 100px);
}

.wwd-projects .h2,
.wwd-touch .h2-lg { max-width: 82.2%; }

.wwd-mrv-sub { max-width: 87.7%; }

.wwd-portfolio-lede { max-width: 82.2%; }

.wwd-eagle { background: var(--grey-bg); }
.wwd-eagle .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-eagle-split {
  display: grid;
  grid-template-columns: 888fr 888fr;
  grid-template-areas:
    "headline photo"
    "tailor photo"
    "sensors claims";
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  align-items: start;
}

.wwd-eagle-headline { grid-area: headline; }
.wwd-eagle-tailor { grid-area: tailor; }
.wwd-eagle-sensors { grid-area: sensors; }
.wwd-eagle-photo { grid-area: photo; }
.wwd-eagle-claims-slot { grid-area: claims; }

.wwd-handheld { border-radius: var(--radius-md); overflow: hidden; }
.wwd-handheld img { width: 100%; height: auto; display: block; }

.wwd-eagle-photo-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3 / 2; }

.wwd-eagle-photo-card img:first-child { width: 100%; height: 100%; object-fit: cover; display: block; }

.wwd-eagle-mark { position: absolute; left: 4.2%; top: 5%; width: 23%; height: auto; }

.wwd-claims { display: grid; gap: clamp(8px, calc(.68 * var(--vw)), 13px); }

.wwd-claims p {
  background: var(--orange);
  border-radius: var(--radius-sm);
  padding: clamp(12px, calc(1.56 * var(--vw)), 30px) clamp(14px, calc(2.08 * var(--vw)), 40px);
  font-weight: 700;
  font-size: clamp(15px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.3;
  margin: 0;
}

.wwd-diagram-heading { margin-top: clamp(48px, calc(8.33 * var(--vw)), 160px); text-wrap: balance; }

.wwd-diagram-heading + .wwd-diagram { margin-top: clamp(14px, calc(1.56 * var(--vw)), 30px); }

.wwd-diagram { margin-top: clamp(24px, calc(4.53 * var(--vw)), 87px); border-radius: var(--radius-md); overflow: hidden; }
.wwd-diagram img { width: 100%; height: auto; display: block; }

.wwd-feed { margin-top: clamp(28px, calc(4.7 * var(--vw)), 90px); }
.wwd-feed-label { margin-bottom: clamp(12px, calc(1.56 * var(--vw)), 30px); }

.wwd-feed-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wwd-feed-track {
  display: flex;
  gap: clamp(10px, calc(1.15 * var(--vw)), 22px);
  width: max-content;
}

.wwd-feed-track.is-stepping { transition: transform .85s cubic-bezier(.45, 0, .25, 1); }
.wwd-feed-viewport--second { margin-top: clamp(6px, calc(.63 * var(--vw)), 12px); }

.wwd-feed-card {
  flex: none;
  display: flex;
  align-items: stretch;
  width: clamp(200px, calc(21.75 * var(--vw)), 418px);
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.wwd-feed-tile {
  flex: none;
  width: clamp(76px, calc(8.25 * var(--vw)), 158px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(33, 33, 33, .12);
}

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

.wwd-feed-tile--mark { background: var(--orange); }
.wwd-feed-tile--mark img { width: 40%; height: auto; object-fit: contain; }

.wwd-feed-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(8px, calc(.83 * var(--vw)), 16px) clamp(10px, calc(1.15 * var(--vw)), 22px); min-width: 0; }
.wwd-feed-ref { font-size: clamp(10px, calc(.94 * var(--vw)), 18px); color: #8a8a8a; }
.wwd-feed-fig { font-weight: 700; font-size: clamp(18px, calc(2.25 * var(--vw)), 43px); line-height: 1.2; }
.wwd-feed-src { font-size: clamp(11px, calc(1.13 * var(--vw)), 22px); line-height: 1.2; color: #4c4c4c; }

.wwd-mrv { background: var(--yellow); }
.wwd-mrv .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-mrv-title {
  font-weight: 700;
  font-size: clamp(52px, calc(11.05 * var(--vw)), 212px);
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .wwd-mrv-title { white-space: normal; }
}

.wwd-mrv-sub {
  font-weight: 700;
  font-size: clamp(30px, calc(5.21 * var(--vw)), 100px);
  line-height: 1.1;
  margin: clamp(4px, calc(.42 * var(--vw)), 8px) 0 0;
}

.wwd-mrv-body { max-width: 82.2%; }
.wwd-mrv-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: clamp(20px, calc(2.6 * var(--vw)), 50px);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(19px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  color: var(--ink);
}

.wwd-projects { background: var(--grey-bg); }
.wwd-projects .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-map-grid,
.wwd-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  row-gap: clamp(28px, calc(3.4 * var(--vw)), 65px);
  margin-top: clamp(24px, calc(4.9 * var(--vw)), 94px);
}

.wwd-map { position: relative; background: var(--white); border-radius: var(--radius-md); overflow: hidden; }
.wwd-map img { width: 100%; height: auto; display: block; }

.wwd-map-dot {
  position: absolute;
  width: clamp(14px, calc(1.46 * var(--vw)), 28px);
  height: clamp(14px, calc(1.46 * var(--vw)), 28px);
  margin: 0;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
}

.wwd-map-dot::before,
.wwd-map-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: wwd-ping 2.6s cubic-bezier(.2, .6, .4, 1) infinite;
}

.wwd-map-dot::after { animation-delay: 1.3s; }

@keyframes wwd-ping {
  0% { transform: scale(.6); opacity: .9; }
  80% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wwd-map-dot::before,
  .wwd-map-dot::after { animation: none; opacity: .5; transform: scale(1.4); }
}

.wwd-place-name { font-weight: 700; font-size: clamp(16px, calc(1.82 * var(--vw)), 35px); margin: clamp(14px, calc(1.72 * var(--vw)), 33px) 0 0; }
.wwd-place-region { font-size: clamp(14px, calc(1.67 * var(--vw)), 32px); margin: clamp(4px, calc(.42 * var(--vw)), 8px) 0 0; }

.wwd-project { margin: 0; }

.wwd-project-more {
  position: absolute;
  right: clamp(10px, calc(.83 * var(--vw)), 16px);
  bottom: clamp(10px, calc(.83 * var(--vw)), 16px);
  z-index: 3;
  width: clamp(32px, calc(2.08 * var(--vw)), 40px);
  height: clamp(32px, calc(2.08 * var(--vw)), 40px);
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: clamp(18px, calc(1.25 * var(--vw)), 24px);
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease;
}

.wwd-project.is-popped .wwd-project-more { transform: rotate(45deg); }

.wwd-project-pop {
  position: absolute;
  z-index: 2;
  inset: auto clamp(8px, calc(.63 * var(--vw)), 12px) clamp(8px, calc(.63 * var(--vw)), 12px) clamp(8px, calc(.63 * var(--vw)), 12px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(12px, calc(1.25 * var(--vw)), 24px);
  padding-right: clamp(48px, calc(3.5 * var(--vw)), 68px);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.wwd-project.is-popped .wwd-project-pop { opacity: 1; transform: translateY(0); pointer-events: auto; }

.wwd-project-pop p { margin: 0; font-size: clamp(12px, calc(.94 * var(--vw)), 18px); line-height: 1.4; }

.wwd-project-pop a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.wwd-project-shot .card-mark {
  position: absolute;
  right: 3.6%;
  top: 3.6%;
  width: 9.4%;
  height: auto;
  object-fit: contain;
}
.wwd-project-shot { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 896 / 560; }
.wwd-project-shot img:first-child { width: 100%; height: 100%; object-fit: cover; display: block; }

.wwd-project figcaption { font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); line-height: 1.25; margin-top: clamp(12px, calc(1.56 * var(--vw)), 30px); }

.wwd-feedstock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, calc(1.56 * var(--vw)), 30px);
  margin-top: clamp(32px, calc(6.51 * var(--vw)), 125px);
}

.wwd-feedstock-title { margin: 0; }

.wwd-feedstock-mark {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, calc(4.17 * var(--vw)), 80px);
  height: clamp(44px, calc(4.17 * var(--vw)), 80px);
  background: var(--orange);
  border-radius: var(--radius-sm);
}

.wwd-feedstock-mark img { width: 56%; height: auto; }
.wwd-feedstock-cue { margin-top: clamp(8px, calc(1.15 * var(--vw)), 22px); }

.wwd-pie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  margin-top: clamp(20px, calc(3.13 * var(--vw)), 60px);
}

.wwd-pie-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(18px, calc(2.29 * var(--vw)), 44px);
}

.wwd-pie-title { font-weight: 700; font-size: clamp(18px, calc(2.6 * var(--vw)), 50px); margin: 0; }

.wwd-pie-row { display: flex; align-items: center; gap: clamp(18px, calc(3.13 * var(--vw)), 60px); margin-top: clamp(12px, calc(1.56 * var(--vw)), 30px); }

.wwd-pie { width: clamp(190px, calc(19 * var(--vw)), 365px); height: auto; flex: none; }

.wwd-slice { transition: opacity .18s ease, transform .18s ease; transform-origin: 100px 100px; }

@media (hover: hover) {
  .wwd-pie:hover .wwd-slice { opacity: .45; }
  .wwd-pie .wwd-slice:hover { opacity: 1; transform: scale(1.04); }
}

.wwd-pie-card { position: relative; }

.wwd-pie-pop {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  min-width: clamp(220px, calc(19.5 * var(--vw)), 374px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(12px, calc(1.25 * var(--vw)), 24px);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.wwd-pie-card.is-popped .wwd-pie-pop { opacity: 1; transform: translateY(0); }

.wwd-pie-pop::after {
  content: "";
  position: absolute;
  left: var(--pop-arrow-x, 32px);
  border: 10px solid transparent;
  margin-left: -10px;
}

.wwd-pie-pop.pop-above::after {
  top: 100%;
  border-top-color: var(--ink);
}

.wwd-pie-pop.pop-below::after {
  bottom: 100%;
  border-bottom-color: var(--ink);
}

.wwd-pie-pop-title { font-weight: 700; font-size: clamp(14px, calc(1.3 * var(--vw)), 25px); margin: 0; }

.wwd-pie-pop dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2px, calc(.21 * var(--vw)), 4px) clamp(10px, calc(1.04 * var(--vw)), 20px);
  margin: clamp(8px, calc(.83 * var(--vw)), 16px) 0 0;
  font-size: clamp(11px, calc(.94 * var(--vw)), 18px);
}

.wwd-pie-pop dt { color: rgba(255, 255, 255, .6); }
.wwd-pie-pop dd { margin: 0; }

.wwd-pie-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(8px, calc(.83 * var(--vw)), 16px); }
.wwd-pie-legend li { display: flex; align-items: center; gap: clamp(8px, calc(.83 * var(--vw)), 16px); font-size: clamp(13px, calc(1.35 * var(--vw)), 26px); }
.wwd-pie-legend li > span:first-child { width: clamp(12px, calc(1.15 * var(--vw)), 22px); height: clamp(12px, calc(1.15 * var(--vw)), 22px); border-radius: 4px; flex: none; }
.wwd-pie-legend-text { min-width: 0; }
.wwd-pie-legend [data-pct] { white-space: nowrap; }

.wwd-portfolio { background: var(--white); }
.wwd-portfolio .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }

.wwd-portfolio-lede { font-weight: 700; font-size: clamp(18px, calc(2.6 * var(--vw)), 50px); line-height: 1.2; max-width: 78.1%; margin: 0; }

.wwd-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(16px, calc(2.08 * var(--vw)), 40px);
  margin-top: clamp(20px, calc(3.13 * var(--vw)), 60px);
}

.wwd-portfolio-grid > div {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.wwd-portfolio-name { grid-row: 1; font-weight: 700; font-size: clamp(14px, calc(1.82 * var(--vw)), 35px); line-height: 1.25; margin: 0; min-height: clamp(36px, calc(4.58 * var(--vw)), 88px); }

.wwd-portfolio-desc { grid-row: 2; margin: 0; }
.wwd-portfolio-shot { grid-row: 3; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 426 / 300; margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px); }
.wwd-portfolio-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wwd-portfolio-code { grid-row: 4; font-size: clamp(12px, calc(1.67 * var(--vw)), 32px); margin: clamp(10px, calc(1.35 * var(--vw)), 26px) 0 0; }

.wwd-portfolio-contact { max-width: 60%; margin-top: clamp(20px, calc(2.4 * var(--vw)), 46px); }
.wwd-portfolio .pill { margin-top: clamp(16px, calc(2.08 * var(--vw)), 40px); }

.wwd-quote { background: var(--yellow); }
.wwd-quote .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }
.wwd-quote .body-50 { max-width: 58.8%; }

.wwd-touch { background: var(--grey-bg); }
.wwd-touch .wrap { --pad-top: clamp(31px, calc(3.75 * var(--vw)), 72px); --pad-bottom: clamp(31px, calc(3.75 * var(--vw)), 72px); }
.wwd-touch .h2-lg { max-width: 78.1%; }
.wwd-touch-pill { margin-top: clamp(20px, calc(2.86 * var(--vw)), 55px); }

@media (max-width: 1200px) {
  .wwd-split,
  .wwd-delivered-grid { grid-template-columns: 1fr; row-gap: clamp(24px, calc(4 * var(--vw)), 48px); }

  .wwd-eagle-split {
    grid-template-columns: 1fr;
    grid-template-areas: "headline" "photo" "tailor" "sensors" "claims";
    row-gap: clamp(18px, calc(3 * var(--vw)), 36px);
  }

  .wwd-eagle-split .wwd-body-gap,
  .wwd-eagle-claims-slot.wwd-body-gap { margin-top: 0; }
}

@media (max-width: 1024px) {
  .wwd-tech-grid,
  .wwd-map-grid,
  .wwd-project-grid,
  .wwd-pie-grid { grid-template-columns: 1fr; row-gap: clamp(24px, calc(4 * var(--vw)), 48px); }
  .wwd-portfolio-grid { grid-template-columns: 1fr 1fr; row-gap: clamp(24px, calc(4 * var(--vw)), 48px); }
  .wwd-measure,
  .wwd-mrv-body,
  .wwd-projects .h2,
  .wwd-mrv-sub,
  .wwd-portfolio-lede,
  .wwd-portfolio-note,
  .wwd-portfolio-contact,
  .wwd-quote .body-50,
  .wwd-touch .h2-lg { max-width: 100%; }
  .wwd-hero-panel,
  .mission-panel { width: calc(100% - 2 * var(--gutter)); }
  .blob-lede-sub { max-width: 100%; }
  .wwd-portfolio-name { min-height: 2.5em; }

  .wwd-tech-grid > div { display: contents; }
  .wwd-tech-grid { row-gap: 0; }
  .wwd-t1 { order: 1; }
  .wwd-t2 { order: 2; }
  .wwd-t3 { order: 3; margin-top: 20px; }
  .wwd-tech-plus { display: none; }
  .wwd-t4 { order: 4; margin-top: 14px; }
  .wwd-t5 { order: 5; margin-top: 36px; }
  .wwd-t6 { order: 6; margin-top: 14px; }
  .wwd-t7 { order: 7; margin-top: 44px; }
  .wwd-t8 { order: 8; }
  .wwd-t9 { order: 9; margin-top: 20px; }
  .wwd-t10 { order: 10; margin-top: 14px; }
  .wwd-tech-col-2 .wwd-tech-panel:first-child { margin-top: 36px; }
}

/* the artboard's column shares describe a three-column desktop page; below the
   desktop breakpoint every block takes the full column instead */
@media (max-width: 1024px) {
  .card-duo,
  .empower-quote,
  .empower-quote-2,
  .leaders-intro,
  .ground-lede,
  .whyus-grid,
  .whyus-notes,
  .quote-band .body-50,
  .principles-intro,
  .fieldnotes-intro,
  .team-intro,
  .joinus-h2,
  .joinus-body,
  .contact-copy { max-width: 100%; }
  .principle-reveal { width: 100%; }
}

@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .whyus .wrap { display: flex; flex-direction: column; }
  .whyus-grid, .whyus-notes { display: contents; }
  .whyus .wrap > .h2 { order: 0; }
  .orange-card--tall { aspect-ratio: 582 / 420; order: 1; margin-top: clamp(28px, calc(2.5 * var(--vw)), 48px); }
  .orange-stack .orange-card { aspect-ratio: 582 / 210; }
  .whyus-notes > :first-child { order: 2; margin-top: clamp(16px, calc(2.92 * var(--vw)), 56px); }
  .orange-stack { order: 3; margin-top: clamp(28px, calc(4 * var(--vw)), 48px); }
  .whyus-notes > :last-child { order: 4; margin-top: clamp(16px, calc(2.92 * var(--vw)), 56px); }
  .whyus .wrap > .pill { order: 5; align-self: flex-start; }
  .adaptive-grid { grid-template-columns: 1fr; row-gap: clamp(24px, calc(4 * var(--vw)), 48px); }
  .adaptive-tiles { grid-template-columns: 1fr; width: min(420px, 88%); margin-inline: auto; }
  .adaptive-tile { aspect-ratio: auto; padding: 6%; }
  .adaptive-tile img, .adaptive-tile:last-child img { position: static; inset: auto; width: 100%; height: auto; }
  .adaptive-tile:first-child img { position: static; inset: auto; width: 56%; height: auto; display: block; margin: 0 auto; }
  .leaders-logos img { height: 30px; }
  .adaptive-kiln { position: static; width: min(420px, 70%); height: auto; margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subscribe-form { margin-top: clamp(24px, calc(6 * var(--vw)), 60px); }
  .footer-social { margin-top: clamp(24px, calc(6 * var(--vw)), 60px); }
  .footer-pattern { margin-top: 8px; }
  .glass-tile--kiln { padding: clamp(20px, calc(3.02 * var(--vw)), 58px); }
  .matters-grid { grid-template-columns: 1fr; }
  .fieldnotes-top { grid-template-columns: 1fr; }
  .note-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-tabs { grid-template-columns: repeat(3, 1fr); }
  .video-panel { aspect-ratio: 16 / 9; }
  .advisor-body { flex-direction: column; }
}

@media (max-width: 620px) {
  .display-br { display: none; }
  .stat-row { grid-template-columns: 1fr; max-width: none; }
  .team-grid { grid-template-columns: 1fr; }
  .card-duo { grid-template-columns: 1fr; max-width: none; }
  .pill-row .pill { width: 100%; }
  .photo-round { aspect-ratio: 4 / 3; }
  .photo-round--quote { aspect-ratio: auto; overflow: visible; border-radius: 0; }
  .photo-round--quote img { aspect-ratio: 4 / 3; height: auto; border-radius: var(--radius-lg); }
  .photo-round--quote .photo-quote { border-radius: var(--radius-lg); }
  .ground-photo { aspect-ratio: 4 / 3; }
  .shot-16--soil, .shot-16--harvest { aspect-ratio: 4 / 3; }
}

/* ---------- carousels ---------- */
.carousel { position: relative; }

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track > * { scroll-snap-align: start; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, calc(1.25 * var(--vw)), 24px);
  margin-top: clamp(18px, calc(2.34 * var(--vw)), 45px);
}

.carousel-dots { display: flex; align-items: center; gap: clamp(8px, calc(.73 * var(--vw)), 14px); }

.carousel-dot {
  width: clamp(10px, calc(.89 * var(--vw)), 17px);
  height: clamp(10px, calc(.89 * var(--vw)), 17px);
  padding: 0;
  border: 0;
  border-radius: clamp(5px, calc(.443 * var(--vw)), 8.5px);
  background: rgba(33, 33, 33, .3);
  cursor: pointer;
  transition: width .2s ease, height .2s ease, background-color .2s ease;
}

.carousel-dot.is-active {
  width: clamp(44px, calc(4.17 * var(--vw)), 80px);
  height: clamp(11px, calc(.99 * var(--vw)), 19px);
  border-radius: clamp(7px, calc(.651 * var(--vw)), 12.5px);
  background: var(--ink);
}

/* news + field-note tracks reuse the artboard's column counts */
.news-carousel .carousel-track {
  grid-auto-columns: calc((100% - clamp(16px, calc(1.98 * var(--vw)), 38px)) / 2);
  gap: clamp(16px, calc(1.98 * var(--vw)), 38px);
  margin-top: clamp(24px, calc(3.96 * var(--vw)), 76px);
}

.note-carousel .carousel-track {
  grid-auto-columns: calc((100% - 2 * clamp(16px, calc(2.5 * var(--vw)), 48px)) / 3);
  gap: clamp(16px, calc(2.5 * var(--vw)), 48px);
  margin-top: clamp(28px, calc(2.45 * var(--vw)), 47px);
}

@media (max-width: 900px) {
  .news-carousel .carousel-track { grid-auto-columns: 100%; }
  .note-carousel .carousel-track { grid-auto-columns: calc((100% - clamp(16px, calc(2.5 * var(--vw)), 48px)) / 2); }
}

@media (max-width: 620px) {
  .note-carousel .carousel-track { grid-auto-columns: 100%; }
}

.wwd-map-dot[data-dot-label] { pointer-events: auto; cursor: pointer; }
.wwd-map .wwd-map-pop { min-width: clamp(200px, calc(16.7 * var(--vw)), 320px); }
.wwd-map.is-popped .wwd-pie-pop { opacity: 1; transform: translateY(0); }
.wwd-map-pop-info { margin: clamp(6px, calc(.63 * var(--vw)), 12px) 0 0; font-size: clamp(11px, calc(.94 * var(--vw)), 18px); line-height: 1.45; }

.wwd-feed { position: relative; }
.band.has-pop > .wrap { z-index: 3; }
.wwd-feed-card { cursor: pointer; }
.wwd-feed.is-popped .wwd-feed-pop { opacity: 1; transform: translateY(0); }


.news-title a { color: inherit; text-decoration: none; }
.news-title a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .orange-stack .orange-card { flex: none; }
}

.card-item figcaption strong { display: block; margin-bottom: clamp(6px, calc(.83 * var(--vw)), 16px); }
.card-item figcaption br { display: none; }

.card-shot .card-mark--wide { width: 30%; }

/* ---------- aug25 round ---------- */
.lede-sub {
  display: block;
  font-weight: 400;
  font-size: clamp(19px, calc(2.6 * var(--vw)), 50px);
  line-height: 1.2;
  margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px);
}

.photo-caption { margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px); }

.matters-shot-cell { align-self: end; }

.team-grid--partners { margin-top: clamp(28px, calc(3.6 * var(--vw)), 70px); }

.wwd-tech-soil-name { margin-top: clamp(28px, calc(4.17 * var(--vw)), 80px); }

.wwd-tech-soil-caption { margin-top: clamp(8px, calc(.83 * var(--vw)), 16px); max-width: 46.4%; }

.wwd-mrv--examples.is-open .wwd-proj-mark::before,
.wwd-mrv--examples.is-open .wwd-proj-mark::after { transform: translate(-50%, -50%) rotate(45deg); }

.wwd-mrv-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.wwd-mrv-panel > .wwd-mrv-examples { overflow: hidden; min-height: 0; }

.wwd-mrv--examples.is-open .wwd-mrv-panel { grid-template-rows: 1fr; }

.wwd-mrv-examples { margin-top: 0; max-width: 82.2%; }

.wwd-mrv-examples p { margin: clamp(14px, calc(1.56 * var(--vw)), 30px) 0 0; }

.wwd-mrv-examples ul {
  margin: clamp(10px, calc(1.04 * var(--vw)), 20px) 0 0;
  padding: 0;
  list-style: none;
}

.wwd-mrv-examples li { position: relative; margin-top: clamp(4px, calc(.42 * var(--vw)), 8px); padding-left: clamp(20px, calc(2.08 * var(--vw)), 40px); }
.wwd-mrv-examples li::before { content: ""; position: absolute; left: .1em; top: .62em; width: .3em; height: .3em; border-radius: 50%; background: currentColor; }

.wwd-proj-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, calc(5 * var(--vw)), 96px);
  align-items: start;
  margin-top: clamp(24px, calc(4.9 * var(--vw)), 94px);
}

.wwd-proj-group + .wwd-proj-group { margin-top: clamp(36px, calc(6.5 * var(--vw)), 125px); }

.wwd-proj-group .wwd-map-dot {
  pointer-events: auto;
  cursor: pointer;
  background: var(--ink);
  border: 2px solid var(--white);
  width: clamp(10px, calc(1.04 * var(--vw)), 20px);
  height: clamp(10px, calc(1.04 * var(--vw)), 20px);
  margin: 0;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.wwd-proj-group .wwd-map-dot.is-active {
  box-shadow: 0 0 0 3px var(--orange);
  transform: scale(1.2);
  z-index: 2;
}

.wwd-proj-group .wwd-map-dot.is-muted { opacity: .3; }

.wwd-proj-entry { border-bottom: 1px solid rgba(33, 33, 33, .24); }

.wwd-proj-entry:first-child { border-top: 1px solid rgba(33, 33, 33, .24); }

.wwd-proj-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, calc(1.56 * var(--vw)), 30px);
  width: 100%;
  padding: clamp(14px, calc(1.56 * var(--vw)), 30px) 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.wwd-proj-title {
  font-weight: 400;
  font-size: clamp(16px, calc(1.82 * var(--vw)), 35px);
  line-height: 1.25;
}

.wwd-proj-entry.is-open .wwd-proj-title { color: var(--orange); font-weight: 600; }

.wwd-proj-mark {
  position: relative;
  flex: none;
  width: clamp(14px, calc(1.15 * var(--vw)), 22px);
  height: clamp(14px, calc(1.15 * var(--vw)), 22px);
}

.wwd-proj-mark::before,
.wwd-proj-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.wwd-proj-mark::before { width: 100%; height: 2px; }

.wwd-proj-mark::after { width: 2px; height: 100%; }

.wwd-proj-entry.is-open .wwd-proj-mark::before { transform: translate(-50%, -50%) rotate(45deg); }

.wwd-proj-entry.is-open .wwd-proj-mark::after { transform: translate(-50%, -50%) rotate(45deg); }

.wwd-proj-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.wwd-proj-panel-inner { overflow: hidden; min-height: 0; }

.wwd-proj-entry.is-open .wwd-proj-panel { grid-template-rows: 1fr; }

.wwd-proj-body { margin: 0 0 clamp(14px, calc(1.56 * var(--vw)), 30px); }

.wwd-proj-links { margin: 0 0 clamp(14px, calc(1.56 * var(--vw)), 30px); }

.wwd-proj-links a { color: var(--ink); text-decoration: underline; text-underline-offset: .18em; }

.wwd-proj-shot { margin: 0 0 clamp(16px, calc(1.82 * var(--vw)), 35px); }

.wwd-proj-shot img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

.wwd-proj-contact { margin-top: clamp(32px, calc(6.51 * var(--vw)), 125px); max-width: 72%; }

.wwd-proj-contact-pill { margin-top: clamp(16px, calc(2.08 * var(--vw)), 40px); }

@media (max-width: 1024px) {
  .wwd-proj-group { grid-template-columns: 1fr; row-gap: clamp(24px, calc(4 * var(--vw)), 48px); }
}

/* ---------- aug26 round ---------- */
.nl-extra { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.subscribe-form { display: block; border-bottom: 0; padding-bottom: 0; }

.subscribe-row {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, calc(1.04 * var(--vw)), 20px);
  border-bottom: 2px solid var(--ink);
  padding-bottom: clamp(8px, calc(.73 * var(--vw)), 14px);
}

.subscribe-row + .subscribe-row { margin-top: clamp(16px, calc(1.56 * var(--vw)), 30px); }

.subscribe-note { margin-top: clamp(10px, calc(1.04 * var(--vw)), 20px); font-size: clamp(15px, calc(1.82 * var(--vw)), 35px); }

/* ---------- aug28 round ---------- */
.blob-lede-sub { position: relative; z-index: 4; max-width: 72%; }

.footer-credit { margin-top: clamp(14px, calc(1.56 * var(--vw)), 30px); font-size: clamp(14px, calc(1.46 * var(--vw)), 28px); color: #6f6f6f; }

.video-modal-frame .video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  background: #000;
}

/* ---------- aug28 evening ---------- */
.wwd-feed-tile:not(.wwd-feed-tile--mark) img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- mobile polish (aug28 late) ---------- */
@media (max-width: 1024px) {
  .blob-lede-sub { max-width: 100%; }
}

@media (max-width: 620px) {
  .team-grid { justify-items: center; }
  .team-grid .member { max-width: 360px; text-align: center; }
  .team-grid .member-photo-wrap { margin-inline: auto; }
  .team-grid .member-name,
  .team-grid .member-role { text-align: center; }
  .advisor-mark { width: 22px; height: 22px; margin-top: -11px; }
  .advisor-mark::before { height: 2px; margin-top: -1px; }
  .advisor-mark::after { width: 2px; margin-left: -1px; }
}


/* admin-chosen section background (Background field on each block) */
.band.band--white { background: var(--white); }
.band.band--grey { background: var(--grey-bg); }
.band.band--yellow { background: var(--yellow); }

/* ---------- next round preview (?next=1) ---------- */
.hero-anim--frame { aspect-ratio: 16 / 9; overflow: visible; transition: opacity .35s ease; }
.hero-anim-clip { position: absolute; left: -100vw; right: -100vw; top: -100vh; bottom: 0; overflow: hidden; pointer-events: none; }
.hero-anim-lottie { position: absolute; left: 0; top: 0; }
.hero-anim-lottie svg { display: block; width: 100% !important; height: 100% !important; overflow: visible; }
.hero-anim-lottie.seam-fix svg path:not([stroke]) { stroke: rgb(255,238,4); stroke-width: 8; stroke-linejoin: round; paint-order: stroke; }
.hero-anim-lottie.round-joins svg path[stroke] { stroke-linejoin: round; }
.hero-lockup.is-fading-in { transition: opacity .3s ease; }
.carb-next .wwd-tech-panel--machinery img { width: 86%; }
.footer-credit--below { margin-top: clamp(18px, calc(1.8 * var(--vw)), 34px); }
.carb-next .wwd-proj-contact--early { margin-bottom: clamp(12px, calc(1.2 * var(--vw)), 22px); }
.carb-next .wwd-proj-contact--early + .wwd-proj-contact-pill { margin-bottom: clamp(36px, calc(4 * var(--vw)), 80px); }
.carb-next .wwd-feed-viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.carb-next .wwd-feed-viewport::-webkit-scrollbar { display: none; }
.carb-next .wwd-feed-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.carb-next .wwd-feed-card { scroll-snap-align: start; user-select: none; -webkit-user-drag: none; }
.carb-next .wwd-feed-card img { -webkit-user-drag: none; pointer-events: none; }
.wwd-pop-graph { grid-column: 1 / -1; color: var(--orange); margin-top: 4px; }
.wwd-pop-graph svg { display: block; width: 100%; height: 56px; }
.wwd-pop-graph-range { display: block; font-size: .85em; color: #6f6f6f; margin-top: 2px; }
.video-panel--live { position: relative; aspect-ratio: auto; overflow: hidden; cursor: default; }
.video-panel--live.is-open { aspect-ratio: 16 / 9; }
.video-panel--live iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

.wwd-proj-labels { display: flex; align-items: center; gap: clamp(10px, calc(1.2 * var(--vw)), 20px); margin-top: clamp(10px, calc(1 * var(--vw)), 18px); }
.wwd-proj-labels img { height: clamp(44px, calc(4 * var(--vw)), 60px); width: auto; display: block; }

/* the intro band is fully composed before the intro jump lands on it */
html.intro-landed.carb-anim .intro .display,
html.intro-landed.carb-anim .intro .lede,
html.intro-landed.carb-anim .intro .pill { opacity: 1 !important; filter: none !important; transition: none !important; }

/* plain pages (privacy policy etc): header sits on its own, large title, content column */
.page-band { background: var(--white); }
.page-band .wrap { --pad-top: calc(var(--nav-top) + var(--nav-h) + clamp(36px, calc(5 * var(--vw)), 96px)); --pad-bottom: clamp(48px, calc(6 * var(--vw)), 120px); }
.page-title { margin-bottom: clamp(20px, calc(2.5 * var(--vw)), 48px); }
.page-content { max-width: 62ch; }
.page-content p { margin: 0 0 1em; }
.page-content h2 { font-size: clamp(22px, calc(2.2 * var(--vw)), 40px); line-height: 1.15; margin: 1.6em 0 .5em; }
.page-content h3 { font-size: clamp(18px, calc(1.6 * var(--vw)), 28px); margin: 1.4em 0 .4em; }
.page-content ul, .page-content ol { margin: 0 0 1em 1.2em; }
.page-content a { text-decoration: underline; text-underline-offset: .12em; }
.page-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: .85em; line-height: 1.4; }
.page-content th, .page-content td { text-align: left; vertical-align: top; padding: .55em .7em .55em 0; border-bottom: 1px solid rgba(33, 33, 33, .24); }
.page-content th { font-weight: 700; }
.page-content .wp-block-table { overflow-x: auto; }
.footer-legal { margin-top: clamp(6px, calc(.6 * var(--vw)), 12px); font-size: clamp(14px, calc(1.46 * var(--vw)), 28px); }
.footer-legal a { color: #6f6f6f; text-decoration: underline; text-underline-offset: .14em; }
.footer-legal a:hover { color: var(--ink); }

/* feed figure: the CO2 figure is longer than the old kg figure; keep it on one line */
.carb-next .wwd-feed-fig { font-size: clamp(16px, calc(1.85 * var(--vw)), 36px); white-space: nowrap; }
@media (max-width: 620px) {
  .wwd-pie-row { flex-direction: column; align-items: flex-start; gap: clamp(14px, calc(4 * var(--vw)), 22px); }
  .wwd-pie { width: min(220px, 64%); }
  .wwd-pie-legend { width: 100%; }
}


/* ================= scroll reveal (carb-anim) ================= */
:root { --ease-settle: cubic-bezier(0.16, 1.08, 0.38, 0.98); }

/* headers, subheaders, images and blocks resolve from a soft blur */
.carb-anim .intro .display,
.carb-anim .empower h2,
.carb-anim .ground .display,
.carb-anim .leaders h2,
.carb-anim .whyus h2,
.carb-anim .news h2,
.carb-anim .wwd-kicker,
.carb-anim .wwd-netzero .h2,
.carb-anim .wwd-delivered .h2,
.carb-anim .wwd-tech .h2,
.carb-anim .wwd-tech-name,
.carb-anim .wwd-eagle-headline,
.carb-anim .wwd-diagram-heading,
.carb-anim .wwd-mrv-title,
.carb-anim .wwd-mrv-sub,
.carb-anim .wwd-projects .h2,
.carb-anim .wwd-touch .h2-lg,
.carb-anim .matters .h2-lg,
.carb-anim .principles h2,
.carb-anim .fieldnotes .h2,
.carb-anim .team h2,
.carb-anim .team-video .h2,
.carb-anim .advisors .h2,
.carb-anim .joinus-h2,
.carb-anim .contact h2,
.carb-anim .card-item,
.carb-anim .news-card,
.carb-anim .stat,
.carb-anim .wwd-tech-panel,
.carb-anim .member,
.carb-anim .principle-tab,
.carb-anim .note-card,
.carb-anim .matters-grid > div,
.carb-anim .wwd-symbol-slot,
.carb-anim .wwd-feedstock-head,
.carb-anim .team-blob,
.carb-anim .photo-round,
.carb-anim .ground-photo,
.carb-anim .shot-24,
.carb-anim .shot-16,
.carb-anim .wwd-eagle-photo-card,
.carb-anim .wwd-map,
.carb-anim .adaptive-tile,
.carb-anim .matters-shot-cell,
.carb-anim .about-hero .mission-panel,
.carb-anim .wwd-hero-panel,
.carb-anim .wwd-diagram,
.carb-anim .footer-pattern img {
  opacity: 0;
  filter: blur(14px);
  transition:
    opacity 900ms var(--ease-settle) var(--carb-delay, 0ms),
    filter 1080ms var(--ease-settle) var(--carb-delay, 0ms);
  will-change: opacity, filter;
}
.carb-anim .intro .display.carb-in,
.carb-anim .empower h2.carb-in,
.carb-anim .ground .display.carb-in,
.carb-anim .leaders h2.carb-in,
.carb-anim .whyus h2.carb-in,
.carb-anim .news h2.carb-in,
.carb-anim .wwd-kicker.carb-in,
.carb-anim .wwd-netzero .h2.carb-in,
.carb-anim .wwd-delivered .h2.carb-in,
.carb-anim .wwd-tech .h2.carb-in,
.carb-anim .wwd-tech-name.carb-in,
.carb-anim .wwd-eagle-headline.carb-in,
.carb-anim .wwd-diagram-heading.carb-in,
.carb-anim .wwd-mrv-title.carb-in,
.carb-anim .wwd-mrv-sub.carb-in,
.carb-anim .wwd-projects .h2.carb-in,
.carb-anim .wwd-touch .h2-lg.carb-in,
.carb-anim .matters .h2-lg.carb-in,
.carb-anim .principles h2.carb-in,
.carb-anim .fieldnotes .h2.carb-in,
.carb-anim .team h2.carb-in,
.carb-anim .team-video .h2.carb-in,
.carb-anim .advisors .h2.carb-in,
.carb-anim .joinus-h2.carb-in,
.carb-anim .contact h2.carb-in,
.carb-anim .card-item.carb-in,
.carb-anim .news-card.carb-in,
.carb-anim .stat.carb-in,
.carb-anim .wwd-tech-panel.carb-in,
.carb-anim .member.carb-in,
.carb-anim .principle-tab.carb-in,
.carb-anim .note-card.carb-in,
.carb-anim .matters-grid > div.carb-in,
.carb-anim .wwd-symbol-slot.carb-in,
.carb-anim .wwd-feedstock-head.carb-in,
.carb-anim .team-blob.carb-in,
.carb-anim .photo-round.carb-in,
.carb-anim .ground-photo.carb-in,
.carb-anim .shot-24.carb-in,
.carb-anim .shot-16.carb-in,
.carb-anim .wwd-eagle-photo-card.carb-in,
.carb-anim .wwd-map.carb-in,
.carb-anim .adaptive-tile.carb-in,
.carb-anim .matters-shot-cell.carb-in,
.carb-anim .about-hero .mission-panel.carb-in,
.carb-anim .wwd-hero-panel.carb-in,
.carb-anim .wwd-diagram.carb-in,
.carb-anim .footer-pattern img.carb-in { opacity: 1; filter: blur(0); }

/* body text and buttons simply fade */
.carb-anim .intro .lede,
.carb-anim .empower-quote,
.carb-anim .ground-lede,
.carb-anim .leaders-intro,
.carb-anim .team-intro,
.carb-anim .wwd-netzero .body-50,
.carb-anim .wwd-delivered .body-50,
.carb-anim .wwd-tech-caption,
.carb-anim .wwd-eagle-tailor,
.carb-anim .wwd-eagle-sensors,
.carb-anim .wwd-feedstock-cue,
.carb-anim .wwd-mrv-body,
.carb-anim .wwd-proj-contact,
.carb-anim .contact-lead,
.carb-anim .joinus-body,
.carb-anim .quote-band .body-50,
.carb-anim .wwd-claims p,
.carb-anim .whyus-note,
.carb-anim .note-lead,
.carb-anim .pill:not(.ninja-forms-field),
.carb-anim .leaders-logos img {
  opacity: 0;
  transition: opacity 820ms var(--ease-settle) var(--carb-delay, 0ms);
  will-change: opacity;
}
.carb-anim .intro .lede.carb-in,
.carb-anim .empower-quote.carb-in,
.carb-anim .ground-lede.carb-in,
.carb-anim .leaders-intro.carb-in,
.carb-anim .team-intro.carb-in,
.carb-anim .wwd-netzero .body-50.carb-in,
.carb-anim .wwd-delivered .body-50.carb-in,
.carb-anim .wwd-tech-caption.carb-in,
.carb-anim .wwd-eagle-tailor.carb-in,
.carb-anim .wwd-eagle-sensors.carb-in,
.carb-anim .wwd-feedstock-cue.carb-in,
.carb-anim .wwd-mrv-body.carb-in,
.carb-anim .wwd-proj-contact.carb-in,
.carb-anim .contact-lead.carb-in,
.carb-anim .joinus-body.carb-in,
.carb-anim .quote-band .body-50.carb-in,
.carb-anim .wwd-claims p.carb-in,
.carb-anim .whyus-note.carb-in,
.carb-anim .note-lead.carb-in,
.carb-anim .pill:not(.ninja-forms-field).carb-in,
.carb-anim .leaders-logos img.carb-in { opacity: 1; }

/* claim lines fire in a quick sequence */
.carb-anim .wwd-claims p { transition-duration: 450ms; }

/* accordion rows fade in sequence with a small rise */
.carb-anim .faq-row,
.carb-anim .wwd-delivered-row,
.carb-anim .wwd-proj-entry,
.carb-anim .advisor {
  opacity: 0;
  translate: 0 14px;
  transition:
    opacity 720ms var(--ease-settle) var(--carb-delay, 0ms),
    translate 720ms var(--ease-settle) var(--carb-delay, 0ms);
  will-change: opacity, translate;
  filter: none;
}
.carb-anim .faq-row.carb-in,
.carb-anim .wwd-delivered-row.carb-in,
.carb-anim .wwd-proj-entry.carb-in,
.carb-anim .advisor.carb-in { opacity: 1; translate: none; }

.carb-anim .wwd-pie.carb-pie-pre { opacity: 0; filter: blur(12px); }
.carb-anim .wwd-pie.carb-pie-in {
  opacity: 1; filter: blur(0);
  transition: opacity .9s var(--ease-settle), filter 1.05s var(--ease-settle);
}

@media (prefers-reduced-motion: reduce) {
.carb-anim .intro .display,
.carb-anim .empower h2,
.carb-anim .ground .display,
.carb-anim .leaders h2,
.carb-anim .whyus h2,
.carb-anim .news h2,
.carb-anim .wwd-kicker,
.carb-anim .wwd-netzero .h2,
.carb-anim .wwd-delivered .h2,
.carb-anim .wwd-tech .h2,
.carb-anim .wwd-tech-name,
.carb-anim .wwd-eagle-headline,
.carb-anim .wwd-diagram-heading,
.carb-anim .wwd-mrv-title,
.carb-anim .wwd-mrv-sub,
.carb-anim .wwd-projects .h2,
.carb-anim .wwd-touch .h2-lg,
.carb-anim .matters .h2-lg,
.carb-anim .principles h2,
.carb-anim .fieldnotes .h2,
.carb-anim .team h2,
.carb-anim .team-video .h2,
.carb-anim .advisors .h2,
.carb-anim .joinus-h2,
.carb-anim .contact h2,
.carb-anim .card-item,
.carb-anim .news-card,
.carb-anim .stat,
.carb-anim .wwd-tech-panel,
.carb-anim .member,
.carb-anim .principle-tab,
.carb-anim .note-card,
.carb-anim .matters-grid > div,
.carb-anim .wwd-symbol-slot,
.carb-anim .wwd-feedstock-head,
.carb-anim .team-blob,
.carb-anim .photo-round,
.carb-anim .ground-photo,
.carb-anim .shot-24,
.carb-anim .shot-16,
.carb-anim .wwd-eagle-photo-card,
.carb-anim .wwd-map,
.carb-anim .adaptive-tile,
.carb-anim .matters-shot-cell,
.carb-anim .about-hero .mission-panel,
.carb-anim .wwd-hero-panel,
.carb-anim .wwd-diagram,
.carb-anim .footer-pattern img,
.carb-anim .intro .lede,
.carb-anim .empower-quote,
.carb-anim .ground-lede,
.carb-anim .leaders-intro,
.carb-anim .team-intro,
.carb-anim .wwd-netzero .body-50,
.carb-anim .wwd-delivered .body-50,
.carb-anim .wwd-tech-caption,
.carb-anim .wwd-eagle-tailor,
.carb-anim .wwd-eagle-sensors,
.carb-anim .wwd-feedstock-cue,
.carb-anim .wwd-mrv-body,
.carb-anim .wwd-proj-contact,
.carb-anim .contact-lead,
.carb-anim .joinus-body,
.carb-anim .quote-band .body-50,
.carb-anim .wwd-claims p,
.carb-anim .whyus-note,
.carb-anim .note-lead,
.carb-anim .pill:not(.ninja-forms-field),
.carb-anim .leaders-logos img,
.carb-anim .faq-row,
.carb-anim .wwd-delivered-row,
.carb-anim .wwd-proj-entry,
.carb-anim .advisor { opacity: 1 !important; filter: none !important; translate: none !important; transition: none !important; }
  .carb-anim .wwd-pie.carb-pie-pre { opacity: 1 !important; filter: none !important; }
}
