@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/lato-400-cyrillic.woff2?v=6800cd01cdda") format("woff2");
  unicode-range: U+0301, U+0400-052F, U+1C80-1C8A, U+20B4, U+2116, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/lato-700-cyrillic.woff2?v=eef0018de385") format("woff2");
  unicode-range: U+0301, U+0400-052F, U+1C80-1C8A, U+20B4, U+2116, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/lato-400-latin-ext-v25.woff2?v=8b9fc9737043") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/lato-400-latin-v25.woff2?v=918b7dc3e2e2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/lato-700-latin-ext-v25.woff2?v=3a5797f440bc") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/lato-700-latin-v25.woff2?v=c447dd7677b4") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Codec Pro";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/codec-pro-bold.woff2?v=10cae927b004") format("woff2");
}

@font-face {
  font-family: "Codec Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/codec-pro-extrabold.woff2?v=7edd5d242239") format("woff2");
}

:root {
  --ink: #071b3a;
  --blue: #0037de;
  --yellow: #ffc857;
  --highlight: #ffca54;
  --sky: #eef3ff;
  --paper: #ffffff;
  --muted: #59677f;
  --border: #dce4f2;
  --cream: #fff7e8;
  --shadow: 0 12px 32px rgba(7, 88, 247, 0.08);
  --shadow-hover: 0 18px 44px rgba(7, 88, 247, 0.14);
  --radius-card: 18px;
  --radius-hero: 32px;
  --container: 1120px;
  --container-wide: 1330px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.6 "Lato", sans-serif;
  text-rendering: optimizeLegibility;
}

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  width: min(600px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px;
  border-radius: 7px;
  color: #3e4754;
  background: #ededed;
  box-shadow: 0 10px 30px rgb(7 27 58 / 0.15);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cookie-notice.is-hiding {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.cookie-notice p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.cookie-notice__accept {
  min-width: 58px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid #9da3aa;
  border-radius: 5px;
  color: #3e4754;
  background: transparent;
  cursor: pointer;
}

.cookie-notice__accept:hover {
  background: rgb(255 255 255 / 0.65);
}

.cookie-notice__accept:focus-visible {
  outline: 3px solid rgb(0 55 222 / 0.28);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .cookie-notice {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .cookie-notice__accept {
    justify-self: end;
  }
}

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.button,
.wordmark {
  font-family: "Codec Pro", sans-serif;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: normal;
}

h1 {
  max-width: none;
  margin-bottom: 20px;
  font-family: "Codec Pro", sans-serif !important;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  max-width:38ch;
  margin-inline: auto;
  margin-bottom: 42px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 10px);
}

.section--sky {
  background: linear-gradient(135deg, var(--sky), #f4f7ff);
}

.card {
  border: 1px solid rgba(220, 228, 242, 0.84);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.marker {
  background: linear-gradient(transparent 55%, var(--highlight) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 26px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(7, 88, 247, 0.2);
}

.button--primary:hover {
  background: #0049dc;
  box-shadow: 0 12px 26px rgba(7, 88, 247, 0.28);
}

.button--outline,
.button--secondary {
  color: var(--blue);
  background: transparent;
}

.button--outline:hover,
.button--secondary:hover {
  background: rgba(7, 88, 247, 0.07);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 92px;
  border-bottom: 1px solid rgba(220, 228, 242, 0.84);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 20px rgba(7, 27, 58, 0.03);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: #c8d3e5;
  box-shadow: 0 8px 24px rgba(7, 27, 58, 0.1);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  font-weight: 600;
  line-height: 0.95;
  text-decoration: none;
}

.wordmark img {
  width: 158px;
  height: auto;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

#site-nav > a:not(.button) {
  color: var(--ink);
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
}

#site-nav > a:not(.button):hover {
  color: var(--blue);
}

#site-nav .button {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  min-width: 76px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 500;
}

.menu-toggle__close-icon {
  width: 22px;
  height: 22px;
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__label {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close-icon {
  display: block;
}

.hero {
  padding-top: 34px;
  padding-bottom: 38px;
}

.hero__shell {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  max-width: var(--container-wide);

  padding-left: 105px;
  padding-right: 105px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--yellow);
}

.hero__shell::before,
.hero__shell::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(7, 27, 58, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__shell::before {
  width: 260px;
  height: 260px;
  top: -130px;
  left: 42%;
}

.hero__shell::after {
  width: 440px;
  height: 440px;
  right: -290px;
  bottom: -260px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero .marker {
  background: linear-gradient(transparent 55%, var(--paper) 0);
}

.hero__description {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1vw, 1.125rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .button--secondary {
  color: var(--ink);
  border-color: rgba(7, 27, 58, 0.5);
  background: rgba(255, 255, 255, 0.24);
}

.hero .button--secondary:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 28px rgba(7, 27, 58, 0.1));
}

.hero-illustration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.role-choice {

  padding-bottom: clamp(52px, 7vw, 84px);
}

.role-choice h2,
.pilot h2,
.faq h2 {
  margin-bottom: 38px;
}

#directions-title {
  max-width: none;
  margin: 0 0 28px;
  color: #0041ff;
  font-family: "Codec Pro", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.3;
  text-align: center;
}

.role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: clamp(28px, 3.5vw, 46px);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}


.role-card:nth-child(2)::before {
  background: var(--blue);
}

.role-card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -68px;
  bottom: -88px;
  border: 24px solid var(--sky);
  border-radius: 50%;
  content: "";
}

.role-card:hover {
  border-color: rgba(7, 88, 247, 0.28);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.role-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 88, 247, 0.13), var(--shadow-hover);
}

.role-card p {
  max-width: 49ch;
  color: var(--muted);
}

.role-card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue);
  font-family: "Codec Pro", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.role-card__action::after {
  font-size: 1.35em;
  content: "→";
  transition: transform 180ms ease;
}

.role-card:hover .role-card__action::after {
  transform: translateX(5px);
}

.pilot-card ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-card li {
  position: relative;
  padding-left: 30px;
}

.pilot-card li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.pilot-card:first-child li::before {
  border-color: #d99a16;
}

.process h2 {
  margin-bottom: 48px;
}

.process-list,
.process__steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li,
.process__steps li {
  position: relative;
  min-height: 220px;
  padding: 78px 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--paper);
  counter-increment: process;
}

.process-list li::before,
.process__steps li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-family: "Codec Pro", sans-serif;
  font-weight: 500;
  content: counter(process, decimal-leading-zero);
}

.process-list li:nth-child(odd)::before,
.process__steps li:nth-child(odd)::before {
  color: var(--ink);
  background: var(--yellow);
}

.process-list strong,
.process__steps strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Codec Pro", sans-serif;
  font-weight: 500;
  line-height: 1.35;
}

.process-list span,
.process__steps span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.process--timeline h2 {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3vw, 96px);
  color: var(--ink);
  line-height: 1.08;
  text-align: center;
}

.process--timeline .process__steps {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.process--timeline .process-list--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process--timeline .process__steps::before {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(7, 27, 58, 0.24);
  content: "";
}

.process--timeline .process__steps li {
  min-height: 0;
  padding: 88px 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process--timeline .process__steps li::before {
  z-index: 2;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(7, 27, 58, 0.3);
  border-radius: 14px;
  color: var(--ink);
  background: var(--sky);
  font-size: 0.875rem;
}

.process--timeline .process__steps li:nth-child(odd)::before {
  color: var(--ink);
  background: var(--sky);
}

.process--timeline .process__steps li::after {
  display: none;
}

.process--timeline .process__steps strong {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.process--timeline .process__steps span {
  display: block;
  color: #5f6d84;
  font-size: .875rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process--timeline h2 {
    margin-bottom: 56px;
  }

  .process--timeline .process__steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .process--timeline .process__steps::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 25px;
    width: 1px;
    height: auto;
  }

  .process--timeline .process__steps li {
    min-height: 126px;
    padding: 5px 0 48px 78px;
  }

  .process--timeline .process__steps li:last-child {
    min-height: 52px;
    padding-bottom: 0;
  }
}

.numbers {
  position: relative;
  overflow: hidden;
  padding-block: clamp(26px, 5vw, 118px);
  background: var(--paper);
}

.numbers__title {
  max-width: 28ch;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.numbers__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.numbers__item {
  min-width: 0;
  padding: 8px clamp(22px, 3vw, 40px) 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.numbers__item:last-child {
  border-right: 0;
}

.numbers__icon {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto 22px;
  color: #0041ff;
}

.numbers__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.numbers__icon .numbers__icon-accent {
  fill: var(--yellow);
  stroke: none;
}

.numbers__number {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Codec Pro", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
}

.numbers__description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .numbers__title {
    margin-inline: 0;
    text-align: left;
  }

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

  .numbers__item {
    padding: 32px 18px;
    border-bottom: 1px solid var(--border);
  }

  .numbers__item:nth-child(2n) {
    border-right: 0;
  }

  .numbers__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .numbers__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .numbers__item,
  .numbers__item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .numbers__item:nth-last-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .numbers__item:last-child {
    border-bottom: 0;
  }
}

.network-benefits {
  padding-bottom: clamp(82px, 9vw, 128px);
  background: var(--paper);
}

.network-benefits h2 {
  max-width: none;
  margin-bottom: clamp(38px, 5vw, 62px);
  text-align: center;
}

.network-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.network-benefits__item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px 38px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 30px rgba(7, 27, 58, 0.07);
  text-align: center;
}

.network-benefits__item img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  object-fit: contain;
}

.network-benefits__item h3 {
  max-width: 24ch;
  margin-bottom: 14px;
  color: var(--blue);
}

.network-benefits__item p {
  max-width: 34ch;
  font-size: .875rem;
  margin-bottom: 0;
  color: var(--muted);
}

.technology {
  padding-block: clamp(0px, 8vw, 10px);
  background: var(--paper);
}

.technology__inner {
  display: grid;
  gap: clamp(14px, 5vw, 120px);
}

.technology__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.technology__copy h2 {
  max-width: 19ch;
  margin-inline: 0;
  margin-bottom: 26px;
  font-family: "Codec Pro", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: start;
}

.technology__copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
}

.pilot__grid {
  display: grid;
  gap: 24px;
}

.pilot-card {
  min-height: 360px;
  padding: clamp(28px, 3.5vw, 46px);
}

.pilot-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pilot-card h3::before {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 9px solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.pilot-card:nth-child(2) h3::before {
  border-color: var(--blue);
}

.faq__items {
  max-width: 940px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  position: relative;
  padding: 24px 58px 24px 0;
  cursor: pointer;
  font-family: "Codec Pro", sans-serif;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 500;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--sky);
  font-size: 1.4rem;
  font-weight: 500;
  content: "+";
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding: 0 52px 24px 0;
  color: var(--muted);
}

.contact {
  position: relative;
  isolation: isolate;
  padding-block: clamp(48px, 5.33vw, 69.33px);
  background: #001944;
}

.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 50%;
  background: var(--paper);
  content: "";
}

.contact__panel {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(48px, 8vw, 108px);
  row-gap: 28px;
  align-items: center;
  align-content: center;
  padding: clamp(48px, 6.4vw, 82px);
  border-radius: clamp(42px, 5vw, 72px);
  background-color: var(--yellow);
  background-image: url("./assets/contact-cta-bg.webp?v=8d1c4432d81d");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.contact__panel h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 380px;
  margin: 0;
  color: #001d4f;
  font-size: clamp(2.35rem, 4vw, 3rem);
  line-height: 1.08;
  text-align: start;
}

.contact__action {
  display: contents;
  max-width: 520px;
}

.contact__action p {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  color: #001d4f;
  font-size: 16px;
  line-height: 1.55;
}

.contact__trigger {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  min-width: 166px;
  border: 0;
  cursor: pointer;
}

.lead-dialog {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.lead-dialog::backdrop {
  background: rgba(0, 18, 49, 0.76);
  backdrop-filter: blur(6px);
}

.lead-dialog[open]::backdrop {
  animation: lead-dialog-backdrop-enter 180ms ease-out both;
}

.lead-dialog__surface {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 54px) clamp(24px, 3vw, 36px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 18, 49, 0.32);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lead-dialog[open] .lead-dialog__surface {
  animation: lead-dialog-enter 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lead-dialog.is-closing::backdrop {
  animation: lead-dialog-backdrop-exit 160ms ease-in both;
}

.lead-dialog.is-closing .lead-dialog__surface {
  animation: lead-dialog-exit 160ms cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes lead-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lead-dialog-exit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }
}

@keyframes lead-dialog-backdrop-enter {
  from { background: rgba(0, 18, 49, 0); }
  to { background: rgba(0, 18, 49, 0.76); }
}

@keyframes lead-dialog-backdrop-exit {
  from { background: rgba(0, 18, 49, 0.76); }
  to { background: rgba(0, 18, 49, 0); }
}

.lead-dialog__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lead-dialog__close:hover {
  background: #dce7ff;
  transform: rotate(4deg);
}

.lead-dialog__close img {
  width: 22px;
  height: 22px;
}

.lead-dialog__intro {
  max-width: 680px;
  margin-bottom: 30px;
  padding-right: 52px;
}

.lead-dialog__intro h2 {
  margin: 0 0 14px;
  text-align: start;
}

.lead-dialog__intro > p:not(.contact__privacy) {
  margin-bottom: 0;
  color: var(--muted);
}

.contact__privacy {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--sky);
  font-size: 0.9375rem;
}

#lead-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px 18px;
  padding: 0;
}

#lead-form fieldset {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

#lead-form legend,
.form-field > label {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Codec Pro", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

#lead-form legend {
  width: 100%;
}

#lead-form fieldset label {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

#lead-form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field:has(textarea) {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c8d3e5;
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field [aria-invalid="true"] {
  border-color: #8f1d1d;
  box-shadow: 0 0 0 2px rgba(143, 29, 29, 0.12);
}

#lead-form fieldset:has(input[aria-invalid="true"]) label {
  border-color: #8f1d1d;
}

.field-error {
  width: 100%;
  min-height: 1.35rem;
  display: block;
  margin-top: 5px;
  color: #7b1717;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #9fb0c9;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(7, 88, 247, 0.12);
}

.form-field [aria-invalid="true"]:focus {
  border-color: #8f1d1d;
  box-shadow: 0 0 0 3px rgba(143, 29, 29, 0.16);
}

.lead-form__consent {
  grid-column: 1 / -1;
  order: 19;
}

.lead-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  cursor: pointer;
}

.lead-form__consent label > span {
  min-width: 0;
  flex: 1 1 auto;
}

.lead-form__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.lead-form__consent input[aria-invalid="true"] {
  outline: 2px solid #8f1d1d;
  outline-offset: 2px;
}

.lead-form__consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#lead-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
  order: 20;
  cursor: pointer;
}

.lead-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

#lead-submit[aria-busy="true"] {
  gap: 10px;
  cursor: wait;
}

#lead-submit[aria-busy="true"]::after {
  width: 15px;
  height: 15px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lead-submit-spin 700ms linear infinite;
}

@keyframes lead-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.lead-form__status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: #7b1717;
  font-size: 0.875rem;
  line-height: 1.4;
  order: 21;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__success {
  padding: 34px;
  border: 1px solid #b9cdf8;
  border-radius: var(--radius-card);
  background: #edf4ff;
  outline: 0;
}

.lead-form__success h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

.lead-form__success p {
  margin: 0;
  color: var(--muted);
}

.lead-form__success[hidden],
#lead-form[hidden] {
  display: none;
}

.contact noscript {
  display: block;
  margin: 18px auto 0;
  color: var(--paper);
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 86px 0 24px;
  color: var(--paper);
  background: #001944;
}

.site-footer__inner {
  max-width: 1120px;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: clamp(64px, 9vw, 142px);
  padding-bottom: 96px;
}

.site-footer__brand {
  width: 230px;
  flex: 0 0 230px;
}

.site-footer__brand img {
  width: 190px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.site-footer__brand p {
  max-width: 230px;
  color: var(--paper);
  font-size: 0.75rem;
  line-height: 1.55;
}

.site-footer__menus {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.site-footer__menu h2 {
  margin-bottom: 28px;
  color: var(--paper);
  font-family: Lato, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.site-footer__menu ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lr-footer__socials {
  margin-top: 24px;
}

.site-footer__menu .t-sociallinks__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.t-sociallinks__item a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #acb5c3;
  border-radius: 50%;
  transition: color 180ms ease, transform 180ms ease;
}

.t-sociallinks__item a:hover {
  color: var(--paper);
  transform: translateY(-2px);
}

.t-sociallinks__svg {
  display: block;
  width: 25px;
  height: 25px;
  overflow: visible;
}

.t-sociallinks__svg [fill="#043759"] {
  fill: #acb5c3;
  transition: fill 180ms ease;
}

.t-sociallinks__item_youtube .t-sociallinks__svg rect[fill="#fff"] {
  fill: #001944;
}

.t-sociallinks__item a:hover .t-sociallinks__svg [fill="#043759"] {
  fill: var(--paper);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: #acb5c3;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--paper);
}

.site-footer__menu ul a,
.site-footer__meta a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 48px 24px;
  color: var(--paper);
  background: radial-gradient(circle at 78% 18%, #0b4ec7 0, #001944 44%, #001333 100%);
  text-align: center;
}

.not-found img {
  width: min(250px, 64vw);
  height: auto;
  margin-bottom: 48px;
}

.not-found__code {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: "Codec Pro", sans-serif;
  font-size: clamp(4.75rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 16px;
  color: var(--paper);
}

.not-found > p:not(.not-found__code) {
  max-width: 580px;
  margin: 0 0 30px;
  color: #d9e5ff;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-size: 0.75rem;
}

.site-footer__meta {
  display: flex;
  gap: 22px;
}

.site-footer__meta a {
  color: var(--paper);
  text-decoration: underline;
}

.hero--focused .hero__shell {
  background: #ffca54;
}

.page--marketplaces .hero-illustration img {
  opacity: 0.88;
}

@media (min-width: 768px) {
  .page--marketplaces .hero__shell,
  .page--sellers .hero__shell,
  .page--about .hero__shell,
  .page--create-marketplace .hero__shell{
    padding: 35px 105px;
  }
}

.brand-section {
  overflow: hidden;
}

.brand-section h2 {
  margin-bottom: 34px;
}

.brand-rail {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
  overflow: hidden;
}

.brand-rail__track {
  width: 400%;
  display: flex;
  animation: brand-marquee 44s linear infinite;
  will-change: transform;
}

.brand-rail__group {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  flex: 0 0 50%;
  padding: 24px;
}

.brand-rail__track span {
  min-height: 92px;
  display: grid;
  place-items: center;
  color: #8290a7;
  font-family: "Codec Pro", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-rail__track img {
  width: auto;
  max-width: 78%;
  max-height: 56px;
  filter: brightness(1) contrast(1.6) opacity(0.55) saturate(0);
  object-fit: contain;
  transition: all 0.2s ease-in;
}

.brand-rail__track img:hover {
  filter: brightness(1) contrast(1) opacity(1) saturate(1);
}

@keyframes brand-marquee {
  to { transform: translateX(-50%); }
}

.direction-grid,
.challenge-grid {
  display: grid;
  gap: 24px;
}

.direction-card {
  min-height: 300px;
}


.dual-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.dual-section--blue {
  color: var(--paper);
  background: #001944;
}

.dual-section--blue::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("./assets/dual-section-rings.png?v=24c86c9ff3a3") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.dual-section--padding-large {
  padding-block: 130px;
}

.dual-section--padding-normal {
  padding-block: clamp(72px, 8vw, 104px);
}

.dual-section__wrapper {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.dual-section__block {
  position: relative;
  width: calc((100% - 48px) / 2);
}

.dual-section__block--text {
  max-width: 480px;
}

.dual-section__title {
  max-width: none;
  margin: 0 0 20px;
  color: var(--paper);
  text-align: start;
}

.dual-section__content {
  color: var(--paper);
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

.dual-section__content p {
  margin-bottom: 14px;
}

.dual-section__buttons {
  margin-top: 28px;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.challenge-grid article {
  min-height: 230px;
  padding: 32px;
}

.challenge-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.challenge-grid article {
  position: relative;
  overflow: hidden;
}

.challenge-card {
  min-height: 320px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 34px !important;
  border: 1px solid #d5ddea;
  border-radius: 20px;
  box-shadow: none;
  text-align: center;
}

.challenge-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
}

.challenge-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.challenge-card__icon .challenge-card__accent {
  fill: var(--yellow);
  stroke: none;
}

.challenge-card h3 {
  max-width: 25ch;
  margin-bottom: 20px;
  color: #0041ff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.challenge-card p {
  max-width: 38ch;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.65;
}

.marketplace-mission {
  padding-top: 0;
  background: var(--paper);
}

.marketplace-mission__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px) clamp(28px, 7vw, 92px);
  border-radius: 30px;
  background-color: #eaf0ff;
  background-image: url("assets/marketplace-mission-lines.svg?v=977f51eea22e");
  background-position: center;
  background-size: cover;
}

.marketplace-mission__content {
  position: relative;
  z-index: 1;

}

.marketplace-mission h2 {
  max-width: unset !important;
  margin-inline: 0;
  margin-bottom: 30px;
  text-align: start;
}

.marketplace-mission h3,
.marketplace-mission h4 {
  max-width: 700px;
  font-size: 1rem !important;
}

.marketplace-mission__emphasis {
  font-style: italic;
  font-weight: 700;
}

.marketplace-capabilities {
  background: var(--paper);
}

.marketplace-capabilities__list {
  display: grid;
  gap: clamp(42px, 6vw, 142px);
}

.marketplace-capability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.marketplace-capability__visual {
  width: 100%;
  max-width: 500px;
  max-height: 318px;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #0041ff;
  background: #f3f6ff;
}


.marketplace-capability__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.marketplace-capability__copy h3 {
  max-width: 24ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.marketplace-capability__copy > p,
.marketplace-capability__copy li {
  color: #5f6d84;
  font-size: .875rem;
  line-height: 1.65;
}

.marketplace-capability__copy > p {
  margin-bottom: 18px;
}

.marketplace-capability__copy ul {
  margin: 0 0 20px;
  padding-left: 1.25em;
}

.marketplace-capability__copy li + li {
  margin-top: 4px;
}

@media (max-width: 767px) {
  .marketplace-capabilities__list {
    gap: 72px;
  }

  .marketplace-capability {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .marketplace-capability__visual {
    order: 1;
    border-radius: 18px;
  }

  .marketplace-capability__copy {
    order: 2;
  }
}

.form-context {
  grid-column: 1 / -1;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--sky);
  font-family: "Codec Pro", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.process-list--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* About page: composed from the shared hero, cards, capabilities, numbers and CTA. */
.about-benefits {
  margin-top: 0;
  padding-block: 76px 110px;
}

.about-benefits .challenge-card {
  min-height: 290px;
}

.about-story {
  padding-block: 6px 124px;
}

.about-story .marketplace-capability__copy h2 {
  max-width: 26ch;
  margin: 0 0 22px;
  font-size: 1.75rem;
  text-align: left;
}

.about-story .marketplace-capability__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values .container {
  max-width: 1120px;
}

.about-values .dual-section__title {
  margin-inline: auto;
  color: var(--paper);
  text-align: center;
}

.about-values__carousel {
  position: relative;
}

.about-values__grid {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.about-values__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 50%;
  color: var(--paper);
  background: rgb(0 25 68 / 0.82);
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.2);
  font: 500 1.6rem/1 "Codec Pro", sans-serif;
  opacity: 0.62;
  transform: translateY(-50%);
  transition: opacity 160ms ease, background-color 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.about-values__carousel:hover .about-values__arrow,
.about-values__arrow:focus-visible {
  opacity: 1;
}

.about-values__arrow:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}

.about-values__arrow:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}

.about-values__arrow:disabled,
.about-values__carousel:hover .about-values__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.about-values__arrow--previous {
  left: 12px;
}

.about-values__arrow--next {
  right: 12px;
}

.about-values__grid::-webkit-scrollbar {
  display: none;
}

.about-values__grid .card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  scroll-snap-align: start;
  text-align: center;
}

.about-values__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  object-fit: contain;
}

.about-values__grid h3 {
  margin-bottom: 10px;
}

.about-values__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.about-numbers {
  background: var(--sky);
}

.about-numbers .numbers__list {
  max-width: 860px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-inline: auto;
}

.about-numbers .numbers__item {
  padding-block: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-numbers .numbers__item:first-child {
  border-radius: 18px;
}

.about-numbers .numbers__item:last-child {
  border-radius: 18px;
}

.about-team {
  padding-block: 104px 124px;
  background: #f7f9fd;
}

.about-team__grid {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-inline: auto;
}

.about-team__card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 22px;
}

.about-team__card img {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.about-team__card h3 {
  margin-bottom: 8px;
}

.about-team__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .about-benefits,
  .about-story,
  .about-team {
    padding-block: 72px;
  }

  .about-story .marketplace-capability__copy h2 {
    font-size: 1.75rem;
  }

  .about-numbers .numbers__list,
  .about-team__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-values__grid {
    grid-auto-columns: 100%;
  }

  .about-values__grid .card {
    min-height: 0;
  }

  .about-values__arrow {
    width: 44px;
    height: 44px;
    opacity: 0.9;
  }

  .about-numbers .numbers__item,
  .about-numbers .numbers__item:first-child,
  .about-numbers .numbers__item:last-child {
    border-radius: 18px;
  }

  .about-team__card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .about-team__card img {
    width: 104px;
  }
}

@media (max-width: 1060px) {
  #site-nav {
    gap: 16px;
  }

  #site-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  #site-nav .button {
    padding-inline: 15px;
  }

  .contact__panel {
    gap: 42px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header,
  .site-header__inner {
    min-height: 76px;
  }

  .wordmark img {
    width: 138px;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
    padding-block: 16px;
  }

  .js .site-header__inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 16px;
  }

  .js #site-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    left: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .js .menu-toggle[aria-expanded="true"] + #site-nav,
  .js #site-nav[data-open="true"] {
    outline: 1px solid rgba(7, 88, 247, 0.18);
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
  }

  #site-nav > a:not(.button) {
    padding: 10px 8px;
    font-size: 1rem;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 26px;
  }

  .hero__shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 34px 24px 24px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button,
  #lead-submit {
    width: 100%;
  }

  .hero-illustration {
    max-width: 520px;
  }

  .role-choice {
    margin-top: 72px;
  }

  .dual-section--padding-large,
  .dual-section--padding-normal {
    padding-block: 50px;
  }

  .dual-section__wrapper {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-inline: 24px;
  }

  .dual-section__block {
    width: 100%;
  }

  .dual-section__block--text {
    margin-bottom: 32px;
  }

  .dual-section__title {
    margin-bottom: 30px;
  }

  .dual-section__content {
    font-size: 1rem;
  }

  .team-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .team-photo {
    max-width: 342px;
    margin-inline: auto;
  }

  .direction-grid,
  .challenge-grid,
  .pilot__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .role-card,
  .pilot-card {
    min-height: 0;
  }

  .direction-card {
    min-height: 300px;
  }

  .brand-rail {
    width: calc(100% - 32px);
  }

  .brand-rail__track {
    width: 800%;
    animation-duration: 52s;
  }

  .brand-rail__group {
    padding-inline: 16px;
  }

  .process-list,
  .process__steps {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-left: 16px;
  }

  .process-list::before,
  .process__steps::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 36px;
    width: 2px;
    background: var(--border);
    content: "";
  }

  .process-list li,
  .process__steps li {
    min-height: 0;
    padding: 24px 20px 24px 76px;
  }

  .process-list li::before,
  .process__steps li::before {
    z-index: 1;
    top: 22px;
    left: 18px;
  }

  .technology {
    padding-block: 64px;
  }

  .network-benefits {
    padding-block: 64px;
  }

  .network-benefits h2 {
    margin-bottom: 34px;
  }

  .network-benefits__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .network-benefits__item {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .technology__inner {
    gap: 82px;
  }

  .technology__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .technology__copy h2 {
    margin-bottom: 20px;
  }

  .contact {
    padding-block: 56px;
  }

  .contact__panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 22px 0;
    padding: 42px 28px;
    border-radius: 40px;
    background-position: 42% center;
  }

  .contact__panel h2 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .contact__action p {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }

  .contact__trigger {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }

  .lead-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 22px;
  }

  .lead-dialog__surface {
    max-height: calc(100dvh - 20px);
    padding: 28px 20px 24px;
    border-radius: 22px;
  }

  .lead-dialog__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .lead-dialog__intro {
    margin-bottom: 24px;
    padding-right: 42px;
  }

  .lead-dialog__intro h2 {
    font-size: 1.75rem;
  }

  #lead-form {
    grid-template-columns: minmax(0, 1fr);
  }

  #lead-form fieldset,
  .form-field:has(textarea),
  #lead-submit,
  .lead-form__status {
    grid-column: 1;
  }

  #lead-form fieldset label {
    width: 100%;
  }

  #lead-submit {
    justify-self: stretch;
  }

  .site-footer {
    padding: 86px 0 24px;
  }

  .site-footer__inner {
    width: calc(100% - 64px);
  }

  .site-footer__main {
    flex-direction: column;
    gap: 54px;
    padding-bottom: 54px;
  }

  .site-footer__brand {
    width: 100%;
    flex-basis: auto;
  }

  .site-footer__menus {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .site-footer__menu h2 {
    margin-bottom: 20px;
  }

  .site-footer__bottom,
  .site-footer__meta {
    flex-direction: column;
  }

  .site-footer__bottom {
    gap: 12px;
    text-align: center;
  }

  .site-footer__meta {
    gap: 8px;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .site-footer__menu,
  .site-footer__menu h2 {
    text-align: center;
  }

  .site-footer__menu ul {
    justify-items: center;
  }

  .site-footer__menu .t-sociallinks__wrapper {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .about-values__carousel {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 18px;
  }

  .about-values__grid {
    min-width: 0;
  }

  .about-values__arrow {
    position: static;
    transform: none;
  }

  .about-values__arrow:hover {
    transform: scale(1.06);
  }

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

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

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

@media (min-width: 968px) {
  .hero__shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  }

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

  .process-list,
  .process__steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .process-list--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-list li:not(:last-child)::after,
  .process__steps li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: -15px;
    width: 28px;
    height: 2px;
    background: var(--blue);
    content: "";
  }
}

@media (max-width: 1199px) {
  .page--home .brand-section h2 {
    font-size: 1.875rem;
  }

  .page--home .direction-card h3 {
    font-size: 1.375rem;
  }

  .page--home .contact__panel h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .page--home .hero__actions .button {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2rem;
  }

  .site-header,
  .site-header__inner {
    min-height: 100px;
  }

  .site-header__inner {
    max-width: var(--container-wide);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-rail__track {
    animation: none;
  }
}

.page--create-marketplace .hero__shell {
  background: var(--yellow);
}

@media (min-width: 1200px) {
  .page--create-marketplace .create-marketplace-hero {
    padding-block: 40px;
  }

  .page--create-marketplace .hero__shell {
    grid-template-columns: 650px 400px;
    justify-content: space-between;
    gap: 0;
  }

  .page--create-marketplace .hero__copy {
    width: 650px;
  }

  .page--create-marketplace .hero__description {
    max-width: 650px;
    margin-bottom: 28px;
    padding-right: 28px;
    font-size: 1.125rem;
  }

  .page--create-marketplace .hero-illustration {
    width: 400px;
    max-width: 400px;
    margin-inline: 0;
  }

  .page--create-marketplace .hero__actions .button {
    min-height: 48px;
  }

  .page--create-marketplace .create-marketplace-benefits {
    padding-block: 80px;
  }
}

.create-marketplace-feature__copy h2 {
  text-align:unset;
  margin-bottom:24px !important;
}

.create-marketplace-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.create-marketplace-benefits .card {

  padding: 32px;
  border-color: #ccd3df;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 65, 255, 0.08);
}

.create-marketplace-benefits h2 {
  margin-bottom: 28px;
}

.create-marketplace-benefit__icon {
  display: block;
  margin: 0 auto 8px;
}

@media (min-width: 764px) {
  .card-simple__content {
    font-size: .875rem;
  }
}

.card-simple__content {
  color: #5f6d84;
  font-size: .875rem;
}

.create-marketplace-benefit h3 {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 8px;
  min-height: 52px;
}

@media (min-width: 764px) {
  .create-marketplace-benefit .card-simple__content {
    font-size: 0.875rem;
  }
}

.create-marketplace-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.create-marketplace-feature > * {
  min-width: 0;
}

.create-marketplace-feature + .create-marketplace-feature {
  margin-top: clamp(72px, 9vw, 128px);
}

.create-marketplace-feature__visual img {
  width: 100%;
  max-height: 360px;
  border-radius: 24px;
  object-fit: cover;
}

.create-marketplace-feature__visual .create-marketplace-feature__image--contain {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 767px) {
  .create-marketplace-benefits__grid,
  .create-marketplace-feature {
    grid-template-columns: 1fr;
  }

  .create-marketplace-feature__copy {
    order: 1;
  }

  .create-marketplace-feature__visual {
    order: 2;
  }

}
