@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-950: #061f78;
  --blue-900: #082987;
  --blue-700: #006eb6;
  --cyan: #00a5d8;
  --teal: #006eb6;
  --ink: #06206e;
  --muted: #325388;
  --soft: #f3f9ff;
  --soft-2: #edf6ff;
  --line: #dceaf7;
  --white: #ffffff;
  --shadow: 0 16px 44px rgba(20, 76, 126, 0.12);
  --radius: 8px;
  --max: 1760px;
  --page-gutter: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.section-pad {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.hero {
  padding:
    clamp(28px, 3.2vw, 50px)
    max(46px, calc((100vw - 1560px) / 2 + 46px))
    clamp(42px, 5vw, 68px);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(780px 520px at 76% 44%, rgba(0, 103, 190, 0.36), rgba(0, 103, 190, 0) 68%),
    radial-gradient(640px 420px at 20% 10%, rgba(0, 165, 216, 0.18), rgba(0, 165, 216, 0) 72%),
    linear-gradient(135deg, #020a1c 0, #061a48 48%, #020817 100%);
}

.hero.section-pad {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 165, 216, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 165, 216, 0.07) 1px, transparent 1px),
    radial-gradient(780px 280px at 58% 100%, rgba(0, 165, 216, 0.16), rgba(0, 165, 216, 0));
  background-size: 42px 42px;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(2, 16, 45, 0.58) 76%, rgba(2, 8, 23, 0.82) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(72vw, 1040px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-logo-panel {
  position: relative;
  width: min(100%, clamp(600px, 53vw, 800px));
  margin: 0 0 clamp(34px, 5.6vh, 62px);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 10, 28, 0.98), rgba(4, 20, 50, 0.94));
  box-shadow: 0 0 30px rgba(0, 165, 216, 0.12);
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(0, 165, 216, 0.28));
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--white);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-subline {
  width: min(720px, 100%);
  margin: clamp(22px, 3vh, 34px) 0 clamp(28px, 4vh, 40px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.proof-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 34px;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
}

.icon-mask::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 7px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #00a5d8, #006eb6);
  box-shadow: 0 14px 30px rgba(0, 165, 216, 0.22);
}

.button-small {
  color: var(--white);
  background: linear-gradient(135deg, #00a5d8, #006eb6);
  box-shadow: 0 14px 30px rgba(0, 165, 216, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(0, 165, 216, 0.34);
}

.button-small:hover {
  box-shadow: 0 18px 34px rgba(0, 165, 216, 0.34);
}

.button-small {
  min-height: 32px;
  padding: 0 15px;
  font-size: 0.74rem;
}

.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .button {
  min-height: 56px;
  padding: 0 28px;
  border-color: rgba(168, 221, 248, 0.78);
  border-radius: 8px;
}

.hero .button-primary {
  background: linear-gradient(135deg, rgba(0, 165, 216, 0.94), rgba(0, 92, 160, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 165, 216, 0.16);
}

.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #020a1c 0, rgba(5, 18, 48, 0.98) 39%, rgba(5, 18, 48, 0.42) 58%, rgba(5, 18, 48, 0.04) 76%, rgba(5, 18, 48, 0) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.34) 0, rgba(2, 8, 23, 0) 42%, rgba(2, 8, 23, 0.42) 100%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(2, 13, 37, 0.74) 78%, #020817 100%);
  pointer-events: none;
}

.plant {
  position: absolute;
  right: -2px;
  bottom: -118px;
  width: clamp(760px, 54vw, 980px);
  max-width: none;
  z-index: 1;
  opacity: 0.98;
  filter: saturate(1) contrast(1) brightness(1);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.82) 10%, #000 26%, #000 100%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.44) 7%, #000 18%, #000 88%, rgba(0, 0, 0, 0.8) 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.82) 10%, #000 26%, #000 100%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.44) 7%, #000 18%, #000 88%, rgba(0, 0, 0, 0.8) 96%, transparent 100%);
  mask-composite: intersect;
}

.hero-caption {
  position: absolute;
  right: max(26px, calc((100vw - 1560px) / 2 + 36px));
  bottom: 18px;
  z-index: 4;
  max-width: 260px;
  margin: 0;
  line-height: 1.25;
  font-weight: 600;
  text-align: right;
}

.conversion-card {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  border-radius: 0;
}

.materials {
  border-radius: 0;
}

.scale {
  margin: 0 auto;
  border-radius: 0;
}

.conversion-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.conversion-card::before {
  inset: -24px 0 -18px;
}

.section-label {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
}

.check-list li {
  position: relative;
}

.check-list li {
  padding-left: 21px;
}

.icon-list li {
  display: flex;
  align-items: center;
  color: var(--blue-950);
}

.input-icon {
  flex: 0 0 22px;
  color: var(--blue-700);
}

.output-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  align-items: end;
}

.output-grid figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.output-grid img {
  object-fit: contain;
}

.output-grid figure:nth-child(2) img {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0, 0, 0, 0.82) 75%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0, 0, 0, 0.82) 75%, transparent 100%);
}

.output-grid figcaption {
  color: var(--blue-950);
  font-weight: 700;
  text-align: center;
}

.section-heading {
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--blue-900);
}

.lead {
  margin: 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  backdrop-filter: none;
}

.partner-card {
  backdrop-filter: none;
}

.info-card h3 {
  margin: 0;
}

.partner-card h3 {
  margin: 0;
}

.info-card p {
  margin: 8px 0 0;
}

.line-icon {
  display: grid;
  place-items: center;
}

.process-strip {
  position: relative;
}

.process-strip::before {
  content: "";
  position: absolute;
  inset: -12px 0 -6px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.42), rgba(237, 246, 255, 0.14) 62%, rgba(237, 246, 255, 0) 84%);
  pointer-events: none;
}

.process-strip h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.process-strip ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.process-strip li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
  justify-items: center;
  color: var(--blue-950);
  text-align: center;
  line-height: 1.2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.process-strip li:not(:last-child)::after {
  content: "→";
  position: absolute;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.process-strip strong {
  display: block;
}

.materials {
  margin-top: 28px;
  display: grid;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.materials::before {
  inset: -22px 0 -18px;
}

.materials-copy {
  position: relative;
  z-index: 2;
}

.materials h2 {
  margin: 0 0 6px;
  color: var(--blue-900);
}

.materials p:not(.section-label) {
  margin: 0 0 10px;
}

.materials-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.materials-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0, rgba(255, 255, 255, 0.32) 8%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 88%, rgba(255, 255, 255, 0.22) 100%);
  pointer-events: none;
}

.materials-visual img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(0.96);
}

.materials-visual img:nth-child(2) {
  object-position: 43% center;
}

.materials-visual img:nth-child(3) {
  object-position: center;
}

.scale {
  width: 100%;
  max-width: none;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
}

.scale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
}

.scale::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scale-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.trl-track {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.scale-proof {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.pilot-panel {
  min-width: 0;
}

.scale h2 {
  margin: 0 0 10px;
  color: var(--white);
  line-height: 1.14;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
  font-weight: 900;
}

.scale .check-list {
  color: rgba(255, 255, 255, 0.94);
}

.trl-track {
  display: grid;
  padding-left: 26px;
}

.trl-track::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 8px;
  width: 2px;
  background: rgba(90, 209, 242, 0.72);
}

.trl-track div {
  position: relative;
}

.trl-track div::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 165, 216, 0.14);
}

.trl-track span {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.trl-track p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.scale-proof {
  display: grid;
  gap: 8px;
  align-content: center;
}

.zim {
  display: grid;
  place-items: center;
  padding: 6px 8px;
  color: var(--blue-950);
  border: 1px solid rgba(255, 255, 255, 0.52);
  text-align: center;
  box-shadow: 0 12px 22px rgba(0, 35, 85, 0.18);
}

.funding-logo {
  display: grid;
  place-items: center;
  color: var(--blue-950);
  border: 1px solid rgba(255, 255, 255, 0.52);
  text-align: center;
  box-shadow: 0 12px 22px rgba(0, 35, 85, 0.18);
}

.zim {
  background: var(--white);
}

.zim img {
  object-fit: contain;
}

.funding-logo {
  overflow: hidden;
  padding: 0;
  background: #203a72;
  border-color: rgba(255, 255, 255, 0.62);
}

.funding-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 44%;
}

.pilot-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.pilot-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 95, 150, 0.86) 0, rgba(0, 95, 150, 0.58) 44%, rgba(0, 95, 150, 0.08) 74%, rgba(0, 95, 150, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 95, 150, 0.12), rgba(0, 95, 150, 0.24));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0, #000 14%, #000 86%, rgba(0, 0, 0, 0.34) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0, #000 14%, #000 86%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.pilot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.partner-card h3 span {
  display: block;
  line-height: 1.25;
}

.partner-card img {
  width: 100%;
  object-fit: cover;
}

.compact li {
  color: var(--blue-950);
  line-height: 1.32;
}

.modal-open {
  overflow: hidden;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

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

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 25, 45, 0.6);
  backdrop-filter: blur(7px);
}

.request-modal {
  position: relative;
  width: min(100%, 616px);
  max-height: min(94vh, 720px);
  overflow: auto;
  padding: 24px 34px 24px;
  color: #14284f;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(215, 225, 237, 0.92);
  border-radius: 7px;
  box-shadow: 0 32px 90px rgba(0, 20, 46, 0.34);
}

.request-modal-wide {
  width: min(100%, 656px);
}

.privacy-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(760px, calc(100vw - 32px));
  max-height: min(82vh, 700px);
  max-height: min(82dvh, 700px);
  padding: 28px 36px 30px;
  transform: translate(-50%, -50%);
}

.modal-layer.is-stacked .request-modal:not(.privacy-modal) {
  pointer-events: none;
  opacity: 0.18;
  transform: scale(0.985);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #54627a;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--blue-950);
  background: #edf4fb;
  outline: none;
}

.modal-close:focus-visible {
  color: var(--blue-950);
  background: #edf4fb;
  outline: none;
}

.modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.request-modal h2 {
  margin: 0 42px 7px 0;
  color: #1a2e59;
}

.privacy-modal .section-label {
  margin: 0 42px 8px 0;
}

.privacy-modal h2 {
  margin-bottom: 18px;
}

.privacy-modal-body {
  display: grid;
  gap: 16px;
  padding-right: 6px;
}

.privacy-modal-body section {
  display: grid;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(199, 215, 232, 0.72);
}

.privacy-modal-body section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-modal-body h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.privacy-modal-body p {
  margin: 0;
  color: #34415c;
  font-size: 0.92rem;
  line-height: 1.58;
  font-weight: 500;
}

.privacy-modal-body a {
  color: var(--blue-700);
  font-weight: 750;
}

.privacy-modal-actions {
  position: sticky;
  bottom: 8px;
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding: 16px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98) 34%);
}

.privacy-modal-actions .button {
  min-width: min(100%, 220px);
  min-height: 42px;
  border-radius: 5px;
}

.modal-intro {
  margin: 0 0 17px;
  color: #34415c;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 650;
}

.request-form {
  display: grid;
  gap: 12px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  align-items: start;
}

.request-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.request-form label > span:first-child {
  color: #2c3b5d;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
}

.upload-field > span:first-child {
  color: #2c3b5d;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
}

.request-form em {
  color: #d04451;
  font-style: normal;
}

.request-form input {
  width: 100%;
  min-height: 37px;
  padding: 8px 11px;
  color: #172b55;
  background: #fff;
  border: 1px solid #d6e0eb;
  border-radius: 5px;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 1px 0 rgba(25, 55, 100, 0.03);
}

.request-form select {
  width: 100%;
  min-height: 37px;
  padding: 8px 11px;
  color: #172b55;
  background: #fff;
  border: 1px solid #d6e0eb;
  border-radius: 5px;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 1px 0 rgba(25, 55, 100, 0.03);
}

.request-form textarea {
  width: 100%;
  padding: 8px 11px;
  color: #172b55;
  background: #fff;
  border: 1px solid #d6e0eb;
  border-radius: 5px;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 1px 0 rgba(25, 55, 100, 0.03);
}

.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c7890 50%),
    linear-gradient(135deg, #6c7890 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.request-form textarea {
  min-height: 78px;
  resize: vertical;
}

.request-form input:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(0, 111, 182, 0.14);
}

.request-form select:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(0, 111, 182, 0.14);
}

.request-form textarea:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(0, 111, 182, 0.14);
}

.field-wide {
  grid-column: 1 / -1;
}

.upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.upload-box {
  min-height: 68px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 12px;
  color: #24395f;
  text-align: center;
  border: 1px dashed #b7c6d8;
  border-radius: 6px;
  cursor: pointer;
}

.upload-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.upload-box strong {
  font-size: 0.8rem;
}

.upload-box small {
  color: #54627a;
  font-size: 0.74rem;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #24395f;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 600;
}

.consent-row input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--blue-700);
}

.consent-row a {
  color: var(--blue-700);
  font-weight: 700;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 18px;
  padding-top: 4px;
}

.button-cancel {
  min-height: 42px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.button-submit {
  min-height: 42px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.button-cancel {
  color: #26385c;
  background: #fff;
  border-color: #cfdce9;
  box-shadow: none;
}

.button-submit {
  color: #fff;
  background: linear-gradient(135deg, #00a5d8, #006eb6);
  box-shadow: 0 10px 22px rgba(0, 110, 182, 0.2);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.privacy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 4px 0 0;
  color: #53627c;
  font-size: 0.72rem;
  line-height: 1.4;
}

.privacy-note span {
  color: #203553;
  font-size: 0.9rem;
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  color: #075366;
  background: #e7f8fb;
  border: 1px solid #bfe7ef;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  color: #8f1c2a;
  background: #fff2f4;
  border: 1px solid #f1c2ca;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .button {
    transition: none;
  }

  .reveal {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .scale {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 0.8fr;
    padding: 22px;
  }

  .scale-proof {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(120px, 180px));
  }

  .pilot-panel {
    inset: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .pilot-panel::before {
    background:
      linear-gradient(90deg, rgba(0, 95, 150, 0.86) 0, rgba(0, 95, 150, 0.58) 44%, rgba(0, 95, 150, 0.08) 74%, rgba(0, 95, 150, 0.14) 100%),
      linear-gradient(180deg, rgba(0, 95, 150, 0.12), rgba(0, 95, 150, 0.24));
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-copy {
    width: min(64vw, 680px);
  }

  .hero-logo-panel {
    width: min(100%, 560px);
    margin-bottom: clamp(30px, 4vh, 42px);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  }

  .hero-subline {
    width: min(100%, 620px);
  }

  .plant {
    right: -220px;
    opacity: 0.86;
  }
}

@media (max-width: 980px) {
  .conversion-card {
    width: min(100% - 32px, var(--max));
  }

  .materials {
    width: min(100% - 32px, var(--max));
  }

  .scale {
    width: 100%;
  }

  .hero {
    min-height: clamp(650px, 86svh, 760px);
    padding: 24px 26px 34px;
  }

  .hero.section-pad {
    width: 100%;
  }

  .hero-copy {
    width: min(68vw, 620px);
    padding-top: 0;
  }

  .hero-logo-panel {
    width: min(100%, 520px);
    margin-bottom: clamp(28px, 4vh, 42px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    line-height: 1.16;
  }

  .hero-subline {
    width: min(100%, 560px);
    font-size: clamp(1rem, 2.4vw, 1.16rem);
  }

  .proof-row {
    max-width: 560px;
    flex-wrap: wrap;
    gap: 16px 0;
  }

  .proof-item {
    flex: 1 1 190px;
    min-width: 0;
    max-width: none;
    padding: 0 22px;
  }

  .proof-item:first-child {
    padding-left: 0;
  }

  .hero-visual {
    min-height: 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-visual::before {
    background:
      linear-gradient(90deg, #020a1c 0, rgba(5, 18, 48, 0.98) 46%, rgba(5, 18, 48, 0.62) 66%, rgba(5, 18, 48, 0.14) 100%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.22) 0, rgba(2, 8, 23, 0.08) 42%, rgba(2, 8, 23, 0.54) 100%);
  }

  .plant {
    right: -430px;
    bottom: -86px;
    width: min(860px, 96vw);
    opacity: 0.68;
  }

  .conversion-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .conversion-card h2 {
    max-width: 620px;
  }

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

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

  .request-modal {
    width: min(100%, 640px);
  }

  .request-modal-wide {
    width: min(100%, 640px);
  }

  .process-strip ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
  }

  .process-strip li:not(:last-child)::after {
    display: none;
  }

  .scale {
    grid-template-columns: 1fr 0.8fr;
  }

  .scale-proof {
    grid-template-columns: repeat(2, minmax(120px, 180px));
  }
}

@media (min-width: 661px) and (max-width: 820px) {
  .plant {
    bottom: 48px;
  }
}

@media (max-width: 660px) {
  .hero {
    min-height: 740px;
    padding: 18px 20px 28px;
  }

  .hero-copy {
    width: 100%;
    justify-content: flex-start;
    padding-top: 6px;
  }

  .hero-logo-panel {
    width: 100%;
    margin-bottom: 30px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.58rem, 7vw, 1.92rem);
    line-height: 1.16;
  }

  .hero-subline {
    margin: 20px 0 22px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .lead {
    font-size: 1rem;
  }

  .proof-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .proof-item {
    width: 100%;
    max-width: none;
    padding: 0;
    border-left: 0;
    font-size: 0.9rem;
  }

  .proof-icon {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-visual {
    min-height: 0;
    overflow: hidden;
  }

  .hero-visual::before {
    background:
      linear-gradient(90deg, #020a1c 0, rgba(5, 18, 48, 0.98) 54%, rgba(5, 18, 48, 0.66) 78%, rgba(5, 18, 48, 0.18) 100%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.18) 0, rgba(2, 8, 23, 0.04) 42%, rgba(2, 8, 23, 0.64) 100%);
  }

  .plant {
    right: -300px;
    bottom: -42px;
    width: 680px;
    opacity: 0.52;
  }

  .hero-caption {
    right: 16px;
    bottom: 12px;
    max-width: 180px;
    font-size: 0.6rem;
  }

  .conversion-card {
    width: min(100% - 24px, var(--max));
  }

  .materials {
    width: min(100% - 24px, var(--max));
  }

  .scale {
    width: 100%;
  }

  .conversion-card {
    padding: 22px;
  }

  .conversion-card h2 {
    font-size: 1.55rem;
  }

  .output-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .output-grid img {
    max-height: 66px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .process-strip {
    padding: 20px;
  }

  .process-strip h3 {
    text-align: left;
  }

  .process-strip ol {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-strip li {
    grid-template-columns: auto 1fr;
    min-height: 54px;
    align-items: center;
    justify-items: start;
    gap: 12px;
    text-align: left;
  }

  .process-strip strong {
    max-width: none;
  }

  .materials {
    height: auto;
    grid-template-columns: 1fr;
  }

  .materials-copy {
    padding: 22px;
  }

  .materials-visual {
    height: 188px;
    min-height: 188px;
  }

  .materials-visual img {
    height: 188px;
    min-height: 188px;
  }

  .scale {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .scale-proof {
    grid-template-columns: 1fr;
  }

  .pilot-panel {
    min-height: 100%;
    margin: 0;
  }

  .partner-card img {
    height: 138px;
  }

  .modal-layer {
    align-items: end;
    padding: 12px;
  }

  .request-modal {
    max-height: calc(100vh - 24px);
    padding: 24px 20px 22px;
    border-radius: 8px;
  }

  .request-modal-wide {
    max-height: calc(100vh - 24px);
    padding: 24px 20px 22px;
    border-radius: 8px;
  }

  .privacy-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
  }

  .privacy-modal-actions {
    justify-content: stretch;
  }

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

  .form-actions {
    grid-template-columns: 1fr;
  }

  .request-modal h2 {
    font-size: 1.22rem;
  }
}

:root {
  --band-white: #ffffff;
  --band-ice: #f4f9ff;
  --band-blue: #eaf5ff;
  --band-sky: #f0f8ff;
  --section-space: clamp(72px, 8vw, 118px);
}

body {
  background: linear-gradient(180deg, #ffffff 0, #f5faff 42%, #edf7ff 100%);
}

.hero {
  min-height: clamp(700px, 92svh, 900px);
}

.hero-logo-panel {
  margin-bottom: clamp(36px, 5.8vh, 66px);
}

.hero-subline {
  max-width: 790px;
}

.proof-row {
  gap: 24px;
}

.proof-item {
  min-width: 190px;
  padding: 0 26px 0 0;
  border-left: 0;
  border-right: 1px solid rgba(168, 221, 248, 0.24);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-icon img {
  display: block;
}

.hero-actions {
  margin-top: 4px;
}

.hero-caption {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.conversion-card {
  position: relative;
  isolation: isolate;
}

.problem {
  position: relative;
  isolation: isolate;
}

.why-now {
  position: relative;
  isolation: isolate;
}

.platform {
  position: relative;
  isolation: isolate;
}

.materials {
  position: relative;
  isolation: isolate;
}

.team {
  position: relative;
  isolation: isolate;
}

.partners {
  position: relative;
  isolation: isolate;
}

.conversion-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.problem::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.why-now::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.platform::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.materials::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.team::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.partners::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.conversion-card {
  margin: 0 auto;
  gap: clamp(32px, 4vw, 64px);
}

.conversion-card::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(780px 260px at 78% 50%, rgba(0, 165, 216, 0.08), rgba(0, 165, 216, 0)),
    var(--band-white);
}

.conversion-card h2 {
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.team-copy h2 {
  letter-spacing: 0;
}

.conversion-card h2 {
  text-transform: none;
}

.section-label {
  margin-bottom: 16px;
  color: var(--blue-700);
  letter-spacing: 0.04em;
  font-weight: 800;
}

.conversion-list .section-label {
  letter-spacing: 0;
  text-transform: uppercase;
}

.outputs .section-label {
  letter-spacing: 0;
  text-transform: uppercase;
}

.icon-list li {
  gap: 13px;
  font-size: var(--body-copy);
  font-weight: 650;
}

.icon-list li + li {
  margin-top: 13px;
}

.input-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.output-grid {
  gap: clamp(18px, 2vw, 30px);
}

.output-grid img {
  max-height: 104px;
}

.problem {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.why-now {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.platform {
  padding-top: var(--section-space);
}

.team {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.problem::before {
  background: var(--band-blue);
}

.problem {
  width: min(1760px, calc(100% - 32px));
}

.why-now::before {
  background: var(--band-white);
}

.team::before {
  background: var(--band-white);
}

.partners::before {
  background: var(--band-sky);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: clamp(34px, 4vw, 56px);
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading h2 span {
  color: var(--blue-700);
}

.lead {
  color: var(--muted);
  font-weight: 520;
}

.insight-grid {
  gap: clamp(22px, 2.4vw, 34px);
  margin-bottom: 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(198, 224, 246, 0.74);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(6, 31, 120, 0.06);
}

.partner-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(198, 224, 246, 0.74);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(6, 31, 120, 0.06);
}

.info-card {
  min-height: 230px;
  padding: clamp(26px, 2.8vw, 38px);
}

.info-card h3 {
  color: var(--blue-950);
  line-height: 1.32;
  font-weight: 760;
}

.partner-card h3 {
  color: var(--blue-950);
  line-height: 1.32;
  font-weight: 760;
}

.info-card p {
  color: var(--muted);
  line-height: 1.58;
}

.team-copy p:not(.lead) {
  color: var(--muted);
  font-size: var(--body-copy);
  line-height: 1.58;
}

.platform-note {
  font-size: var(--body-copy);
  line-height: 1.58;
}

.partner-card li {
  color: var(--muted);
  line-height: 1.58;
}

.info-card p {
  margin-top: 14px;
}

.line-icon {
  width: clamp(72px, 5.6vw, 88px);
  height: clamp(72px, 5.6vw, 88px);
  margin-bottom: 22px;
  color: var(--blue-700);
}

.why-grid .info-card {
  min-height: 220px;
  border-top: 4px solid rgba(0, 110, 182, 0.55);
}

.why-grid .info-card h3 {
  color: var(--blue-900);
}

.problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
}

.problem-grid .info-card {
  display: grid;
  grid-template-columns: minmax(132px, 34%) minmax(0, 1fr);
  column-gap: clamp(18px, 1.8vw, 28px);
  align-items: center;
  min-height: 0;
  padding: clamp(22px, 2vw, 30px);
}

.problem-grid .line-icon {
  width: 100%;
  max-width: 178px;
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue-900);
  justify-self: center;
  align-self: center;
}

.problem-grid .line-icon::before {
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  transform-origin: center;
}

.problem-grid .info-card-copy {
  grid-column: 2;
  align-self: center;
}

.problem-grid .info-card h3 {
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
  line-height: 1.24;
}

.problem-grid .info-card p {
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  line-height: 1.45;
}

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

  .problem-grid .info-card {
    grid-template-columns: clamp(112px, 16vw, 150px) minmax(0, 1fr);
    min-height: 0;
  }

  .problem-grid .line-icon {
    width: clamp(112px, 16vw, 150px);
  }
}

@media (max-width: 560px) {
  .problem-grid .info-card {
    grid-template-columns: 1fr;
    row-gap: clamp(24px, 7vw, 34px);
  }

  .problem-grid .line-icon {
    grid-column: 1;
  }

  .problem-grid .info-card-copy {
    grid-column: 1;
  }

  .problem-grid .line-icon {
    width: 118px;
  }
}

.process-strip {
  padding: clamp(26px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(198, 224, 246, 0.74);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 31, 120, 0.06);
}

.process-strip::before {
  display: none;
}

.process-strip ol {
  gap: clamp(28px, 4vw, 68px);
}

.process-strip li {
  min-height: 132px;
  gap: 16px;
  font-size: 0.98rem;
  padding: 0;
}

.process-strip li:not(:last-child)::after {
  top: 32px;
  right: calc(clamp(28px, 4vw, 68px) / -2 - 8px);
  color: var(--blue-900);
}

.process-strip strong {
  max-width: 180px;
  font-size: 1rem;
  line-height: 1.28;
}

.platform-note {
  margin: clamp(28px, 3vw, 38px) 0 0;
  padding: 18px 22px;
  color: var(--blue-950);
  font-weight: 720;
  background: rgba(255, 255, 255, 0.66);
  border-left: 4px solid var(--blue-700);
  border-radius: 8px;
}

.materials {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  height: auto;
  min-height: 340px;
  margin: 0 auto;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 3vw, 44px);
  align-items: center;
  padding: var(--section-space) 0;
}

.materials::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--band-white);
}

.materials-copy {
  padding: 0;
}

.materials h2 {
  margin-bottom: 14px;
}

.materials p:not(.section-label) {
  max-width: 430px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: var(--body-copy);
  line-height: 1.58;
  font-weight: 560;
}

.materials-visual {
  height: clamp(260px, 28vw, 390px);
  min-height: 260px;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(6, 31, 120, 0.08);
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0, #000 10%, #000 92%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0, #000 10%, #000 90%, rgba(0, 0, 0, 0.74) 100%);
  mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0, #000 10%, #000 92%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0, #000 10%, #000 90%, rgba(0, 0, 0, 0.74) 100%);
}

.materials-visual img {
  height: 100%;
  min-height: 100%;
}

.scale {
  min-height: 430px;
  height: auto;
  margin-top: 0;
  grid-template-columns: minmax(330px, 1.05fr) minmax(220px, 0.62fr) minmax(170px, 0.48fr) minmax(340px, 0.92fr);
  gap: clamp(22px, 2.2vw, 34px);
  padding: var(--section-space) max(48px, calc((100vw - var(--max)) / 2)) var(--section-space);
  background: linear-gradient(180deg, #075a8d 0, #006595 100%);
}

.scale::before {
  opacity: 0.1;
  -webkit-mask-image: none;
  mask-image: none;
}

.scale::after {
  background:
    linear-gradient(90deg, rgba(4, 42, 92, 0.94) 0, rgba(4, 70, 118, 0.82) 43%, rgba(4, 70, 118, 0.35) 70%, rgba(4, 70, 118, 0.16) 100%),
    radial-gradient(820px 340px at 78% 50%, rgba(0, 165, 216, 0.2), rgba(0, 165, 216, 0));
  -webkit-mask-image: none;
  mask-image: none;
}

.scale h2 {
  max-width: 440px;
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
}

.check-list li {
  font-size: var(--body-copy);
  line-height: 1.48;
}

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

.trl-track {
  gap: 24px;
}

.trl-track span {
  font-size: 1.1rem;
}

.trl-track p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.zim {
  min-height: 92px;
  border-radius: 8px;
}

.funding-logo {
  min-height: 92px;
  border-radius: 8px;
}

.zim img {
  width: min(100%, 164px);
  max-height: 78px;
}

.funding-logo img {
  min-height: 92px;
}

.pilot {
  opacity: 0.72;
  filter: blur(0.5px) saturate(0.82) contrast(0.96) brightness(0.96);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, transparent 28%, rgba(0, 0, 0, 0.66) 50%, #000 72%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0, #000 16%, #000 84%, rgba(0, 0, 0, 0.42) 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, transparent 28%, rgba(0, 0, 0, 0.66) 50%, #000 72%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0, #000 16%, #000 84%, rgba(0, 0, 0, 0.42) 100%);
}

.team {
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.team-copy h2 {
  margin: 0 0 18px;
}

.team-copy .lead {
  margin-bottom: 18px;
}

.team-copy p:not(.lead) {
  max-width: 660px;
  margin: 0;
}

.team-visual {
  min-width: 0;
}

.team-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(198, 224, 246, 0.78);
  box-shadow: 0 22px 52px rgba(6, 31, 120, 0.08);
}

.partners {
  padding-top: var(--section-space);
}

.partner-grid {
  gap: clamp(22px, 2.3vw, 34px);
}

.partner-card {
  padding: clamp(22px, 2.4vw, 30px);
}

.partner-card h3 {
  min-height: 0;
}

.partner-card h3 span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.partner-card img {
  height: clamp(120px, 11vw, 170px);
  margin: 18px 0 20px;
  border-radius: 8px;
}

.compact li {
  font-size: 0.92rem;
}

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

  .scale {
    grid-template-columns: 1fr 0.82fr;
    padding: clamp(58px, 7vw, 86px) 28px;
  }

  .scale-proof {
    grid-column: 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 32px;
  }

  .conversion-card {
    width: min(100% - var(--page-gutter), var(--max));
  }

  .materials {
    width: min(100% - var(--page-gutter), var(--max));
  }

  .conversion-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conversion-card h2 {
    max-width: 720px;
  }

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

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

  .info-card {
    min-height: 0;
  }

  .process-strip ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .process-strip li:not(:last-child)::after {
    display: none;
  }

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

  .materials-visual {
    height: 320px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 24px;
    --section-space: 58px;
    --section-title: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(1.86rem, 8.5vw, 2.42rem);
  }

  .proof-row {
    gap: 14px;
  }

  .proof-item {
    border-right: 0;
    padding-right: 0;
  }

  .proof-icon {
    width: 42px;
    height: 42px;
  }

  .conversion-card {
    padding: var(--section-space) 0;
  }

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

  .section-heading {
    text-align: left;
  }

  .process-strip {
    padding: 22px;
  }

  .info-card {
    padding: 22px;
  }

  .partner-card {
    padding: 22px;
  }

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

  .process-strip li {
    grid-template-columns: auto 1fr;
    min-height: 0;
    justify-items: start;
    text-align: left;
  }

  .materials-visual {
    height: 240px;
  }

  .scale {
    grid-template-columns: 1fr;
    padding: 58px 22px;
  }

  .scale-proof {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

.problem .why-now {
  margin-top: clamp(54px, 6vw, 82px);
  padding-top: clamp(46px, 5vw, 70px);
  border-top: 1px solid rgba(0, 110, 182, 0.18);
}

.problem .why-now::before {
  display: none;
}

.problem .why-now .section-heading {
  margin-bottom: clamp(26px, 3.5vw, 42px);
}

.platform {
  padding-bottom: var(--section-space);
}

.platform .process-strip {
  padding: 24px 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform .process-strip ol {
  gap: clamp(34px, 5vw, 70px);
}

.platform .process-strip li {
  min-height: 96px;
  gap: 10px;
}

.platform .process-strip strong {
  font-size: 0.94rem;
}

.platform .platform-note {
  margin-top: 24px;
}

.platform .scale {
  width: 100%;
  max-width: none;
  margin: clamp(34px, 4vw, 52px) 0 0;
}

.platform .scale h2 {
  margin-bottom: 12px;
}

.platform .trl-track {
  gap: 12px;
}

.platform .trl-track span {
  font-size: 0.9rem;
}

.platform .trl-track p {
  font-size: 0.72rem;
  line-height: 1.32;
}

.platform .pilot {
  opacity: 0.62;
  filter: blur(0.7px) saturate(0.74) contrast(0.95) brightness(0.94);
}

.team {
  grid-template-columns: minmax(320px, 0.58fr) minmax(460px, 1fr);
}

@media (max-width: 1080px) {
  .platform .scale {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    padding: 34px 28px;
  }

  .platform .scale-proof {
    grid-column: 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .problem .why-now {
    margin-top: 44px;
    padding-top: 40px;
  }

  .platform .process-strip ol {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform .process-strip li {
    grid-template-columns: auto 1fr;
    min-height: 0;
    justify-items: start;
    text-align: left;
  }

  .platform .scale {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .platform .scale-proof {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

.platform-card {
  position: relative;
  overflow: visible;
  padding: 0;
  color: var(--blue-950);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform-card::before {
  display: none;
}

.platform-card > * {
  position: relative;
  z-index: 1;
}

.platform-card h2 {
  width: 100%;
  margin: 0 0 clamp(24px, 2.8vw, 36px);
  color: var(--blue-950);
  font-size: clamp(1.62rem, 2vw, 1.9rem);
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: 0;
}

.platform-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.platform-copy-card {
  display: flex;
  align-items: center;
  min-height: 220px;
  margin: 0;
  padding: clamp(24px, 2.8vw, 34px);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 224, 246, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 120, 0.08);
  line-height: 1.58;
  font-weight: 700;
}

.platform-card .process-strip {
  display: flex;
  align-items: center;
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 224, 246, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 120, 0.08);
}

.platform-card .process-strip ol {
  width: 100%;
}

.platform-card .process-strip li {
  min-height: 0;
  gap: 16px;
  padding: 0;
  color: var(--blue-950);
  text-align: center;
}

.process-orb {
  width: clamp(84px, 7.4vw, 112px);
  height: clamp(84px, 7.4vw, 112px);
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.process-ppt-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: none;
}

.process-ppt-icon-waste {
  width: 100%;
  height: 100%;
}

.platform-card .process-strip strong {
  max-width: 190px;
  color: var(--blue-950);
  font-weight: 760;
}

.platform-card .platform-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  padding: 18px clamp(24px, 2.8vw, 34px);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 224, 246, 0.86);
  border-left: 0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 120, 0.08);
  line-height: 1.42;
  font-weight: 780;
}

.platform-note-icon {
  width: 44px;
  height: 44px;
  color: var(--blue-700);
}

.platform .scale {
  margin-top: clamp(28px, 3.2vw, 40px);
}

@media (min-width: 1320px) {
  .platform-card h2 {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .platform-overview {
    grid-template-columns: 1fr;
  }

  .platform-copy-card {
    min-height: 0;
  }

  .platform-card .process-strip {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .platform-card h2 {
    font-size: clamp(1.65rem, 7.2vw, 2.08rem);
  }

  .platform-copy-card {
    padding: 22px;
  }

  .platform-card .process-strip {
    padding: 22px;
  }

  .platform-card .process-strip ol {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .platform-card .process-strip li {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .process-orb {
    width: 64px;
    height: 64px;
  }

  .platform-card .process-strip li:not(:last-child)::after {
    display: none;
  }

  .platform-card .platform-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 22px;
  }

  .platform-note-icon {
    width: 38px;
    height: 38px;
  }
}

.team {
  display: block;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.24fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(198, 224, 246, 0.78);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(6, 31, 120, 0.08);
}

.team-card .team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.5vw, 34px);
}

.team-card .team-copy h2 {
  max-width: 230px;
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.08;
}

.team-card .team-copy .lead {
  max-width: 270px;
  margin: 0;
}

.team-card .team-copy p:not(.lead) {
  max-width: 540px;
  margin: 0;
}

.team-card .team-visual {
  min-width: 0;
  min-height: clamp(190px, 14vw, 260px);
}

.team-card .team-visual img {
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 860px) {
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card .team-copy {
    padding: 26px;
  }

  .team-card .team-visual {
    min-height: clamp(106px, 29vw, 130px);
  }

  .team-card .team-visual img {
    object-fit: contain;
  }
}

.icon-flame::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-network::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-mixed-waste::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-organic-mix::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-contaminated::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-layers::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-process-waste::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-shield-check::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-process-circular::before {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.icon-network::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/conversion_verbundstoffe.png");
}

.icon-mixed-waste::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/conversion_gemischte_kunststoffabfaelle.png");
}

.icon-organic-mix::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/conversion_kunststoff_organik_mix.png");
}

.icon-contaminated::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/conversion_verschmutzte_kunststoffe.png");
}

.icon-layers::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/conversion_multilayer_materialien.png");
}

.platform-note-icon.icon-process-circular::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/platform_note_zirkulaer_clean.png?v=1");
}

.problem-grid .icon-flame::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/problem_verbrennung_original_clean.png?v=2");
}

.problem-grid .icon-process-waste::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/problem_wertstoffluecke_original_clean.png?v=2");
}

.problem-grid .icon-shield-check::before {
  background-image: url("ppt_extracted_assets/website_icons_reviewed_v40/problem_rohstoffsouveraenitaet_original_clean.png?v=2");
}

@media (max-width: 760px) {
  .platform .scale {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 26px 22px;
    background: linear-gradient(180deg, #075a8d 0, #00477f 100%);
  }

  .platform .scale::before {
    opacity: 0.08;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .platform .scale::after {
    background:
      linear-gradient(180deg, rgba(4, 42, 92, 0.9) 0, rgba(4, 70, 118, 0.74) 54%, rgba(4, 70, 118, 0.62) 100%),
      radial-gradient(460px 340px at 68% 48%, rgba(0, 165, 216, 0.2), rgba(0, 165, 216, 0));
    -webkit-mask-image: none;
    mask-image: none;
  }

  .platform .scale h2 {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 6.2vw, 1.72rem);
    line-height: 1.14;
  }

  .platform .scale .check-list li {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .platform .scale .check-list li + li {
    margin-top: 7px;
  }

  .platform .trl-track {
    gap: 16px;
    padding-left: 30px;
  }

  .platform .trl-track::before {
    top: 6px;
    bottom: 10px;
  }

  .platform .trl-track div::before {
    left: -30px;
    top: 5px;
  }

  .platform .trl-track span {
    font-size: 1rem;
  }

  .platform .trl-track p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .platform .scale-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform .zim {
    width: 100%;
    min-height: 82px;
    max-height: none;
    border-radius: 7px;
  }

  .platform .funding-logo {
    width: 100%;
    max-height: none;
    border-radius: 7px;
  }

  .platform .zim {
    padding: 12px;
  }

  .platform .zim img {
    width: min(100%, 156px);
    max-height: 58px;
  }

  .platform .funding-logo {
    min-height: 118px;
    padding: 10px;
    background: #203a72;
  }

  .platform .funding-logo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 112px;
    object-fit: contain;
    object-position: center;
  }

  .platform .pilot {
    opacity: 0.44;
    filter: blur(0.4px) saturate(0.78) contrast(0.94) brightness(0.86);
  }

  .platform .pilot-panel::before {
    background:
      linear-gradient(180deg, rgba(0, 71, 127, 0.9) 0, rgba(0, 82, 139, 0.76) 58%, rgba(0, 82, 139, 0.66) 100%),
      linear-gradient(90deg, rgba(4, 42, 92, 0.7), rgba(4, 70, 118, 0.18));
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 1120px) {
  .platform-overview {
    grid-template-columns: 1fr;
  }

  .platform-copy-card {
    min-height: 0;
  }

  .platform-card .process-strip {
    min-height: 0;
  }

  .platform-card .process-strip ol {
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    gap: clamp(18px, 3vw, 30px);
  }

  .platform-card .process-strip strong {
    max-width: 136px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .platform-card .process-strip li:not(:last-child)::after {
    right: -20px;
    font-size: 1.35rem;
  }

  .process-orb {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 760px) {
  .platform-card .process-strip ol {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-card .process-strip li {
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .platform-card .process-strip strong {
    max-width: none;
    font-size: 0.95rem;
  }

  .platform-card .process-strip li:not(:last-child)::after {
    display: none;
  }

  .process-orb {
    width: 64px;
    height: 64px;
  }
}

.conversion-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  align-items: stretch;
  column-gap: clamp(18px, 1.8vw, 28px);
  row-gap: clamp(34px, 4.2vw, 54px);
  padding: clamp(70px, 7.6vw, 108px) 0 clamp(64px, 6.6vw, 94px);
}

.conversion-card h2 {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: min(100%, 1050px);
  margin: 0;
  color: var(--blue-900);
  text-align: center;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
}

.conversion-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(300px, 28vw, 430px);
  padding: clamp(34px, 3.8vw, 56px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(198, 224, 246, 0.74);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 120, 0.05);
}

.outputs {
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 28vw, 430px);
  padding: clamp(34px, 3.8vw, 56px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(198, 224, 246, 0.74);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 120, 0.05);
}

.conversion-list .section-label {
  margin: 0 0 clamp(24px, 2.8vw, 38px);
  color: var(--blue-700);
  line-height: 1.18;
  font-weight: 820;
}

.outputs .section-label {
  margin: 0 0 clamp(24px, 2.8vw, 38px);
  color: var(--blue-700);
  line-height: 1.18;
  font-weight: 820;
}

.conversion-list .icon-list li {
  gap: clamp(18px, 2vw, 28px);
  color: var(--blue-950);
  line-height: 1.18;
  font-weight: 500;
}

.conversion-card .input-icon {
  width: clamp(34px, 3vw, 48px);
  height: clamp(34px, 3vw, 48px);
  flex: 0 0 clamp(34px, 3vw, 48px);
}

.conversion-card .output-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3.2vw, 56px);
  align-items: end;
}

.conversion-card .output-grid figure {
  gap: clamp(18px, 2.6vw, 32px);
}

.conversion-card .output-grid img {
  width: 100%;
  max-width: clamp(118px, 12vw, 210px);
  max-height: clamp(118px, 12vw, 190px);
}

.conversion-card .output-grid figcaption {
  color: var(--blue-950);
  font-size: clamp(1.02rem, 1.28vw, 1.28rem);
  line-height: 1.2;
  font-weight: 760;
}

@media (max-width: 760px) {
  .conversion-card {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: clamp(54px, 8vw, 72px) 0;
  }

  .conversion-card h2 {
    white-space: normal;
    font-size: clamp(1.85rem, 7vw, 3.2rem);
  }

  .conversion-list {
    min-height: 0;
    padding: clamp(24px, 5vw, 34px);
  }

  .outputs {
    min-height: 0;
    padding: clamp(24px, 5vw, 34px);
  }

  .conversion-list .icon-list li {
    font-size: clamp(1.02rem, 4vw, 1.35rem);
  }
}

@media (max-width: 560px) {
  .conversion-card .output-grid {
    gap: 14px;
  }

  .conversion-card .output-grid img {
    max-height: 78px;
  }

  .conversion-card .output-grid figcaption {
    font-size: 0.78rem;
  }
}

.platform-card .process-strip ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4.4vw, 74px);
  align-items: start;
}

.platform-card .process-strip li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  overflow: visible;
}

.platform-card .process-strip li:not(:last-child)::after {
  content: "→";
  display: block;
  position: absolute;
  top: clamp(34px, 3.45vw, 46px);
  right: calc(clamp(34px, 4.4vw, 74px) / -2 - 18px);
  color: var(--blue-950);
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  line-height: 1;
  font-weight: 650;
  z-index: 3;
  pointer-events: none;
}

.platform .scale {
  height: auto;
}

.platform .trl-track {
  grid-area: trl;
  width: min(100%, 360px);
  justify-self: center;
}

.platform .scale-proof {
  grid-area: proof;
  width: min(100%, 340px);
  display: grid;
  grid-template-columns: 1fr;
  justify-self: end;
  align-self: center;
}

.platform .zim {
  width: 100%;
}

.platform .funding-logo {
  width: 100%;
}

.turtle-cta-section {
  margin: 0 auto;
}

.turtle-contact-card {
  overflow: hidden;
}

.turtle-contact-card {
  align-content: center;
}

.turtle-contact-card .section-label {
  margin: 0;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.turtle-contact-card strong {
  display: block;
  margin: 0;
  color: var(--blue-950);
  line-height: 1.12;
  font-weight: 780;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(118px, 0.58fr) minmax(0, 1.42fr);
  grid-template-areas:
    "location people"
    "links links";
  gap: clamp(9px, 0.9vw, 13px) clamp(16px, 1.7vw, 24px);
  align-items: start;
}

.turtle-contact-card span {
  color: var(--blue-950);
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  line-height: 1.28;
  text-decoration: none;
}

.turtle-contact-card a {
  line-height: 1.28;
  text-decoration: none;
}

.contact-phone {
  white-space: nowrap;
}

.turtle-contact-card a {
  color: var(--blue-700);
  font-weight: 760;
}

.turtle-contact-card a:hover {
  color: var(--cyan);
}

@media (max-width: 1180px) {
  .platform .scale {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    grid-template-areas:
      "copy trl"
      "proof proof";
    align-items: start;
  }

  .platform .scale-proof {
    width: 100%;
    max-width: 760px;
    grid-template-columns: minmax(180px, 260px) minmax(240px, 360px);
    align-items: stretch;
    justify-self: start;
  }

  .platform .funding-logo {
    height: clamp(118px, 16vw, 170px);
  }

  .platform-card .process-strip ol {
    gap: clamp(24px, 3.2vw, 44px);
  }

  .platform-card .process-strip li:not(:last-child)::after {
    right: calc(clamp(24px, 3.2vw, 44px) / -2 - 13px);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
  }
}

@media (max-width: 760px) {
  .platform-card .process-strip ol {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-card .process-strip li {
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .platform-card .process-strip li:not(:last-child)::after {
    display: none;
  }

  .platform .scale {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "trl"
      "proof";
    gap: 22px;
    padding: 28px 22px;
  }

  .platform .trl-track {
    justify-self: stretch;
    width: 100%;
  }

  .platform .scale-proof {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .platform .funding-logo {
    height: 132px;
  }

  .turtle-contact-grid {
    grid-template-columns: 1fr;
  }

  .turtle-contact-card {
    gap: 8px;
    padding: 24px;
  }

  .contact-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "location"
      "people"
      "links";
    gap: 12px;
  }
}

.proof-icon {
  --proof-icon-size: 54px;
  width: 54px;
  height: 54px;
  overflow: visible;
}

.proof-icon img {
  width: auto !important;
  height: var(--proof-icon-size) !important;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .proof-icon {
    --proof-icon-size: 42px;
    width: 42px;
    height: 42px;
  }
}

.platform .scale-proof {
  gap: clamp(10px, 1.2vw, 14px);
}

.platform .zim {
  aspect-ratio: 328 / 142;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: visible;
}

.platform .funding-logo {
  aspect-ratio: 328 / 142;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: visible;
}

.platform .zim img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.platform .funding-logo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .platform .scale-proof {
    grid-template-columns: repeat(2, minmax(220px, 328px));
    align-items: center;
  }
}

@media (max-width: 760px) {
  .platform .scale-proof {
    grid-template-columns: 1fr;
  }
}

.platform .scale {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  grid-template-areas: "content visual";
  gap: 0;
  align-items: stretch;
  min-height: clamp(380px, 31vw, 520px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  border-radius: 8px;
}

.platform .scale::before {
  display: none;
}

.platform .scale::after {
  display: none;
}

.platform .scale-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.platform .scale-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.platform .scale-content {
  grid-area: content;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: linear-gradient(135deg, #06265c 0, #004d82 100%);
}

.platform .scale h2 {
  max-width: none;
  margin: 0;
  padding: clamp(22px, 2.15vw, 34px) clamp(26px, 2.5vw, 42px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 22, 64, 0.54), rgba(0, 38, 91, 0.16));
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform .scale-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.86fr);
  min-height: 0;
}

.platform .scale-copy {
  grid-area: auto;
  display: flex;
  align-items: center;
  max-width: none;
  min-width: 0;
  padding: clamp(26px, 3.1vw, 52px) clamp(24px, 2.7vw, 48px);
  background: linear-gradient(135deg, #07356f 0, #005a91 100%);
}

.platform .scale .check-list {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
}

.platform .scale .check-list li {
  position: relative;
  min-height: 26px;
  padding-left: clamp(36px, 2.8vw, 48px);
  color: inherit;
  line-height: 1.35;
  font-weight: 520;
}

.platform .scale .check-list li + li {
  margin-top: clamp(10px, 1.15vw, 18px);
}

.platform .scale .check-list li::before {
  left: 0;
  top: 0.05em;
  display: grid;
  width: clamp(22px, 1.7vw, 28px);
  height: clamp(22px, 1.7vw, 28px);
  place-items: center;
  color: #119158;
  background: #ffffff;
  border: 1px solid rgba(17, 145, 88, 0.34);
  border-radius: 999px;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1;
  box-shadow: 0 5px 14px rgba(0, 25, 70, 0.12);
}

.platform .scale .trl-track {
  grid-area: auto;
  display: grid;
  align-content: center;
  gap: 0;
  justify-self: stretch;
  align-self: stretch;
  width: auto;
  min-width: 0;
  padding: clamp(24px, 2.8vw, 44px) clamp(22px, 2.4vw, 38px) clamp(24px, 2.8vw, 44px) clamp(58px, 5vw, 82px);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(0, 49, 115, 0.09);
}

.platform .scale .trl-track::before {
  left: clamp(28px, 2.65vw, 42px);
  top: clamp(34px, 3.7vw, 60px);
  bottom: clamp(34px, 3.7vw, 60px);
  width: 2px;
  background: #12975b;
  opacity: 1;
}

.platform .scale .trl-track div {
  position: relative;
  min-width: 0;
  padding: 0 0 clamp(18px, 1.9vw, 30px);
  border-bottom: 1px solid rgba(9, 36, 86, 0.1);
}

.platform .scale .trl-track div + div {
  padding-top: clamp(18px, 1.9vw, 30px);
}

.platform .scale .trl-track div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.platform .scale .trl-track div::before {
  left: calc((clamp(30px, 2.65vw, 44px) + clamp(22px, 2.4vw, 38px)) * -1 + clamp(27px, 2.65vw, 41px));
  top: 0.25em;
  width: clamp(16px, 1.45vw, 22px);
  height: clamp(16px, 1.45vw, 22px);
  background: #12975b;
  box-shadow: 0 0 0 5px rgba(18, 151, 91, 0.12);
}

.platform .scale .trl-track div + div::before {
  top: calc(clamp(18px, 1.9vw, 30px) + 0.25em);
}

.platform .scale .trl-track span {
  color: var(--blue-950);
  line-height: 1.1;
  font-weight: 820;
}

.platform .scale .trl-track p {
  margin-top: 8px;
  color: rgba(5, 28, 80, 0.86);
  line-height: 1.34;
  font-weight: 650;
}

.platform .scale-visual {
  grid-area: visual;
  min-height: 100%;
  overflow: hidden;
  background: #d9e9f4;
}

.platform .scale-visual .pilot-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  pointer-events: none;
}

.platform .scale-visual .pilot-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(220, 237, 249, 0.9) 0%,
      rgba(220, 237, 249, 0.74) 20%,
      rgba(220, 237, 249, 0.4) 46%,
      rgba(220, 237, 249, 0.06) 74%
    ),
    linear-gradient(
      180deg,
      rgba(220, 237, 249, 0.42) 0%,
      rgba(220, 237, 249, 0.08) 16%,
      rgba(220, 237, 249, 0.08) 84%,
      rgba(220, 237, 249, 0.38) 100%
    );
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
}

.platform .scale-visual .pilot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.88) contrast(0.96) brightness(0.98);
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.platform .scale-visual .scale-proof {
  position: absolute;
  left: clamp(24px, 3.1vw, 54px);
  top: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.1vw, 16px);
  width: clamp(148px, 21%, 164px);
  min-width: 0;
  max-width: 164px;
  transform: translateY(-50%);
}

.platform .scale-visual .zim {
  display: block;
  width: 100%;
  min-height: 0;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.platform .scale-visual .funding-logo {
  display: block;
  width: 100%;
  min-height: 0;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.platform .scale-visual .zim img {
  display: block;
  min-height: 0;
  max-height: none;
}

.platform .scale-visual .funding-logo img {
  display: block;
  min-height: 0;
  max-height: none;
}

@media (max-width: 1180px) {
  .platform .scale {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
  }

  .platform .scale-content-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.9fr);
  }

  .platform .scale-visual {
    min-height: clamp(330px, 46vw, 470px);
  }
}

@media (max-width: 760px) {
  .platform .scale {
    min-height: 0;
  }

  .platform .scale h2 {
    padding: 22px;
    font-size: clamp(1.12rem, 5.1vw, 1.56rem);
  }

  .platform .scale-content-grid {
    grid-template-columns: 1fr;
  }

  .platform .scale-copy {
    padding: 24px 22px;
  }

  .platform .scale .check-list li {
    font-size: 0.9rem;
  }

  .platform .scale .trl-track {
    padding: 26px 22px 28px 62px;
    border-left: 0;
  }

  .platform .scale .trl-track::before {
    left: 34px;
    top: 34px;
    bottom: 34px;
  }

  .platform .scale .trl-track div::before {
    left: -36px;
    top: 0.25em;
  }

  .platform .scale .trl-track div + div::before {
    left: -36px;
  }

  .platform .scale .trl-track div + div::before {
    top: calc(clamp(18px, 1.9vw, 30px) + 0.25em);
  }

  .platform .scale-visual {
    min-height: 360px;
  }

  .platform .scale-visual .pilot {
    object-position: center;
  }

  .platform .scale-visual .pilot-panel::before {
    background:
      linear-gradient(
        90deg,
        rgba(220, 237, 249, 0.9) 0%,
        rgba(220, 237, 249, 0.74) 20%,
        rgba(220, 237, 249, 0.4) 46%,
        rgba(220, 237, 249, 0.06) 74%
      ),
      linear-gradient(
        180deg,
        rgba(220, 237, 249, 0.42) 0%,
        rgba(220, 237, 249, 0.08) 16%,
        rgba(220, 237, 249, 0.08) 84%,
        rgba(220, 237, 249, 0.38) 100%
      );
  }

  .platform .scale-visual .scale-proof {
    left: 22px;
    width: clamp(142px, 44%, 164px);
    min-width: 0;
    gap: 10px;
  }
}

.partners {
  padding-bottom: clamp(24px, 3vw, 40px);
}

.turtle-image-card {
  align-self: start;
  line-height: 0;
}

.turtle-image-card img {
  min-height: 0;
}

@media (max-width: 1180px) {
  .turtle-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .contact-body {
    grid-template-columns: minmax(112px, 0.58fr) minmax(0, 1.42fr);
    gap: 10px 14px;
  }

  .turtle-contact-card span {
    overflow-wrap: anywhere;
  }

  .turtle-contact-card a {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 921px) and (max-width: 1320px) {
  .turtle-contact-card {
    gap: 6px;
    padding-block: clamp(14px, 1.28vw, 17px);
  }
}

@media (max-width: 1180px) {
  .turtle-contact-card {
    justify-items: center;
    padding-inline: clamp(28px, 5vw, 54px);
    text-align: center;
  }

  .turtle-contact-card .section-label {
    text-align: center;
  }

  .turtle-contact-card strong {
    text-align: center;
  }

  .contact-body {
    width: 100%;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "location people"
      "links links";
    gap: clamp(14px, 2vw, 20px) clamp(36px, 7vw, 84px);
  }
}

@media (max-width: 760px) {
  .contact-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "location"
      "people"
      "links";
    gap: 12px;
  }
}

.legal-footer {
  margin-top: clamp(18px, 3vw, 42px);
  color: var(--white);
  background:
    radial-gradient(720px 280px at 18% 0%, rgba(0, 165, 216, 0.18), rgba(0, 165, 216, 0) 64%),
    linear-gradient(135deg, #020818 0, #061f78 56%, #00477f 100%);
}

.legal-footer-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  min-height: clamp(92px, 9vw, 126px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(22px, 2.3vw, 34px) 0;
}

.legal-footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(40vw, 190px);
  min-width: 150px;
  text-decoration: none;
}

.legal-footer-logo img {
  width: 100%;
  max-height: 94px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 10, 35, 0.28));
}

.legal-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 12px);
}

.legal-footer-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.legal-footer-nav a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 760px) {
  .legal-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-footer-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

.team-card .team-visual {
  background: transparent;
}

.team-card .team-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 860px) {
  .team-card .team-visual img {
    object-fit: cover;
  }
}

:root {
  --section-title: clamp(2rem, 2.25vw, 2.75rem);
  --section-lead: clamp(1.02rem, 1.04vw, 1.14rem);
  --card-title: clamp(1.05rem, 1vw, 1.16rem);
  --label-copy: clamp(0.72rem, 0.68vw, 0.78rem);
}

.conversion-card h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.problem .section-heading h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.why-now .section-heading h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.platform-card > h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.materials h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.team-copy h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.partners .section-heading h2 {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#conversion-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#problem-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#why-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#platform-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
  max-width: 100%;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  white-space: normal;
  word-break: normal;
}

#materials-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#team-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

#partners-title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 760;
}

.lead {
  font-size: var(--section-lead);
  line-height: 1.56;
}

.hero-subline {
  font-size: var(--section-lead);
  line-height: 1.56;
}

.materials-copy > p:not(.section-label) {
  font-size: var(--section-lead);
  line-height: 1.56;
}

.team-copy .lead {
  font-size: var(--section-lead);
  line-height: 1.56;
}

.partners .section-heading .lead {
  font-size: var(--section-lead);
  line-height: 1.56;
}

.section-label {
  font-size: var(--label-copy);
  line-height: 1.12;
}

.info-card h3 {
  font-size: var(--card-title);
}

.partner-card h3 {
  font-size: var(--card-title);
}

.platform-card .process-strip strong {
  font-size: var(--card-title);
}

.conversion-list .section-label {
  font-size: var(--card-title);
}

.outputs .section-label {
  font-size: var(--card-title);
}

.platform .scale h2 {
  font-size: var(--card-title);
}

.platform .scale .trl-track span {
  font-size: var(--card-title);
}

.turtle-contact-card strong {
  font-size: var(--card-title);
}

.info-card p {
  font-size: var(--body-copy);
}

.why-grid p {
  font-size: var(--body-copy);
}

.platform-copy-card {
  font-size: var(--body-copy);
}

.platform-card .platform-note {
  font-size: var(--body-copy);
}

.platform .scale .check-list li {
  font-size: var(--body-copy);
}

.platform .scale .trl-track p {
  font-size: var(--body-copy);
}

.partner-card li {
  font-size: var(--body-copy);
}

.turtle-contact-card a {
  font-size: var(--body-copy);
}

.conversion-list .icon-list li {
  font-size: var(--body-copy);
}

.output-grid figcaption {
  font-size: var(--body-copy);
}

.platform::before {
  background: var(--band-blue);
}

.platform-card h2 {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.platform-card .process-strip strong {
  line-height: 1.28;
}

.platform .scale-visual .zim {
  box-shadow: 0 16px 34px rgba(4, 37, 82, 0.18);
}

.platform .scale-visual .funding-logo {
  box-shadow: 0 16px 34px rgba(4, 37, 82, 0.18);
}

.platform .scale-visual .zim img {
  border-radius: 8px;
}

.platform .scale-visual .funding-logo img {
  border-radius: 8px;
}

.partner-card {
  display: flex;
  flex-direction: column;
}

.partner-card .check-list {
  margin-bottom: 0;
}

.partner-card-invest {
  min-height: 100%;
}

.partner-card img.invest-badge {
  height: auto;
  min-height: 0;
  margin: auto 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 1181px) {
  .turtle-contact-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(520px, 0.78fr);
    gap: clamp(14px, 1.2vw, 20px);
  }

  .turtle-contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: clamp(28px, 2.15vw, 40px);
    color: var(--blue-950);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 255, 0.96));
    border: 1px solid rgba(166, 209, 239, 0.82);
    border-left: 6px solid var(--blue-700);
    box-shadow: 0 22px 52px rgba(6, 31, 120, 0.1);
  }

  .turtle-contact-card .section-label {
    margin-bottom: 6px;
  }

  .turtle-contact-card strong {
    margin-bottom: clamp(18px, 1.55vw, 26px);
    font-size: clamp(1.55rem, 1.7vw, 2rem);
    line-height: 1.08;
  }

  .contact-body {
    width: 100%;
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
    grid-template-areas:
      "location people"
      "links links";
    gap: clamp(16px, 1.4vw, 22px) clamp(26px, 2.2vw, 40px);
  }
}

@media (max-width: 1180px) {
  .turtle-contact-card strong {
    font-size: clamp(1.45rem, 4vw, 2rem);
  }
}

@media (max-width: 760px) {
  :root {
    --section-title: clamp(1.65rem, 6.4vw, 2.08rem);
    --section-lead: clamp(0.96rem, 3.5vw, 1.08rem);
    --card-title: clamp(1rem, 4vw, 1.14rem);
  }
}

.materials .button-small {
  min-width: 280px;
  min-height: 56px;
  padding: 0 28px;
  border-color: rgba(168, 221, 248, 0.78);
  border-radius: 8px;
}

@media (max-width: 760px) {
  .materials .button-small {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1181px) {
  .contact-phone {
    grid-area: contact-phone;
    justify-self: start;
  }
}

:root {
  --body-copy: 1rem;
}

main :is(
  .info-card p,
  .problem .info-card p,
  .problem-grid .info-card p,
  .why-grid .info-card p,
  .materials-copy > p:not(.section-label),
  .platform-copy-card,
  .platform-card .platform-note,
  .platform .scale .check-list li,
  .platform .scale .trl-track p,
  .partner-card li,
  .conversion-list .icon-list li,
  .output-grid figcaption,
  .turtle-contact-card a
) {
  font-size: var(--body-copy);
}

main :is(
  .info-card p,
  .problem .info-card p,
  .problem-grid .info-card p,
  .why-grid .info-card p,
  .materials-copy > p:not(.section-label),
  .platform-copy-card,
  .platform-card .platform-note,
  .platform .scale .check-list li,
  .platform .scale .trl-track p,
  .partner-card li,
  .conversion-list .icon-list li,
  .output-grid figcaption
) {
  font-family: "Manrope", Inter, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.58;
}

.platform .scale-visual .zim {
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  overflow: visible;
}

.platform .scale-visual .funding-logo {
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  overflow: visible;
}

.platform .scale-visual .zim img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.platform .scale-visual .funding-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.legal-page {
  min-height: 100vh;
  color: var(--blue-950);
  background:
    linear-gradient(180deg, rgba(232, 245, 255, 0.92), rgba(255, 255, 255, 1) 34%),
    var(--ice);
}

.legal-topbar {
  width: 100%;
  margin: 0;
  padding: clamp(18px, 2vw, 28px) max(calc(var(--page-gutter) / 2), calc((100vw - var(--max)) / 2 + var(--page-gutter) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 44px);
  color: var(--white);
  background:
    radial-gradient(720px 280px at 18% 0%, rgba(0, 165, 216, 0.18), rgba(0, 165, 216, 0) 64%),
    linear-gradient(135deg, #020818 0, #061f78 56%, #00477f 100%);
}

.legal-topbar-logo {
  display: inline-flex;
  align-items: center;
  width: min(40vw, 190px);
  min-width: 150px;
  text-decoration: none;
}

.legal-topbar-logo img {
  width: 100%;
  max-height: 94px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 10, 35, 0.28));
}

.legal-topbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.legal-topbar-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.legal-topbar-nav a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.legal-main {
  width: min(980px, calc(100% - var(--page-gutter)));
  margin: clamp(32px, 5vw, 72px) auto clamp(42px, 6vw, 84px);
}

.legal-document {
  padding: clamp(30px, 4.5vw, 64px);
  border: 1px solid rgba(168, 221, 248, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(8, 33, 92, 0.1);
}

.legal-document h1 {
  margin: 0 0 clamp(24px, 3.8vw, 42px);
  color: var(--blue-950);
  letter-spacing: 0;
}

.legal-document section + section {
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(22px, 2.6vw, 32px);
  border-top: 1px solid rgba(168, 221, 248, 0.56);
}

.legal-document h2 {
  margin: 0 0 12px;
  color: var(--blue-900);
  letter-spacing: 0;
}

.legal-document h3 {
  margin: 18px 0 10px;
  color: var(--blue-950);
  letter-spacing: 0;
}

.legal-document p {
  color: rgba(7, 33, 94, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document li {
  color: rgba(7, 33, 94, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 14px;
}

.legal-document ul + p {
  margin-top: 14px;
}

.legal-document p + ul {
  margin-top: 14px;
}

.legal-document ul {
  margin: 0;
  padding-left: 1.2em;
}

.legal-document a {
  color: var(--blue-700);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.legal-page .legal-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-topbar-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-document {
    padding: 26px 18px;
  }
}

:root {
  --type-family: "Manrope", Inter, Arial, sans-serif;
  --type-hero-title: clamp(2.7rem, 3.9vw, 4.55rem);
  --type-section-title: clamp(2.15rem, 2.55vw, 3.05rem);
  --type-lead: clamp(1.08rem, 1.16vw, 1.25rem);
  --type-card-title: clamp(1.16rem, 1.14vw, 1.3rem);
  --type-subtitle: clamp(1.04rem, 1.02vw, 1.12rem);
  --type-body: 1.18rem;
  --type-label: clamp(0.72rem, 0.68vw, 0.78rem);
  --type-button: 1.04rem;
  --type-hero-weight: 800;
  --type-title-weight: 700;
  --type-body-weight: 500;
}

@media (max-width: 760px) {
  :root {
    --type-hero-title: clamp(2.25rem, 8.5vw, 3.25rem);
    --type-section-title: clamp(1.78rem, 6.7vw, 2.22rem);
    --type-lead: clamp(1.02rem, 3.8vw, 1.14rem);
    --type-card-title: clamp(1.06rem, 4.2vw, 1.2rem);
    --type-subtitle: clamp(1rem, 3.6vw, 1.1rem);
    --type-body: 1.125rem;
    --type-button: 0.98rem;
  }
}

body {
  font-family: var(--type-family);
}

button {
  font-family: var(--type-family);
}

input {
  font-family: var(--type-family);
}

select {
  font-family: var(--type-family);
}

textarea {
  font-family: var(--type-family);
}

body {
  font-size: var(--type-body);
  font-weight: var(--type-body-weight);
  line-height: 1.58;
}

body :is(h1, h2, h3, h4, p, li, a, span, strong, button, label, input, select, textarea, address, figcaption, small) {
  font-family: var(--type-family);
  letter-spacing: 0;
}

.hero h1 {
  font-size: var(--type-hero-title);
  line-height: 1.16;
  font-weight: var(--type-hero-weight);
}

main :is(
  #conversion-title,
  #problem-title,
  #why-title,
  #materials-title,
  #platform-title,
  #team-title,
  #partners-title
) {
  font-size: var(--type-section-title);
  line-height: 1.12;
  font-weight: var(--type-title-weight);
}

.legal-document h1 {
  font-size: var(--type-section-title);
  line-height: 1.12;
  font-weight: var(--type-title-weight);
}

main :is(
  .lead,
  .hero-subline,
  .materials-copy > p:not(.section-label),
  .modal-intro
) {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main :is(
  .info-card h3,
  .partner-card h3,
  .platform-card .process-strip strong,
  .conversion-list .section-label,
  .outputs .section-label,
  .platform .scale h2,
  .platform .scale .trl-track span,
  .turtle-contact-card strong,
  .privacy-modal-body h3,
  .request-modal h2
) {
  font-size: var(--type-card-title);
  line-height: 1.28;
  font-weight: var(--type-title-weight);
}

.legal-document h2 {
  font-size: var(--type-card-title);
  line-height: 1.28;
  font-weight: var(--type-title-weight);
}

.legal-document h3 {
  font-size: var(--type-card-title);
  line-height: 1.28;
  font-weight: var(--type-title-weight);
}

main :is(
  .info-card p,
  .problem .info-card p,
  .problem-grid .info-card p,
  .why-grid .info-card p,
  .platform-copy-card,
  .platform-card .platform-note,
  .platform .scale .check-list li,
  .platform .scale .trl-track p,
  .partner-card li,
  .conversion-list .icon-list li,
  .output-grid figcaption,
  .turtle-contact-card a,
  .request-form,
  .request-form input,
  .request-form select,
  .request-form textarea,
  .privacy-note,
  .privacy-modal-body p,
  .form-success
) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

.legal-document :is(p, li) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

main :is(
  .info-card p,
  .problem .info-card p,
  .problem-grid .info-card p,
  .why-grid .info-card p,
  .materials-copy > p:not(.section-label),
  .platform-copy-card,
  .platform-card .platform-note,
  .platform .scale .check-list li,
  .platform .scale .trl-track p,
  .partner-card li,
  .conversion-list .icon-list li,
  .output-grid figcaption
) {
  color: var(--muted);
}

main .platform .scale .check-list {
  color: rgba(255, 255, 255, 0.96);
}

main .platform .scale .check-list li {
  color: rgba(255, 255, 255, 0.96);
}

main :is(
  .button,
  .form-actions button
) {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

main :is(
  .conversion-list .section-label,
  .outputs .section-label
) {
  font-size: var(--type-card-title);
  line-height: 1.28;
  font-weight: var(--type-title-weight);
}

.team-card .team-copy .lead {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main .hero .hero-subline {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main .problem .section-heading .lead {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main .problem .why-now .section-heading .lead {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main .team-card .team-copy .lead {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

main .partners .section-heading .lead {
  font-size: var(--type-lead);
  line-height: 1.56;
  font-weight: var(--type-body-weight);
}

.turtle-contact-card .section-label {
  font-size: clamp(1.78rem, 2vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--type-title-weight);
}

main .turtle-contact-grid .turtle-contact-card .section-label {
  font-size: clamp(1.78rem, 2vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--type-title-weight);
}

.request-modal h2 {
  font-size: var(--type-card-title);
  line-height: 1.28;
  font-weight: var(--type-title-weight);
}

.request-modal :is(.modal-intro, .privacy-note, .form-success) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

.request-form :is(input, select, textarea) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

.request-form label > span {
  font-size: var(--type-label);
  line-height: 1.14;
  font-weight: var(--type-title-weight);
}

main .button {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.hero .button {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.materials .button-small {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.button.button-primary {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.button.button-small {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.form-actions .button-cancel {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.form-actions .button-submit {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.legal-topbar-nav a {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.legal-footer-nav a {
  font-size: var(--type-button);
  line-height: 1;
  font-weight: var(--type-title-weight);
}

.conversion-list {
  align-items: center;
  text-align: center;
}

.outputs {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.conversion-list .section-label {
  width: 100%;
  margin-bottom: clamp(26px, 3vw, 42px);
  text-align: center;
}

.outputs .section-label {
  width: 100%;
  margin-bottom: clamp(26px, 3vw, 42px);
  text-align: center;
}

.conversion-list .icon-list {
  display: grid;
  width: min(100%, 440px);
  gap: clamp(18px, 2vw, 28px);
  margin: 0 auto;
  padding: 0;
}

main .conversion-list .icon-list li {
  display: grid;
  grid-template-columns: clamp(62px, 5vw, 78px) minmax(0, 1fr);
  width: 100%;
  align-items: center;
  justify-content: stretch;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  color: var(--blue-850);
  font-size: clamp(1.12rem, 1.22vw, 1.36rem);
  line-height: 1.28;
  text-align: left;
}

.conversion-list .icon-list li + li {
  margin-top: 0;
}

main .conversion-card .input-icon {
  width: clamp(52px, 4.2vw, 70px);
  height: clamp(52px, 4.2vw, 70px);
  flex-basis: clamp(52px, 4.2vw, 70px);
  justify-self: center;
}

.partner-card img.invest-badge {
  width: clamp(180px, 14vw, 250px);
}

.turtle-cta-section {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  padding-top: clamp(56px, 5.8vw, 92px);
}

.turtle-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(390px, 0.92fr);
  gap: clamp(18px, 1.8vw, 30px);
  align-items: stretch;
}

.turtle-image-card {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  border-radius: 8px;
}

.turtle-contact-card {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  border-radius: 8px;
}

.turtle-image-card {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1828 / 860;
  border: 1px solid rgba(198, 224, 246, 0.74);
  overflow: hidden;
  background: #077ca0;
  box-shadow: 0 22px 52px rgba(6, 31, 120, 0.08);
}

.turtle-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 41, 70, 0.68) 0%,
      rgba(0, 78, 105, 0.47) 40%,
      rgba(0, 118, 151, 0.12) 68%,
      rgba(0, 118, 151, 0) 100%
    ),
    linear-gradient(180deg, rgba(0, 38, 67, 0.12) 0%, rgba(0, 38, 67, 0.26) 100%);
  pointer-events: none;
}

.turtle-image-card img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.turtle-image-copy {
  position: absolute;
  inset: clamp(28px, 3.5vw, 58px) auto auto clamp(28px, 3.4vw, 58px);
  z-index: 2;
  display: grid;
  gap: clamp(14px, 1.3vw, 22px);
  width: min(64%, 640px);
  color: #ffffff;
  text-align: left;
  pointer-events: none;
}

.turtle-image-headline {
  display: block;
  max-width: 17em;
  font-size: clamp(1.45rem, 2.1vw, 2.72rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 25, 45, 0.42);
}

.turtle-image-text {
  display: block;
  max-width: 30em;
  font-size: clamp(0.98rem, 1.14vw, 1.28rem);
  line-height: 1.55;
  font-weight: var(--type-body-weight);
  text-shadow: 0 2px 7px rgba(0, 25, 45, 0.36);
}

.turtle-image-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 2.6vw, 42px);
  width: fit-content;
  min-height: clamp(48px, 4vw, 64px);
  margin-top: clamp(4px, 0.7vw, 14px);
  padding: 0 clamp(20px, 2vw, 32px);
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 34, 78, 0.16);
  font-size: clamp(0.98rem, 1.04vw, 1.2rem);
  line-height: 1;
  font-weight: var(--type-title-weight);
  white-space: nowrap;
}

.turtle-image-button span {
  font-size: 1.45em;
  line-height: 0;
}

.turtle-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 14px);
  padding: clamp(24px, 2vw, 36px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(198, 224, 246, 0.86);
  box-shadow: 0 22px 52px rgba(6, 31, 120, 0.08);
  color: var(--blue-950);
  font-style: normal;
  text-align: left;
}

main .turtle-contact-card .section-label {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(1.78rem, 2vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--type-title-weight);
  text-transform: uppercase;
}

main .turtle-contact-card strong {
  display: block;
  margin: 0 0 clamp(4px, 0.5vw, 10px);
  color: var(--blue-950);
  font-size: clamp(1.78rem, 2vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--type-title-weight);
}

.turtle-contact-card .contact-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: none;
  grid-auto-flow: row;
  gap: 0;
}

.turtle-contact-card .contact-entry {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  gap: clamp(6px, 0.58vw, 10px);
  padding: clamp(9px, 0.82vw, 13px) 0;
  border-top: 1px solid rgba(0, 103, 191, 0.2);
}

.turtle-contact-card .contact-entry:first-child {
  padding-top: 0;
  border-top: 0;
}

.turtle-contact-card .contact-row {
  display: grid;
  grid-template-columns: clamp(24px, 1.7vw, 32px) minmax(0, 1fr);
  gap: clamp(12px, 1vw, 18px);
  align-items: center;
  color: var(--blue-950);
  text-decoration: none;
}

.turtle-contact-card .contact-person-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.turtle-contact-card .contact-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

main .turtle-contact-card .contact-name {
  color: var(--blue-950);
  font-size: var(--type-card-title);
  line-height: 1.22;
  font-weight: 800;
}

main .turtle-contact-card .contact-role {
  display: block;
  color: var(--blue-950);
  font-size: var(--type-body);
  line-height: 1.36;
  font-weight: var(--type-body-weight);
  white-space: nowrap;
}

.turtle-contact-card .contact-person-card .contact-row {
  grid-area: auto;
  width: max-content;
  max-width: 100%;
  grid-template-columns: clamp(24px, 1.7vw, 32px) max-content;
  justify-self: start;
}

.turtle-contact-card .contact-person-card {
  grid-template-columns: 1fr;
  align-items: start;
}

.turtle-contact-card .contact-person-card .contact-person-copy {
  grid-area: auto;
  justify-self: start;
}

.turtle-contact-card .contact-person-card .contact-phone {
  grid-area: auto;
  justify-self: start;
}

.turtle-contact-card .contact-icon {
  display: grid;
  place-items: center;
  width: clamp(24px, 1.7vw, 32px);
  height: clamp(24px, 1.7vw, 32px);
  color: var(--blue-700);
}

.turtle-contact-card .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main .turtle-contact-card :is(.contact-row, .contact-row span, .contact-copy span) {
  color: var(--blue-950);
  font-size: var(--type-body);
  line-height: 1.42;
  font-weight: var(--type-body-weight);
}

main .turtle-contact-card a.contact-row {
  color: var(--blue-700);
  font-weight: var(--type-title-weight);
}

main .turtle-contact-card .contact-phone span:last-child {
  color: var(--blue-700);
  font-weight: var(--type-title-weight);
}

main .turtle-contact-card .contact-entry > a.contact-row span:last-child {
  color: var(--blue-700);
  font-weight: var(--type-title-weight);
}

main .turtle-contact-card a.contact-row:hover {
  color: var(--cyan);
}

@media (max-width: 1120px) {
  .turtle-contact-grid {
    grid-template-columns: 1fr;
  }

  .turtle-image-card {
    min-height: 0;
  }

  .turtle-contact-card {
    min-height: 0;
  }

  .turtle-image-card {
    height: auto;
    aspect-ratio: 1828 / 860;
  }

  .turtle-contact-card {
    align-items: stretch;
  }

  .turtle-contact-card .contact-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    align-items: stretch;
  }

  .turtle-contact-card .contact-entry {
    border-top: 0;
  }

  .turtle-contact-card .contact-entry:first-child {
    padding-top: clamp(9px, 0.82vw, 13px);
  }

  .turtle-contact-card .contact-entry:nth-child(odd) {
    padding-right: clamp(18px, 3.2vw, 34px);
  }

  .turtle-contact-card .contact-entry:nth-child(even) {
    padding-left: clamp(18px, 3.2vw, 34px);
  }

  .turtle-contact-card .contact-entry:nth-child(1) {
    border-bottom: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(2) {
    border-bottom: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(3) {
    border-bottom: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(4) {
    border-bottom: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(5) {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  main .conversion-list .icon-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  main .conversion-card .input-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .partner-card img.invest-badge {
    width: clamp(150px, 48vw, 210px);
    margin-inline: auto 0;
  }

  .turtle-cta-section {
    padding-top: clamp(40px, 10vw, 64px);
  }

  .turtle-image-card {
    aspect-ratio: 4 / 3;
  }

  .turtle-image-card::before {
    background:
      linear-gradient(
        90deg,
        rgba(0, 41, 70, 0.74) 0%,
        rgba(0, 78, 105, 0.54) 52%,
        rgba(0, 118, 151, 0.1) 100%
      ),
      linear-gradient(180deg, rgba(0, 38, 67, 0.16) 0%, rgba(0, 38, 67, 0.3) 100%);
  }

  .turtle-image-card img {
    object-position: 62% center;
  }

  .turtle-image-copy {
    inset: clamp(22px, 6vw, 34px) clamp(22px, 6vw, 34px) auto clamp(22px, 6vw, 34px);
    width: auto;
    gap: 12px;
  }

  .turtle-image-headline {
    max-width: 12.5em;
    font-size: clamp(1.25rem, 6.4vw, 2.05rem);
  }

  .turtle-image-text {
    max-width: 26em;
    font-size: clamp(0.88rem, 3.5vw, 1.02rem);
    line-height: 1.45;
  }

  .turtle-image-button {
    min-height: 44px;
    padding: 0 18px;
    gap: 18px;
    font-size: 0.94rem;
  }

  .turtle-contact-card {
    padding: clamp(26px, 6.5vw, 36px);
  }

  .turtle-contact-card .contact-body {
    grid-template-columns: 1fr;
  }

  .turtle-contact-card .contact-entry {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(0, 103, 191, 0.2);
  }

  .turtle-contact-card .contact-entry:nth-child(1) {
    border-bottom: 0;
  }

  .turtle-contact-card .contact-entry:nth-child(2) {
    border-bottom: 0;
  }

  .turtle-contact-card .contact-entry:nth-child(3) {
    border-bottom: 0;
  }

  .turtle-contact-card .contact-entry:nth-child(4) {
    border-bottom: 0;
  }

  .turtle-contact-card .contact-entry:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .turtle-contact-card .contact-entry:nth-child(5) {
    grid-column: auto;
  }

  main .turtle-contact-card strong {
    font-size: clamp(1.52rem, 6.5vw, 2.1rem);
  }
}

main :is(
  .conversion-list .icon-list li,
  .problem .section-heading .lead,
  .materials-copy > p,
  .output-grid figcaption
) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

main .materials .materials-copy > p {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}

main .materials .materials-copy > p:not(.section-label) {
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: var(--type-body-weight);
}
