﻿:root {
  --ink: #1c1c1c;
  --accent-warm: #e18d4c;
  --accent-steel: #5e7486;
  --accent-brass: #bea081;
  --cream: #f6f0df;
  --white: #ffffff;
  --font-heading: "Manrope", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --radius-card: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

button,
input,
textarea,
select {
  font: inherit;
  font-weight: 500;
}

strong,
b {
  font-weight: 500;
}

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

img,
video {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 26px clamp(18px, 3vw, 44px);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition:
    color 260ms ease,
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.7, 0.16, 1);
}

.site-header.is-scrolled {
  color: var(--ink);
}

.site-header.is-scrolled .nav-links a {
  color: var(--ink);
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.nav-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.nav-right {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  justify-self: end;
}

.nav-links a {
  opacity: 0.94;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--accent-warm);
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0;
  color: currentColor;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 34px rgba(28, 28, 28, 0.16);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.mobile-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0.9;
  pointer-events: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.4px;
  grid-column: 1;
  grid-row: 1;
  border-radius: 999px;
  background: currentColor;
  transition: width 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.mobile-menu-toggle span:first-child {
  transform: translateY(-3.5px);
}

.mobile-menu-toggle span:last-child {
  width: 13px;
  transform: translate(2.5px, 3.5px);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
body.menu-open .mobile-menu-toggle {
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 18px 42px rgba(28, 28, 28, 0.18);
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid rgba(225, 141, 76, 0.85);
  outline-offset: 4px;
}

body.menu-open .mobile-menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:last-child {
  width: 17px;
  transform: rotate(-45deg);
}

.site-header.is-scrolled .mobile-menu-toggle {
  border-color: rgba(28, 28, 28, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(28, 28, 28, 0.1);
}

.site-header.is-scrolled .mobile-menu-toggle:hover,
.site-header.is-scrolled .mobile-menu-toggle:focus-visible,
body.menu-open .site-header.is-scrolled .mobile-menu-toggle {
  border-color: rgba(28, 28, 28, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu {
  display: none;
}

.brand {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: clamp(118px, 10vw, 162px);
  height: clamp(25px, 2.2vw, 34px);
}

.brand-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transition: opacity 260ms ease;
}

.brand-mark-black {
  opacity: 0;
}

.site-header.is-scrolled .brand-mark-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-mark-black {
  opacity: 1;
}

.scroll-story {
  position: relative;
  height: 235vh;
  background: var(--white);
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.media-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
  border-radius: 0;
  transform: translate(-50%, -50%);
  will-change: width, height, top, border-radius;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  transform: scale(1);
  transition: transform 1800ms cubic-bezier(0.2, 0.7, 0.16, 1);
}

.hero-shade {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.3), rgba(28, 28, 28, 0.04) 35%, rgba(28, 28, 28, 0.68) 100%),
    linear-gradient(90deg, rgba(28, 28, 28, 0.42), rgba(28, 28, 28, 0.04) 48%, rgba(28, 28, 28, 0.46));
  transition: opacity 980ms ease;
  will-change: opacity;
}

.side-gallery {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.side-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity, width, height;
}

.hero-content {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 2.8vw, 42px);
  bottom: clamp(86px, 13vh, 150px);
  left: clamp(18px, 2.8vw, 42px);
  color: var(--white);
  pointer-events: none;
  transition:
    opacity 880ms ease,
    transform 880ms cubic-bezier(0.2, 0.7, 0.16, 1);
  will-change: opacity, transform;
}

body.intro-loading {
  cursor: default;
}

body.intro-loading .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -22px, 0);
}

body.intro-loading .hero-shade {
  opacity: 0 !important;
}

body.intro-loading .hero-video {
  transform: scale(1.035);
}

body.intro-loading .hero-content {
  opacity: 0 !important;
  transform: translate3d(0, 28px, 0) !important;
}

body.intro-revealing .hero-shade {
  transition-delay: 120ms;
}

body.intro-revealing .hero-content {
  transition-delay: 460ms;
}

body.intro-revealing .site-header {
  transition-delay: 0s, 920ms, 920ms;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.22em;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 7.3vw, 116px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 span:last-child {
  white-space: nowrap;
}

.gallery-end {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
}

.intro-statement {
  background: var(--white);
  padding: clamp(96px, 12vw, 190px) 0 clamp(54px, 7vw, 92px);
}

.intro-statement-shell {
  width: min(1360px, calc(100% - clamp(36px, 7vw, 128px)));
  margin: 0 auto;
}

.intro-statement h2 {
  max-width: 1360px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.3vw, 84px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.problem-story {
  position: relative;
  height: 420vh;
  background: var(--white);
}

.problem-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 50vw) minmax(0, 50vw);
  height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.problem-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(96px, 9vw, 132px) clamp(42px, 5vw, 92px) clamp(44px, 5vw, 76px);
  will-change: opacity, transform;
}

.problem-kicker {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.problem-kicker::before {
  position: absolute;
  top: 0.1em;
  bottom: 0.1em;
  left: 0;
  width: 1px;
  content: "";
  background: var(--accent-warm);
}

.problem-copy h2,
.problem-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.problem-copy h2 {
  max-width: 720px;
  font-size: clamp(46px, 5.4vw, 92px);
  font-weight: 500;
  line-height: 1.02;
}

.problem-window {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.problem-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.2vw, 22px);
  padding-right: clamp(36px, 4vw, 72px);
  transform: translate3d(0, -50%, 0);
  will-change: transform;
}

.problem-card {
  position: relative;
  flex: 0 0 clamp(380px, 42vw, 720px);
  width: clamp(380px, 42vw, 720px);
  height: min(76vh, 760px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.problem-card-color {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 70px);
}

.problem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(74px, 8vw, 150px);
  font-weight: 500;
  line-height: 0.88;
}

.problem-card h3 {
  max-width: 520px;
  font-size: clamp(44px, 5vw, 92px);
  font-weight: 500;
  line-height: 0.95;
}

.problem-card p {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}

.problem-card-warm {
  background: var(--accent-steel);
  color: var(--white);
}

.problem-card-steel {
  background: var(--accent-steel);
  color: var(--white);
}

.problem-card-brass {
  background: var(--accent-steel);
  color: var(--white);
}

.problem-card-ink {
  background: var(--accent-steel);
  color: var(--white);
}

.market-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.market-shell {
  width: min(1520px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
  padding: clamp(88px, 9vw, 140px) 0 clamp(70px, 8vw, 118px);
}

.market-kicker {
  position: relative;
  margin: 0 0 clamp(54px, 7vw, 96px);
  padding-left: 18px;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.market-kicker::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 1px;
  content: "";
  background: var(--accent-brass);
}

.market-section h2 {
  max-width: 1180px;
  margin: 0 0 clamp(64px, 8vw, 110px);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.market-diagram {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.64fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 54px);
  align-items: end;
}

.market-side {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.market-side h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: 0;
}

.market-circles {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
}

.market-ring {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: grid;
  place-items: start center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  transform: translateX(-50%) scale(0.72);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.15, 1), opacity 600ms ease;
}

.market-ring span {
  margin-top: 8%;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
}

.market-ring-outer {
  width: 100%;
  height: 100%;
  border: 1px solid currentColor;
  transition-delay: 180ms;
}

.market-ring-middle {
  width: 80%;
  height: 80%;
  background: rgba(28, 28, 28, 0.04);
  color: var(--ink);
  transition-delay: 320ms;
}

.market-ring-inner {
  width: 54%;
  height: 54%;
  color: var(--ink);
  transition-delay: 460ms;
}

.market-ring-inner span {
  align-self: center;
  margin-top: 0;
}

.market-side-shared .market-ring-outer,
.market-side-shared .market-ring-middle {
  color: var(--accent-brass);
}

.market-side-shared .market-ring-inner {
  background: var(--accent-brass);
}

.market-side-delivery .market-ring-outer,
.market-side-delivery .market-ring-middle {
  color: var(--accent-steel);
}

.market-side-delivery .market-ring-inner {
  background: var(--accent-steel);
  color: var(--white);
}

.market-axis {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-self: end;
  height: min(76vw, 390px);
  padding: 44px 0 80px;
}

.market-axis-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  color: var(--ink);
}

.market-axis-row span {
  display: block;
  height: 1px;
  background-image: linear-gradient(to right, currentColor 50%, transparent 50%);
  background-size: 8px 1px;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 700ms ease, opacity 500ms ease;
}

.market-axis-row span:first-child {
  transform-origin: right center;
}

.market-axis-row span:last-of-type {
  transform-origin: left center;
}

.market-axis-row strong {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 500;
  white-space: nowrap;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 620ms ease, opacity 500ms ease;
}

.market-axis-row sup {
  font-size: 0.5em;
  line-height: 0;
}

.market-axis-row small {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: -16px;
  color: rgba(28, 28, 28, 0.78);
  font-size: clamp(13px, 1.1vw, 18px);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 620ms ease, opacity 500ms ease;
}

.market-footnote {
  max-width: 760px;
  margin: clamp(34px, 4vw, 54px) auto 0;
  color: rgba(28, 28, 28, 0.84);
  font-size: clamp(13px, 1.1vw, 17px);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.market-kicker,
.market-section h2,
.market-side h3,
.market-footnote {
  transform: translateY(26px);
  opacity: 0;
  transition: transform 720ms ease, opacity 620ms ease;
}

.market-section.is-visible .market-kicker,
.market-section.is-visible h2,
.market-section.is-visible .market-side h3,
.market-section.is-visible .market-footnote {
  transform: translateY(0);
  opacity: 1;
}

.market-section.is-visible h2 {
  transition-delay: 120ms;
}

.market-section.is-visible .market-side h3 {
  transition-delay: 260ms;
}

.market-section.is-visible .market-ring {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.market-section.is-visible .market-axis-row span {
  transform: scaleX(1);
  opacity: 0.8;
}

.market-section.is-visible .market-axis-row strong,
.market-section.is-visible .market-axis-row small {
  transform: translateY(0);
  opacity: 1;
}

.market-section.is-visible .market-axis-row:nth-child(1) span,
.market-section.is-visible .market-axis-row:nth-child(1) strong {
  transition-delay: 360ms;
}

.market-section.is-visible .market-axis-row:nth-child(2) span,
.market-section.is-visible .market-axis-row:nth-child(2) strong {
  transition-delay: 520ms;
}

.market-section.is-visible .market-axis-row:nth-child(3) span,
.market-section.is-visible .market-axis-row:nth-child(3) strong,
.market-section.is-visible .market-axis-row:nth-child(3) small {
  transition-delay: 680ms;
}

.market-section.is-visible .market-footnote {
  transition-delay: 780ms;
}

.solution-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  padding: clamp(52px, 6vw, 88px) 0 clamp(74px, 7vw, 108px);
}

.solution-showcase {
  --solution-color: var(--accent-brass);
  --solution-glow: rgba(190, 160, 129, 0.88);
  --focus-x: 52%;
  --focus-y: 52%;
  --solution-parallax: 0px;
  position: relative;
  width: 100vw;
  min-height: 760px;
  height: min(82vh, 920px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.solution-showcase[data-active-solution="delivery"] {
  --solution-color: var(--accent-steel);
  --solution-glow: rgba(94, 116, 134, 0.9);
  --focus-x: 66%;
  --focus-y: 48%;
}

.solution-showcase[data-active-solution="operations"] {
  --solution-color: var(--accent-warm);
  --solution-glow: rgba(225, 141, 76, 0.92);
  --focus-x: 78%;
  --focus-y: 54%;
}

.solution-image,
.solution-image-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-image {
  z-index: 1;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
  transform: translate3d(0, var(--solution-parallax), 0) scale(1.1);
  filter: saturate(0.96) contrast(1.02);
  transition: object-position 820ms cubic-bezier(0.2, 0.7, 0.16, 1);
}

.solution-image-tint {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(28, 28, 28, 0.58), rgba(28, 28, 28, 0.24) 35%, rgba(28, 28, 28, 0.04) 72%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.1), rgba(28, 28, 28, 0.14));
}

.solution-content {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(620px, calc(100% - 52px));
  height: 100%;
  margin-left: clamp(26px, 5.7vw, 92px);
  padding: clamp(82px, 9vw, 142px) 0 clamp(180px, 17vw, 240px);
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
}

.solution-mode {
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(28, 28, 28, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.solution-content h2 {
  max-width: 560px;
  margin: 0 0 30px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 4.35vw, 70px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.solution-copy {
  max-width: 490px;
  margin: 0 0 20px;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.solution-detail {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.28;
}

.solution-path {
  position: absolute;
  z-index: 4;
  left: 39%;
  top: 58%;
  height: 3px;
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, transparent, var(--solution-glow), transparent);
  box-shadow: 0 0 18px var(--solution-glow), 0 0 36px rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transform-origin: left center;
  opacity: 0;
}

.solution-path-one {
  width: min(38vw, 620px);
  transform: rotate(-7deg) scaleX(0);
}

.solution-path-two {
  top: 65%;
  left: 55%;
  width: min(28vw, 460px);
  transform: rotate(8deg) scaleX(0);
}

.solution-tabs {
  position: absolute;
  z-index: 7;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(26px, 4vw, 58px);
  left: clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  width: auto;
  margin: 0;
}

.solution-tab {
  position: relative;
  min-height: clamp(92px, 8vw, 116px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: clamp(16px, 1.9vw, 26px);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 44px rgba(28, 28, 28, 0.18);
  transform: translateY(0);
  transition: transform 220ms ease, background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.solution-tab:nth-child(1),
.solution-tab:nth-child(2),
.solution-tab:nth-child(3) {
  background: rgba(255, 255, 255, 0.9);
}

.solution-tab::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: var(--accent-warm);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms ease;
}

.solution-tab span,
.solution-tab strong {
  position: relative;
  z-index: 1;
  display: block;
}

.solution-tab span {
  margin-bottom: 10px;
  color: rgba(28, 28, 28, 0.62);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.2;
}

.solution-tab strong {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.solution-tab:hover,
.solution-tab:focus-visible,
.solution-tab.is-active {
  transform: translateY(-4px);
}

.solution-tab:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 4px;
}

.solution-tab.is-active::before {
  transform: scaleX(1);
}

.solution-tab.is-active {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.solution-tab:nth-child(1).is-active,
.solution-tab:nth-child(2).is-active,
.solution-tab:nth-child(3).is-active {
  background: rgba(225, 141, 76, 0.9);
}

.solution-tab.is-active span {
  color: rgba(255, 255, 255, 0.84);
}

.solution-showcase,
.solution-tab {
  opacity: 0;
  transform: translateY(34px);
}

.solution-section.is-visible .solution-showcase,
.solution-section.is-visible .solution-tab {
  opacity: 1;
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 620ms ease;
}

.solution-section.is-visible .solution-showcase {
  transition-delay: 100ms;
}

.solution-section.is-visible .solution-image {
  transform: translate3d(0, var(--solution-parallax), 0) scale(1.06);
}

.solution-section.is-visible .solution-tab:nth-child(1) {
  transition-delay: 240ms;
}

.solution-section.is-visible .solution-tab:nth-child(2) {
  transition-delay: 330ms;
}

.solution-section.is-visible .solution-tab:nth-child(3) {
  transition-delay: 420ms;
}

.solution-section.is-visible .solution-tab:hover,
.solution-section.is-visible .solution-tab:focus-visible,
.solution-section.is-visible .solution-tab.is-active {
  transform: translateY(-4px);
}

.solution-section.is-visible .solution-path-one {
  animation: drawSolutionPath 1800ms 580ms ease forwards, pulseSolutionPath 2400ms 2200ms ease-in-out infinite;
}

.solution-section.is-visible .solution-path-two {
  animation: drawSolutionPathTwo 1600ms 860ms ease forwards, pulseSolutionPath 2500ms 2400ms ease-in-out infinite;
}

.solution-content.is-changing {
  animation: solutionCopySwap 420ms ease;
}

.platform-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  padding: clamp(86px, 9vw, 150px) 0 clamp(96px, 10vw, 170px);
}

.platform-shell {
  display: grid;
  gap: clamp(82px, 10vw, 156px);
  width: min(1520px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
}

.platform-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.platform-row-flipped {
  grid-template-columns: minmax(480px, 1.14fr) minmax(300px, 0.86fr);
}

.platform-copy {
  max-width: 640px;
}

.platform-kicker {
  position: relative;
  margin: 0 0 clamp(30px, 3vw, 48px);
  padding-left: 18px;
  color: rgba(28, 28, 28, 0.72);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.platform-kicker::before {
  position: absolute;
  top: 0.08em;
  bottom: 0.08em;
  left: 0;
  width: 1px;
  content: "";
  background: var(--accent-brass);
}

.platform-copy h2 {
  margin: 0 0 clamp(18px, 2.2vw, 30px);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.1vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.platform-copy p:last-child {
  margin: 0;
  color: rgba(28, 28, 28, 0.78);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.48;
}

.platform-copy p:last-child strong {
  font-weight: 500;
}

.platform-media {
  position: relative;
  height: clamp(420px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(28, 28, 28, 0.06);
  box-shadow: 0 28px 80px rgba(28, 28, 28, 0.09);
}

.platform-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(28, 28, 28, 0.06)),
    radial-gradient(circle at 18% 72%, rgba(225, 141, 76, 0.16), transparent 30%);
}

.platform-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1100ms cubic-bezier(0.2, 0.7, 0.16, 1);
}

.platform-media-crop img {
  object-position: 68% center;
}

.platform-media-data {
  height: clamp(420px, 34vw, 560px);
}

.platform-media-data::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.72;
  background:
    radial-gradient(circle at 22% 72%, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.84) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 58%, rgba(255, 255, 255, 0.86) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.78) 0 3px, transparent 4px),
    linear-gradient(24deg, transparent 0 45%, rgba(91, 219, 223, 0.52) 45.15%, transparent 45.55%),
    linear-gradient(154deg, transparent 0 49%, rgba(255, 255, 255, 0.5) 49.12%, transparent 49.46%),
    linear-gradient(108deg, transparent 0 54%, rgba(91, 219, 223, 0.38) 54.14%, transparent 54.48%);
  mix-blend-mode: screen;
}

.platform-media-data::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(28, 28, 28, 0.04)),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.38), transparent 30%),
    radial-gradient(circle at 42% 68%, rgba(91, 219, 223, 0.28), transparent 34%);
}

.platform-media-data img {
  object-position: 58% center;
}

.platform-row {
  opacity: 0;
  transform: translateY(42px);
  transition: transform 850ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 720ms ease;
}

.platform-section.is-visible .platform-row {
  opacity: 1;
  transform: translateY(0);
}

.platform-section.is-visible .platform-row:nth-child(2) {
  transition-delay: 180ms;
}

.platform-section.is-visible .platform-row:nth-child(3) {
  transition-delay: 320ms;
}

.platform-section.is-visible .platform-media img {
  transform: scale(1);
}

.map-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  padding: clamp(94px, 10vw, 168px) 0 clamp(100px, 10vw, 176px);
}

.map-shell {
  width: min(1320px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
}

.map-kicker {
  position: relative;
  width: max-content;
  margin: 0 auto clamp(42px, 5vw, 76px);
  padding-left: 18px;
  color: rgba(28, 28, 28, 0.78);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.map-kicker::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 1px;
  content: "";
  background: var(--accent-brass);
}

.map-section h2 {
  max-width: 960px;
  margin: 0 auto clamp(54px, 7vw, 92px);
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: center;
}

.map-stage {
  position: relative;
  width: min(1040px, 94vw);
  margin: 0 auto;
  aspect-ratio: 1270 / 1239;
}

.map-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: block;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color 220ms ease, transform 220ms ease;
}

.map-pin-utrecht {
  top: 30%;
  left: 20.5%;
}

.map-pin-hamburg {
  top: 17.4%;
  left: 42.2%;
}

.map-pin-tubingen {
  top: 61.2%;
  left: 36.4%;
}

.map-pin-freiburg {
  top: 70.5%;
  left: 37%;
}

.map-pin-vienna {
  top: 72.8%;
  left: 83.4%;
}

.map-pin-latvia {
  top: 13.4%;
  left: 87.1%;
}

.map-pin-latvia .map-dot {
  border-color: var(--accent-steel);
  background: var(--accent-steel);
}

.map-pin-latvia .map-label {
  color: var(--accent-steel);
  text-shadow: none;
}

.map-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(13px, 1.4vw, 18px);
  height: clamp(13px, 1.4vw, 18px);
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(225, 141, 76, 0.34), 0 10px 24px rgba(28, 28, 28, 0.2);
  transform: translate(-50%, -50%);
  transition: background 220ms ease, box-shadow 260ms ease, transform 220ms ease;
}

.map-label {
  position: absolute;
  top: 50%;
  left: calc(50% + clamp(16px, 1.8vw, 22px));
  padding: 7px 9px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0);
  color: var(--white);
  text-shadow: 0 1px 12px rgba(28, 28, 28, 0.32);
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, text-shadow 220ms ease;
  white-space: nowrap;
}

.map-pin-vienna .map-label {
  right: calc(50% + clamp(16px, 1.8vw, 22px));
  left: auto;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  color: var(--accent-warm);
  transform: translate(-50%, -50%) scale(1.06);
}

.map-pin:hover .map-dot,
.map-pin:focus-visible .map-dot,
.map-pin.is-active .map-dot {
  background: var(--accent-warm);
  box-shadow: 0 0 0 10px rgba(225, 141, 76, 0.18), 0 12px 28px rgba(28, 28, 28, 0.24);
}

.map-pin:hover .map-label,
.map-pin:focus-visible .map-label,
.map-pin.is-active .map-label {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-shadow: none;
}

.map-pin:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 7px;
  border-radius: var(--radius-card);
}

.map-card {
  position: absolute;
  z-index: 4;
  right: min(2vw, 18px);
  bottom: min(2vw, 18px);
  width: min(360px, 40%);
  margin: 0;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(28, 28, 28, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 600ms ease;
}

.map-card.is-changing {
  animation: mapCardSwap 360ms ease;
}

.map-card-kicker {
  margin: 0 0 10px;
  color: var(--accent-steel);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.map-card p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.35;
}

.map-card-champion {
  margin-top: 14px;
}

.map-card-champion strong {
  font-weight: 500;
}

.map-kicker,
.map-section h2,
.map-stage {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 620ms ease;
}

.map-section.is-visible .map-kicker,
.map-section.is-visible h2,
.map-section.is-visible .map-stage,
.map-section.is-visible .map-card {
  opacity: 1;
  transform: translateY(0);
}

.map-section.is-visible h2 {
  transition-delay: 120ms;
}

.map-section.is-visible .map-stage {
  transition-delay: 240ms;
}

.map-section.is-visible .map-card {
  transition-delay: 420ms;
}

.team-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  padding: clamp(96px, 10vw, 166px) 0 clamp(110px, 11vw, 190px);
}

.team-shell {
  width: min(1520px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
}

.team-kicker {
  position: relative;
  margin: 0 0 clamp(48px, 6vw, 88px);
  padding-left: 18px;
  color: rgba(28, 28, 28, 0.78);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.team-kicker::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 1px;
  content: "";
  background: var(--accent-brass);
}

.team-section h2 {
  max-width: 1260px;
  margin: 0 0 clamp(48px, 6vw, 80px);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.7vw, 74px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.team-layout {
  display: grid;
  gap: clamp(74px, 8vw, 124px);
}

.founders-panel h3,
.advisor-panel h3 {
  margin: 0 0 clamp(34px, 4vw, 58px);
  color: var(--accent-steel);
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

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

.founder-card {
  position: relative;
  text-align: left;
}

.founder-photo {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f1ec;
  box-shadow: none;
  aspect-ratio: 0.9;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.16, 1), filter 500ms ease;
}

.founder-card:hover .founder-photo img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.01);
}

.founder-card h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.founder-role {
  margin: 8px 0 16px;
  color: rgba(28, 28, 28, 0.52);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.18;
}

.founder-card p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(28, 28, 28, 0.52);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}

.advisor-panel {
  padding-top: 0;
}

.advisor-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.advisor-item {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 8px;
  background: rgba(28, 28, 28, 0.025);
}

.advisor-item > div {
  min-width: 0;
}

.advisor-item img,
.advisor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.12);
}

.advisor-avatar {
  display: grid;
  place-items: center;
  background: var(--accent-steel);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.advisor-item h4 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.advisor-item p {
  margin: 0 0 2px;
  color: var(--accent-steel);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.1;
}

.advisor-item span {
  display: block;
  color: rgba(28, 28, 28, 0.48);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.2;
}

.team-kicker,
.team-section h2,
.founders-panel,
.advisor-panel {
  opacity: 0;
  transform: translateY(34px);
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 620ms ease;
}

.team-section.is-visible .team-kicker,
.team-section.is-visible h2,
.team-section.is-visible .founders-panel,
.team-section.is-visible .advisor-panel {
  opacity: 1;
  transform: translateY(0);
}

.team-section.is-visible h2 {
  transition-delay: 120ms;
}

.team-section.is-visible .founders-panel {
  transition-delay: 240ms;
}

.team-section.is-visible .advisor-panel {
  transition-delay: 360ms;
}

.final-cta-section {
  overflow: hidden;
  background: var(--white);
  padding: clamp(52px, 6vw, 96px) 0 clamp(28px, 5vw, 70px);
}

.final-cta-card {
  position: relative;
  width: min(1600px, calc(100% - clamp(32px, 6vw, 116px)));
  min-height: clamp(640px, 78vh, 980px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  isolation: isolate;
  opacity: 0;
  transform: translateY(36px);
  transition: transform 860ms cubic-bezier(0.2, 0.7, 0.16, 1), opacity 700ms ease;
}

.final-cta-media,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta-media {
  z-index: 1;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.16, 1);
}

.final-cta-shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.08), rgba(28, 28, 28, 0.1) 42%, rgba(28, 28, 28, 0.58) 100%),
    linear-gradient(90deg, rgba(28, 28, 28, 0.18), rgba(28, 28, 28, 0.04) 50%, rgba(28, 28, 28, 0.18));
}

.final-cta-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: inherit;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(84px, 9vw, 150px) clamp(24px, 4vw, 70px) clamp(150px, 14vw, 230px);
  color: var(--white);
  text-align: center;
}

.final-cta-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 7.4vw, 122px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.final-cta-actions {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 8vw, 128px);
  bottom: clamp(18px, 2.6vw, 42px);
  left: clamp(22px, 8vw, 128px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  align-items: stretch;
  min-height: clamp(112px, 9vw, 150px);
}

.final-cta-link {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: clamp(20px, 2vw, 30px);
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.2;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.final-cta-label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.final-cta-link strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.final-cta-link small {
  display: block;
  max-width: 310px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 500;
  line-height: 1.25;
}

.final-cta-button {
  display: inline-flex;
  min-height: 40px;
  margin-top: auto;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-card);
  padding: 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.final-cta-link-dark {
  background: rgba(28, 28, 28, 0.9);
}

.final-cta-link-accent {
  border-color: rgba(255, 255, 255, 0.56);
  background: var(--accent-warm);
}

.final-cta-link-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.final-cta-link-light .final-cta-label,
.final-cta-link-light small {
  color: rgba(28, 28, 28, 0.58);
}

.final-cta-link-light .final-cta-button {
  border-color: rgba(28, 28, 28, 0.34);
  color: var(--ink);
}

.final-cta-link:hover,
.final-cta-link:focus-visible {
  transform: translateY(-5px);
}

.final-cta-link:hover .final-cta-button,
.final-cta-link:focus-visible .final-cta-button {
  transform: translateY(-2px);
}

.final-cta-link-dark:hover .final-cta-button,
.final-cta-link-dark:focus-visible .final-cta-button,
.final-cta-link-accent:hover .final-cta-button,
.final-cta-link-accent:focus-visible .final-cta-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.final-cta-link-light:hover .final-cta-button,
.final-cta-link-light:focus-visible .final-cta-button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.final-cta-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -6px;
}

.final-cta-section.is-visible .final-cta-card {
  opacity: 1;
  transform: translateY(0);
}

.final-cta-section.is-visible .final-cta-media {
  transform: scale(1);
}

.site-footer {
  background: var(--white);
  color: var(--ink);
  padding: clamp(88px, 9vw, 150px) 0 0;
}

.footer-shell {
  width: min(1520px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: start;
  margin-bottom: clamp(92px, 9vw, 138px);
}

.footer-brand-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.footer-brand-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(28, 28, 28, 0.48);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.16;
}

.footer-primary-links {
  display: grid;
}

.footer-primary-links a {
  display: block;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.14);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.1vw, 33px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  transition: color 180ms ease, padding-left 180ms ease;
}

.footer-primary-links a:hover,
.footer-primary-links a:focus-visible {
  color: var(--accent-warm);
  padding-left: 10px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent-warm);
}

.footer-disclaimer {
  max-width: 1320px;
  margin: 0 0 28px;
  color: rgba(28, 28, 28, 0.54);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.24;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(28, 28, 28, 0.14);
  color: rgba(28, 28, 28, 0.48);
  font-size: 13px;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
  grid-column: 2;
}

.legal-page {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
}

.legal-header {
  display: flex;
  width: min(1320px, calc(100% - clamp(36px, 7vw, 128px)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) 0;
  align-items: center;
  justify-content: space-between;
}

.legal-brand {
  display: block;
  width: 154px;
  height: 34px;
}

.legal-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.legal-home-link {
  padding: 12px 16px;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-radius: var(--radius-card);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 220ms ease, color 220ms ease;
}

.legal-home-link:hover,
.legal-home-link:focus-visible {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

.legal-main {
  padding: clamp(34px, 5vw, 76px) 0 clamp(80px, 10vw, 150px);
}

.legal-document {
  width: min(920px, calc(100% - clamp(36px, 7vw, 128px)));
  margin: 0 auto;
}

.legal-kicker {
  position: relative;
  margin: 0 0 34px;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.legal-kicker::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 1px;
  background: var(--accent-warm);
  content: "";
}

.legal-document h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.legal-updated {
  margin: 18px 0 clamp(58px, 8vw, 94px);
  color: rgba(28, 28, 28, 0.52);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
}

.legal-document section {
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid rgba(28, 28, 28, 0.12);
}

.legal-document h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.legal-document p,
.legal-document li {
  color: rgba(28, 28, 28, 0.66);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  color: var(--accent-warm);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2.4vw, 34px);
  width: min(680px, calc(100% - 32px));
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(28, 28, 28, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cookie-banner-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(28, 28, 28, 0.62);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.cookie-banner-copy a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-warm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  align-items: end;
}

.cookie-button {
  min-height: 44px;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: var(--radius-card);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cookie-button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.cookie-button-primary {
  border-color: var(--accent-warm);
  color: var(--white);
  background: var(--accent-warm);
}

.cookie-button:hover,
.cookie-button:focus-visible {
  border-color: var(--accent-warm);
}

.site-header,
.site-header .nav-links a,
.eyebrow,
.problem-kicker,
.problem-card p,
.market-kicker,
.market-axis-row small,
.market-footnote,
.solution-mode,
.solution-copy,
.solution-detail,
.solution-tab span,
.platform-kicker,
.platform-copy p,
.platform-copy p:last-child strong,
.map-kicker,
.map-pin,
.map-card-kicker,
.map-card p,
.map-card-champion strong,
.team-kicker,
.founder-card p,
.advisor-item p,
.footer-disclaimer,
.footer-bottom,
.final-cta-link,
.final-cta-link small {
  font-family: var(--font-body);
  font-weight: 500;
}

h1,
.intro-statement h2,
.problem-copy h2,
.problem-card h3,
.problem-number,
.market-section h2,
.market-side h3,
.market-ring,
.market-axis-row strong,
.solution-content h2,
.solution-tab strong,
.platform-copy h2,
.map-section h2,
.map-card h3,
.team-section h2,
.founders-panel h3,
.advisor-panel h3,
.founder-card h4,
.founder-role,
.advisor-avatar,
.advisor-item h4,
.final-cta-copy h2,
.final-cta-link strong,
.footer-brand-copy h2,
.footer-primary-links a {
  font-family: var(--font-heading);
  font-weight: 500;
}

.side-image,
.problem-card,
.solution-mode,
.solution-tab,
.platform-media,
.map-label,
.map-card,
.founder-photo,
.advisor-item,
.final-cta-card,
.final-cta-actions,
.final-cta-link {
  border-radius: var(--radius-card);
}

@keyframes mapCardSwap {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  45% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawSolutionPath {
  0% {
    opacity: 0;
    transform: rotate(-7deg) scaleX(0);
  }

  100% {
    opacity: 0.9;
    transform: rotate(-7deg) scaleX(1);
  }
}

@keyframes drawSolutionPathTwo {
  0% {
    opacity: 0;
    transform: rotate(8deg) scaleX(0);
  }

  100% {
    opacity: 0.76;
    transform: rotate(8deg) scaleX(1);
  }
}

@keyframes pulseSolutionPath {
  0%,
  100% {
    filter: brightness(0.95);
    opacity: 0.7;
  }

  50% {
    filter: brightness(1.25);
    opacity: 1;
  }
}

@keyframes solutionCopySwap {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  45% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    z-index: 50;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 0;
  }

  .site-header .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 74px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 8px;
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(28, 28, 28, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(18px);
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu a {
    display: flex;
    min-height: 54px;
    align-items: center;
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    padding: 0 14px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  h1 {
    gap: 0.18em;
    font-size: clamp(52px, 13vw, 104px);
  }

  .problem-stage {
    grid-template-columns: 1fr;
  }

  .problem-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 680px);
    padding: 78px 24px 0;
  }

  .problem-copy h2 {
    font-size: clamp(32px, 7vw, 52px);
  }

  .problem-window {
    min-height: 100vh;
  }

  .problem-track {
    top: 59%;
    left: 24px;
  }

  .problem-card {
    flex-basis: min(76vw, 520px);
    width: min(76vw, 520px);
    height: min(46vh, 480px);
  }

  .market-diagram {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .market-axis {
    order: -1;
    height: auto;
    padding: 0;
    gap: 14px;
  }

  .market-axis-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .market-axis-row span {
    display: none;
  }

  .market-axis-row small {
    justify-self: start;
    margin-top: -8px;
  }

  .market-circles {
    width: min(82vw, 430px);
  }

  .solution-showcase {
    min-height: 720px;
    height: min(86vh, 820px);
  }

  .solution-content {
    justify-content: center;
    padding-top: 82px;
    padding-bottom: clamp(160px, 22vw, 220px);
  }

  .solution-image-tint {
    background:
      linear-gradient(180deg, rgba(28, 28, 28, 0.08), rgba(28, 28, 28, 0.62) 70%, rgba(28, 28, 28, 0.82)),
      linear-gradient(90deg, rgba(28, 28, 28, 0.42), rgba(28, 28, 28, 0.08));
  }

  .solution-path {
    display: none;
  }

  .solution-tabs {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-tab {
    min-height: 82px;
    padding: 16px;
  }

  .platform-row,
  .platform-row-flipped {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .platform-row-flipped .platform-media {
    order: 2;
  }

  .platform-row-flipped .platform-copy {
    order: 1;
  }

  .platform-copy {
    max-width: 780px;
  }

  .platform-media {
    height: clamp(320px, 54vw, 520px);
  }

  .map-section h2 {
    max-width: 760px;
  }

  .map-stage {
    display: grid;
    gap: 22px;
    width: min(760px, 92vw);
    aspect-ratio: auto;
  }

  .map-art {
    aspect-ratio: 1270 / 1239;
  }

  .map-pin {
    font-size: 14px;
  }

  .map-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .founder-grid {
    gap: 38px;
  }

  .advisor-panel {
    padding-top: 24px;
  }

  .advisor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-item {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
  }

  .final-cta-card {
    min-height: 680px;
  }

  .final-cta-actions {
    right: 24px;
    left: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    margin-bottom: 82px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 20px 18px;
  }

  .brand {
    width: 122px;
    height: 26px;
  }

  .hero-content {
    bottom: 84px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .problem-story {
    height: 250vh;
  }

  .problem-copy {
    gap: 12px;
    padding: 56px 18px 0;
  }

  .problem-kicker {
    font-size: 10px;
  }

  .problem-copy h2 {
    font-size: clamp(28px, 8.4vw, 39px);
    line-height: 1.02;
  }

  .problem-track {
    top: 46%;
    left: 18px;
    gap: 10px;
  }

  .problem-card {
    flex-basis: 76vw;
    width: 76vw;
    height: min(38vh, 360px);
  }

  .problem-card-color {
    padding: 22px;
  }

  .problem-number {
    font-size: clamp(48px, 14vw, 72px);
  }

  .problem-card h3 {
    font-size: clamp(28px, 8.6vw, 42px);
  }

  .problem-card p {
    font-size: clamp(18px, 5.4vw, 26px);
    line-height: 1.12;
  }

  .intro-statement {
    padding: 64px 0 34px;
  }

  .intro-statement-shell {
    width: min(100% - 36px, 1360px);
  }

  .market-shell {
    width: min(100% - 36px, 1520px);
    padding: 72px 0 84px;
  }

  .market-kicker {
    margin-bottom: 42px;
  }

  .market-section h2 {
    margin-bottom: 50px;
    font-size: clamp(31px, 9vw, 46px);
  }

  .market-side {
    gap: 18px;
  }

  .market-circles {
    width: min(88vw, 360px);
  }

  .market-ring span {
    font-size: clamp(18px, 6vw, 25px);
  }

  .market-axis-row strong {
    font-size: 24px;
  }

  .solution-section {
    padding: 40px 0 58px;
  }

  .solution-tabs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0 8px 8px;
  }

  .solution-showcase {
    display: grid;
    width: min(100% - 32px, 620px);
    min-height: 0;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(28, 28, 28, 0.08);
  }

  .solution-image {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.18;
    object-fit: cover;
    object-position: var(--focus-x) var(--focus-y);
    transform: none;
  }

  .solution-section.is-visible .solution-image {
    transform: none;
  }

  .solution-image-tint,
  .solution-path {
    display: none;
  }

  .solution-content {
    width: min(100% - 36px, 520px);
    height: auto;
    margin: 0 auto;
    padding: 24px 0 22px;
    justify-content: flex-start;
    color: var(--ink);
  }

  .solution-mode {
    border-color: rgba(28, 28, 28, 0.12);
    background: rgba(28, 28, 28, 0.04);
    color: rgba(28, 28, 28, 0.62);
    font-size: 11px;
    backdrop-filter: none;
  }

  .solution-content h2 {
    margin-bottom: 18px;
    font-size: clamp(31px, 8.8vw, 43px);
  }

  .solution-copy {
    max-width: 350px;
    margin-bottom: 12px;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.38;
  }

  .solution-detail {
    max-width: 350px;
    color: rgba(28, 28, 28, 0.68);
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.34;
  }

  .solution-tab {
    min-height: 70px;
    padding: 9px 8px;
  }

  .solution-tab span {
    margin-bottom: 5px;
    font-size: clamp(10px, 2.7vw, 12px);
    line-height: 1.15;
  }

  .solution-tab strong {
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.12;
  }

  .platform-section {
    padding: 72px 0 92px;
  }

  .platform-shell {
    width: min(100% - 36px, 1520px);
    gap: 72px;
  }

  .platform-kicker {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .platform-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(33px, 10vw, 48px);
  }

  .platform-copy p:last-child {
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.42;
  }

  .platform-media {
    height: 280px;
  }

  .map-section {
    padding: 76px 0 94px;
  }

  .map-shell {
    width: min(100% - 36px, 1320px);
  }

  .map-kicker {
    margin-bottom: 34px;
  }

  .map-section h2 {
    margin-bottom: 44px;
    font-size: clamp(31px, 9vw, 46px);
  }

  .map-pin {
    gap: 6px;
  }

  .map-label {
    padding: 5px 7px;
    font-size: 12px;
  }

  .map-card {
    padding: 22px;
  }

  .map-card h3 {
    font-size: 30px;
  }

  .team-section {
    padding: 76px 0 98px;
  }

  .team-shell {
    width: min(100% - 36px, 1520px);
  }

  .team-kicker {
    margin-bottom: 34px;
  }

  .team-section h2 {
    margin-bottom: 42px;
    font-size: clamp(31px, 9vw, 46px);
  }

  .founders-panel h3,
  .advisor-panel h3 {
    margin-bottom: 30px;
    font-size: 27px;
  }

  .founder-grid,
  .advisor-list {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: 100%;
    aspect-ratio: 0.92;
  }

  .founder-card p:last-child {
    max-width: 100%;
  }

  .advisor-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .advisor-item img,
  .advisor-avatar {
    width: 58px;
    height: 58px;
  }

  .final-cta-section {
    padding: 44px 0 48px;
  }

  .final-cta-card {
    width: min(100% - 32px, 1600px);
    min-height: 760px;
  }

  .final-cta-copy {
    align-items: flex-start;
    padding: 72px 22px 390px;
  }

  .final-cta-copy h2 {
    max-width: 360px;
    margin: 0 auto;
    font-size: clamp(38px, 10vw, 56px);
    line-height: 0.98;
  }

  .final-cta-shade {
    background:
      linear-gradient(180deg, rgba(28, 28, 28, 0.2), rgba(28, 28, 28, 0.22) 30%, rgba(28, 28, 28, 0.7) 100%),
      linear-gradient(90deg, rgba(28, 28, 28, 0.24), rgba(28, 28, 28, 0.08) 50%, rgba(28, 28, 28, 0.24));
  }

  .final-cta-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
    border-radius: var(--radius-card);
  }

  .final-cta-link {
    min-height: 112px;
    padding: 18px 18px 16px;
    background-clip: padding-box;
  }

  .final-cta-label {
    margin-bottom: 8px;
  }

  .final-cta-link strong {
    font-size: 22px;
  }

  .final-cta-link small {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .final-cta-button {
    min-height: 38px;
  }

  .site-footer {
    padding-top: 72px;
  }

  .footer-shell {
    width: min(100% - 36px, 1520px);
  }

  .footer-brand-copy p {
    font-size: clamp(20px, 6vw, 25px);
  }

  .footer-primary-links a {
    padding: 15px 0 14px;
    font-size: 25px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom div {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .legal-header {
    width: min(100% - 36px, 1320px);
    padding: 24px 0;
  }

  .legal-brand {
    width: 124px;
    height: 28px;
  }

  .legal-home-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .legal-document {
    width: min(100% - 36px, 920px);
  }

  .legal-document h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-button {
    width: 100%;
  }
}

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

  body.intro-loading .site-header,
  body.intro-loading .hero-content,
  body.intro-loading .hero-shade {
    opacity: 1 !important;
    transform: none !important;
  }

  body.intro-loading .hero-video {
    transform: none;
  }

  .scroll-story {
    height: 100vh;
  }

  .market-ring,
  .market-kicker,
  .market-section h2,
  .market-side h3,
  .market-footnote,
  .market-axis-row span,
  .market-axis-row strong,
  .market-axis-row small,
  .solution-showcase,
  .solution-image,
  .solution-tab,
  .platform-row,
  .platform-media img,
  .map-kicker,
  .map-section h2,
  .map-stage,
  .map-card,
  .team-kicker,
  .team-section h2,
  .founders-panel,
  .advisor-panel,
  .founder-photo img,
  .final-cta-card,
  .final-cta-media,
  .final-cta-link {
    transition: none;
  }

  .solution-section.is-visible .solution-path-one,
  .solution-section.is-visible .solution-path-two,
  .solution-content.is-changing,
  .map-card.is-changing {
    animation: none;
  }
}
