@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable-Italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
}

@font-face {
  font-family: "Multiround Pro";
  src: url("../fonts/MultiroundPro.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: only light;
  --font-family: "Inter", sans-serif;
  --second-family: "Multiround Pro", "MultiroundPro", sans-serif;
  --container-width: 1161px;
  --color-bg: #f4f4f4;
  --color-surface: #ffffff;
  --color-surface-muted: #f7f7f7;
  --color-text: #010101;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-accent: #ff2d41;
  --color-accent-strong: #e8112d;
  --color-accent-hot: #ff003e;
  --color-line: rgba(1, 1, 1, 0.14);
  --color-line-light: rgba(255, 255, 255, 0.38);
  --color-shadow: rgba(0, 0, 0, 0.16);
  --pattern-image: url("../patterns/cross-grid.svg");
  --pattern-size: 20px 20px;
  --radius-xl: 60px;
  --radius-lg: 40px;
  --radius-md: 28px;
  --radius-sm: 18px;
  --transition: 220ms ease;
  --page-gap: 32px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  min-width: 320px;
  letter-spacing: 0.09em;
  forced-color-adjust: none;
  -webkit-text-size-adjust: 100%;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pc-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  :root {
    --pattern-size: 35px 35px;
  }

  .pc-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

.no-wrap {
  white-space: nowrap;
}

.page-shell {
  overflow: clip;
  background-color: var(--color-bg);
  forced-color-adjust: none;
}

.container {
  width: min(calc(100% - 32px), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 24px 0;
}

.section--overlap {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 0;
}

.section-shell {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.section-shell--neutral {
  padding: 45px 0 117px;
  background: #eceaea;
}

.section-shell--pattern {
  padding: 110px 0 181px;
  background-color: var(--color-surface);
  background-image: var(--pattern-image);
  background-repeat: repeat;
  background-size: var(--pattern-size);
  forced-color-adjust: none;
}

.section-shell--surface {
  padding: 0 0 32px;
  background: var(--color-surface);
}

.section-shell--partnership {
  padding: 110px 0 179px;
  background: linear-gradient(180deg, #ff2d41 0%, #f91d3d 100%);
}

.section-shell--wide {
  width: 100%;
}

.section-panel {
  width: min(100% - 64px, 1161px);
  margin: 0 auto;
}

.chart-section {
  padding-bottom: 0;
}

.ecosystem-section {
  padding-bottom: 0;
}

.format-section {
  padding-bottom: 0;
}

.section--pattern {
  background-color: var(--color-surface);
  background-image: var(--pattern-image);
  background-repeat: repeat;
  background-size: var(--pattern-size);
  forced-color-adjust: none;
}

.surface-pattern {
  background-color: var(--color-surface);
  background-image: var(--pattern-image);
  background-repeat: repeat;
  background-size: var(--pattern-size);
  forced-color-adjust: none;
}

.section-header {
  display: grid;
  gap: 41px;
  justify-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.section-header--light {
  color: var(--color-white);
}

.section-title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 119%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.009em;
}

.section-title span {
  color: var(--color-accent-strong);
}

.section-title--light span,
.section-title--light {
  color: var(--color-white);
}

.section-title--small {
  margin-inline: auto;
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
  letter-spacing: 0.034em;
  text-align: center;
}

.section-title--split {
  text-align: left;
}

.section-text,
.format-section__lead,
.lead-form__policy,
.support-card p,
.accordion__panel p {
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
  text-align: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.button > span {
  transition: opacity var(--transition);
}

.button.is-loading > span {
  opacity: 0;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.button:focus-visible,
.carousel-button:focus-visible,
.accordion__trigger:focus-visible,
.modal__close:focus-visible {
  outline: 2px solid rgba(255, 45, 65, 0.6);
  outline-offset: 3px;
}

.button--light {
  background: var(--color-white);
  color: var(--color-black);
}

.button--light:hover,
.button--light:active {
  color: #111111;
  box-shadow: 0 18px 36px rgba(88, 9, 20, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.button--light > span,
.button--light {
  cursor: pointer;
}

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

.button--primary:hover,
.button--primary:focus-visible,
.button--primary:active {
  box-shadow: 0 18px 36px rgba(88, 9, 20, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.55);
  background: var(--color-accent-strong);
}

.button[disabled] {
  cursor: progress;
  opacity: 0.7;
}

.hero {
  position: relative;
  padding: 48px 0 28px;
  background: linear-gradient(145deg, #ff2d41 0%, #ff2342 52%, #f40a37 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(circle at 88% 18%, rgba(0, 0, 0, 0.22), transparent 18%),
    radial-gradient(circle at 75% 72%, rgba(0, 0, 0, 0.16), transparent 16%); */
  pointer-events: none;
}

.hero__container {
  position: relative;
}

.hero__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: max(720px, calc(100svh - 77px));
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 62px;
  padding: 34px 0 24px;
  z-index: 2;
}

.hero__intro-logo-top {
  display: none;
}

@media (max-width: 1024px) {
  .hero__intro-logo-top {
    display: block;
    width: 124px;
    height: 124px;
    transform: rotate(-12.6deg) translateX(-8px);
  }

  .hero__intro-logo-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.hero__content .button {
  font-weight: 500;
  font-size: 28px;
  min-height: 74px;
  padding: 20px 40px;
  letter-spacing: 3%;
}

.hero__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--second-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 121%;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero__visual {
  position: absolute;
  top: -17px;
  right: -23px;
  width: 1152px;
}

@media (min-width: 1650px) {
  .hero__visual {
    /* width: 55vw; */
  }
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.hero__visual.is-hidden {
  display: none;
}

.hero__placeholder-copy {
  position: absolute;
  right: 32px;
  bottom: 28px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: right;
}

.hero-summary {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding: 0 0 100px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-summary__surface {
  display: grid;
  gap: 80px;
  padding: 28px 0 16px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

@media (max-width: 1024px) {
  .hero-summary__surface {
    gap: 20px;
    padding: 28px 0 48px;
  }
}

.hero__intro {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 56px 6px 10px 18px;
}

.hero__intro-logo {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -212px;
  left: 97px;
  transform: rotate(-12.6deg);
}

.hero__intro-logo img {
  width: 393px;
  height: 393px;
}

.hero__intro-text {
  margin: 0;
  font-weight: 400;
  font-size: 34px;
  line-height: 124%;
  letter-spacing: 0.038em;
}

.hero__intro-image {
  display: none;
}

@media (max-width: 1024px) {
  .hero__intro-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.013em;
  }
}

.hero__intro-text strong {
  letter-spacing: 0.024em;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-items: center;
  border-radius: 60px;
  padding: 52px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
}

.metric-card__label,
.metric-card__sub {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
}

.metric-card__sub {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .metric-card__sub {
    margin-top: 0px;
  }
}

.metric-card__value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 115%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.metric-card__value.top-compensation {
  margin-top: -40px;
}

@media (max-width: 1024px) {
  .metric-card__value.top-compensation {
    margin-top: 0px;
  }
}

.hero__growth {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: -13px;
}

.hero__growth-text {
  /* max-width: 780px; */
  margin: 0;
  color: var(--color-accent-strong);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.001em;
}

.hero__growth-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(12px, -12px);
}

.hero__growth-pin img {
  width: 152px;
  height: 164px;
}

.growth-stats-section {
  position: relative;
  z-index: 0;
}

.growth-stats-panel {
  padding: 56px 0px 64px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: #eceaea;
}

.growth-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin: 0 auto;
}

.growth-stat-card {
  display: grid;
  gap: 40px;
  justify-items: center;
  align-content: center;
  min-height: 164px;
  padding: 76px 15px 80px;
  border-radius: 60px;
  background: var(--color-white);
  text-align: center;
}

.growth-stat-card__value {
  color: var(--color-accent-strong);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 60%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.growth-stat-card__label {
  color: var(--color-text);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
}

.chart-card,
.ecosystem-card,
.format-section__gallery,
.territory-section__map,
.contact-card {
  border-radius: var(--radius-xl);
}

.chart-card {
  width: 100%;
  padding: 50px 40px 40px;
  background: var(--color-surface);
  box-shadow: 0 28px 80px rgba(1, 1, 1, 0.08);
}

.chart-card__timeline {
  position: relative;
  width: min(100%, 946px);
  aspect-ratio: 946 / 430;
  margin: 28px auto 0;
}

.chart-card__timeline--mobile {
  display: none;
}

.chart-card__line {
  position: absolute;
  left: 0;
  top: 13.7%;
  width: 100%;
  height: auto;
}

.timeline-point {
  position: absolute;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -50%);
  text-align: start;
}

.timeline-point__marker {
  width: min(60%, 86px);
  min-width: 48px;
  height: auto;
}

.timeline-point__content {
  width: 100%;
  margin-top: 6px;
  transform: translate(40px, 0);
}

.timeline-point__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-accent-strong);
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 28px;
  line-height: 165%;
}

.timeline-point__content span {
  display: block;
  color: rgba(1, 1, 1, 0.7);
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  transform: translateY(-5px);
}

.ecosystem-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 22px 0px 0px;
}

.ecosystem-card__text-container {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.ecosystem-cards {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.ecosystem-card--reverse {
  gap: 60px;
}

.ecosystem-card--reverse .ecosystem-card__media {
  justify-self: start;
}

.ecosystem-card__text {
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
  letter-spacing: 0.034em;
  text-align: left;
}

.ecosystem-card__text--first {
  margin: 25px 0 55px;
  transform: translateY(-30px);
}

.ecosystem-card__text--second {
  font-weight: 500;
  font-size: 26px;
  line-height: 115%;
}

.ecosystem-card__text-highlight-black {
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 15px;
  background: var(--color-text);
}

.ecosystem-card__text-highlight-red {
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 15px;
  background: var(--color-accent);
}

.ecosystem-card__title-text {
  position: relative;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  padding-left: 36px;
  letter-spacing: 0.001em;
  margin-bottom: 15px;
}

.ecosystem-card__title-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
}

.feature-list {
  display: grid;
  gap: 29px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 40px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: 0.025em;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 28px;
  height: 29px;
  background: url("../images/rounded-star.svg") center / contain no-repeat;
}

.ecosystem-card__media {
  position: relative;
  justify-self: end;
  width: 609px;
  min-width: 609px;
  height: 609px;
}

.ecosystem-slider {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radius-xl);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.ecosystem-slider::-webkit-scrollbar {
  display: none;
}

.ecosystem-slider.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.ecosystem-slider.is-dragging .ecosystem-slider__slide {
  pointer-events: none;
}

.ecosystem-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  height: 100%;
}

.ecosystem-slider__slide {
  width: 100%;
  height: 100%;
}

.ecosystem-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.ecosystem-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 4px 12px rgba(1, 1, 1, 0.18);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.ecosystem-slider__dot:hover {
  transform: scale(1.08);
}

.ecosystem-slider__dot.is-active {
  background: #ffffff;
}

.partnership__photo,
.territory-section__map img,
.stories-section__banner img,
.format-section__main-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.format-section__gallery {
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 20px 60px rgba(1, 1, 1, 0.08);
}

.format-section__gallery img {
  height: 72.5vh;
}

.format-section__copy {
  display: grid;
  gap: 16px;
  margin: 73px auto 178px;
  text-align: center;
}

.format-section__lead.format-section__lead--last {
  margin-top: 23px;
}

.format-section__photos {
  margin: 60px auto 60px;
}

.format-section__photos-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.format-section__photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 60px;
  aspect-ratio: 1.34;
}

.format-section__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-section__meta {
  color: var(--color-text);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 119%;
  text-transform: uppercase;
  margin-top: 22px;
}

.format-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 60px auto 0;
}

.format-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 19px;
  min-height: 134px;
  border-radius: 60px;
  padding: 40px;
  background: var(--color-white);
  text-align: left;
}

.format-card__label {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border-radius: 40px;
  padding: 12px 20px 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.001em;
}

.format-card__text {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
}

.format-card--summary {
  border: 1px solid var(--color-black);
  background: var(--color-bg);
  padding-bottom: 29px;
}

.format-card__check {
  position: absolute;
  right: 16px;
  bottom: -79px;
  width: 152px;
  height: 152px;
}

.chip,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1.2;
}

.chip {
  background: var(--color-surface-muted);
  color: var(--color-accent-strong);
  border: 1px solid rgba(255, 45, 65, 0.18);
}

.badge {
  color: var(--color-white);
  background: rgba(1, 1, 1, 0.9);
}

.badge strong {
  color: var(--color-accent);
  font-weight: 700;
  margin-left: 6px;
}

.partnership {
  padding-bottom: 0;
}

.partnership__container {
  display: grid;
  justify-items: center;
  gap: 77px;
  margin: 0 auto;
}

.partnership__copy {
  display: grid;
  justify-items: center;
  gap: 50px;
  color: var(--color-white);
  text-align: center;
}

.partnership__stats {
  display: grid;
  gap: 30px;
  width: 100%;
  color: var(--color-white);
  transform: translateX(-108px);
}

.partnership__stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.partnership__stat-label {
  font-weight: 500;
  font-size: 26px;
  line-height: 115%;
  text-align: right;
}

.partnership__stat-inline {
  gap: 12px;
  text-align: left;
}

.partnership__stat-inline small {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
}

.partnership__stat-value {
  display: inline-flex;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 119%;
}

.partnership__stat-value--pill {
  min-height: 74px;
  border-radius: 100px;
  padding: 0px 40px;
  font-family: var(--font-family);
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 500;
  font-size: 28px;
  max-width: fit-content;
  white-space: nowrap;
}

.partnership__media {
  position: relative;
}

.partnership__download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 5px;
}

.partnership__download-link span {
  font-family: var(--font-family);
  font-size: 34px;
  line-height: 124%;
  color: var(--color-white);
}

.partnership__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partnership__download-icon {
  border-radius: 100px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 74px;
}

.partnership__download-icon img {
  width: 40px;
  height: 40px;
}

.partnership__photo {
  border-radius: 60px;
  aspect-ratio: 308 / 319;
  object-fit: cover;
  object-position: center;
  width: 620px;
  height: 620px;
  z-index: 1;
  position: relative;
}

.partnership__coin {
  position: absolute;
  width: 360px;
  height: 360px;
  pointer-events: none;
}

.partnership__coin--left {
  left: -228px;
  bottom: 165px;
  top: auto;
}

.partnership__coin--right {
  right: -217px;
  bottom: 2px;
  width: 320px;
  height: 320px;
  z-index: 2;
}

.territory-section .section-shell--pattern {
  padding: 110px 0 153px;
}

.territory-section__metrics {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.territory-section__text {
  margin: 0 -5px;
}

.territory-section__text--strong {
  margin-top: 41px;
}

.territory-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  padding: 10px 30px;
  min-height: 102px;
  background: var(--color-bg)
}

.territory-badge__label {
  color: var(--color-text);
  font-weight: 500;
  font-size: 34px;
  line-height: 124%;
  white-space: nowrap;
  letter-spacing: 0.002em;
}

.territory-badge__value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 46px;
  color: #ff2d41;
  text-transform: uppercase;
  white-space: nowrap;
}

.territory-section__map {
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 24px 70px rgba(1, 1, 1, 0.08);
  margin-top: 79px;
  margin-bottom: 80px;
}

.territory-section__map figcaption {
  padding: 18px 12px 6px;
  text-align: center;
  color: rgba(1, 1, 1, 0.72);
}

.support-section {
  padding-bottom: 0;
}

.support-section__shell {
  padding: 112px 0 179px;
  background: linear-gradient(180deg, #ff2d41 0%, #f91a3c 100%);
}

.support-section .section-header {
  gap: 0;
  margin-bottom: 82px;
}

.support-grid {
  width: 100%;
}

.support-section__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stories-slider__track::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.stories-slider__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.support-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  border-radius: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  min-height: 356px;
  text-align: center;
}

.support-card--gap-tight {
  gap: 53px;
}

.support-card--gap-wide {
  gap: 24px;
}

.support-card h3 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 107%;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.support-card h3 span {
  color: var(--color-accent);
}

.support-card p {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 123%;
  text-align: center;
  letter-spacing: 0;
  text-wrap: pretty;
}

.stories-section {
  padding-bottom: 0;
}

.stories-section__shell {
  padding: 73px 0 100px;
  background-color: var(--color-surface);
  background-image: var(--pattern-image);
  background-repeat: repeat;
  background-size: var(--pattern-size);
}

.stories-section__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 73px;
}

.stories-section__header .section-title {
  grid-column: 2;
  justify-self: center;
}

.stories-section__controls {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 67px;
  background: var(--color-bg);
  height: 100px;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 83px;
  width: 83px;
  height: 77px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.carousel-button.is-active {
  background: var(--color-accent);
}

.carousel-button img {
  width: 27px;
  height: 28px;
  transition: filter var(--transition), opacity var(--transition);
}

.carousel-button.is-active img {
  filter: brightness(0) invert(1);
}

.carousel-button:disabled {
  cursor: default;
}

.carousel-button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(1, 1, 1, 0.1);
}

.carousel-button:disabled img {
  opacity: 0.9;
}

.stories-slider {
  --stories-bleed: calc((100vw - 100%) / 2);
  --stories-start-offset: 0px;
  --stories-end-offset: var(--stories-bleed);
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: calc(var(--stories-bleed) * -1);
  margin-right: calc(var(--stories-bleed) * -1);
  padding-left: var(--stories-bleed);
  padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.stories-slider::-webkit-scrollbar {
  display: none;
}

.stories-slider.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.stories-slider.is-dragging .story-card {
  pointer-events: none;
}

.stories-slider__track {
  --story-card-width: clamp(380px, 34vw, 470px);
  display: flex;
  gap: 14px;
  width: max-content;
  padding-left: var(--stories-start-offset);
  padding-right: var(--stories-end-offset);
}

.story-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  flex: 0 0 var(--story-card-width);
  width: var(--story-card-width);
  overflow: hidden;
  border-radius: 60px;
  background: var(--color-bg);
  padding: 41px 35px;
}

.story-card__media {
  overflow: hidden;
  border-radius: 40px;
  aspect-ratio: 1.65;
}

.story-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__body {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 18px;
  padding: 28px 0 0;
}

.policy-document__heading,
.accordion__trigger span,
.contact-card__title {
  font-family: var(--second-family);
  text-transform: uppercase;
}

.story-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 34px;
  line-height: 0.96;
}

.story-card__quote {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: pretty;
}

.story-card__copy {
  display: grid;
  gap: 14px;
}

.story-card__copy p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.18;
  text-align: left;
  letter-spacing: 0;
  text-wrap: pretty;
}

.story-card__copy strong {
  font-weight: 700;
}

.story-card__copy em,
.story-card__quote em {
  font-style: italic;
}

.story-card__quote strong,
.story-card__copy strong em,
.story-card__copy em strong {
  font-weight: 700;
}

.stories-section__image {
  margin-top: 38px;
  border-radius: 60px;
  overflow: hidden;
  height: 713px;
}

.stories-section__image img {
  width: 100%;
  height: calc(100% + 72px);
  object-fit: cover;
  transform: translateY(-38px);
}

.faq-section {
  position: relative;
  z-index: 0;
  background: var(--color-bg);
  padding: 79px 0 150px;
}


.accordion__item {
  border-bottom: 1px solid var(--color-black);
  /* padding-bottom: 25px; */
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  padding: 34px 0 25px;
  border: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
}

.accordion__trigger span {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 107%;
  text-transform: uppercase;
  color: var(--color-black);
  -webkit-text-fill-color: var(--color-black);
  text-wrap: pretty;
}

.accordion__trigger img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: auto;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.accordion__item.is-open .accordion__trigger img {
  transform: rotate(0deg);
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  color: rgba(1, 1, 1, 0.78);
  transition: max-height 280ms ease, opacity 220ms ease, padding-bottom 280ms ease;
}

.accordion__item.is-open .accordion__panel {
  padding-bottom: 25px;
  opacity: 1;
}

.accordion__panel p {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 123%;
  text-align: left;
  letter-spacing: 0.023em;
}

.accordion__list {
  margin: 34px 0 0;
  padding-left: 30px;
}

.accordion__list li {
  font-weight: 500;
  font-size: 26px;
  line-height: 123%;
  letter-spacing: 0.023em;
  padding: 4px 8px;
}

.accordion__list li + li {
  margin-top: 22px;
}

.contact-section {
  --contact-radius: 60px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--contact-radius) var(--contact-radius) 0 0;
  margin-top: -60px;
  margin-bottom: -2px;
  background: transparent;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  overflow: hidden;
  border-radius: var(--contact-radius) var(--contact-radius) 0 0;
  background:
    radial-gradient(120% 120% at 12% 26%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(66% 56% at 34% 76%, rgba(150, 10, 27, 0.1) 0%, rgba(150, 10, 27, 0) 44%),
    radial-gradient(62% 58% at 82% 82%, rgba(125, 7, 20, 0.24) 0%, rgba(125, 7, 20, 0) 46%),
    linear-gradient(180deg, #B10A12 0%, #B10A12 38%, #B10A12 100%);
  box-shadow: 0 28px 80px rgba(1, 1, 1, 0.16);
}

.contact-card__visual-image {
  position: absolute;
  left: -79px;
  bottom: -82px;
  width: 70vw;
}

@media (min-width: 1550px) {
  .contact-card__visual-image {
    width: 60vw;
  }
}

@media (min-width: 1700px) {
  .contact-card__visual-image {
    left: -11px;
    width: 950px;
  }
}

.contact-card__visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__form-wrap {
  display: grid;
  align-content: center;
  gap: 56px;
  padding: 108px 64px 38px 74px;
  color: var(--color-white);
  position: relative;
}

.contact-card__title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 115%;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-card__title span {
  display: block;
  margin-top: 2px;
}

.lead-form {
  display: grid;
  gap: 36px;
}

.line-field {
  display: block;
}

.line-field .sr-only {
  font-weight: 500;
  font-size: 26px;
  line-height: 115%
}

.line-field input,
.line-field textarea {
  display: block;
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--color-white);
  background: transparent;
  background-clip: padding-box;
  color: var(--color-white);
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  font-weight: 500;
  font-size: 26px;
  line-height: 115%
}

.line-field textarea {
  min-height: 0;
  height: calc(1.15em + 14px);
  overflow: hidden;
  resize: none;
  transition: height 160ms ease;
}

.line-field input::placeholder,
.line-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.line-field input:-webkit-autofill,
.line-field input:-webkit-autofill:hover,
.line-field input:-webkit-autofill:focus,
.line-field textarea:-webkit-autofill,
.line-field textarea:-webkit-autofill:hover,
.line-field textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-white) !important;
  caret-color: var(--color-white);
  border-bottom-color: var(--color-white) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important;
  background-image: none !important;
  border-radius: 0 !important;
  outline: none !important;
  transition: background-color 9999s ease-out 0s, color 9999s ease-out 0s;
}

.is-ios .line-field input:-webkit-autofill,
.is-ios .line-field input:-webkit-autofill:hover,
.is-ios .line-field input:-webkit-autofill:focus,
.is-ios .line-field textarea:-webkit-autofill,
.is-ios .line-field textarea:-webkit-autofill:hover,
.is-ios .line-field textarea:-webkit-autofill:focus {
  border-bottom-color: transparent !important;
  -webkit-box-shadow:
    0 1px 0 0 var(--color-white),
    0 0 0 1000px #b10a12 inset !important;
  box-shadow:
    0 1px 0 0 var(--color-white),
    0 0 0 1000px #b10a12 inset !important;
  background-color: #b10a12 !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-border-before: 0 !important;
  -webkit-border-after: 0 !important;
  -webkit-border-start: 0 !important;
  -webkit-border-end: 0 !important;
}

.lead-form__actions {
  padding-top: 14px;
}

.lead-form__actions .button {
  font-weight: 500;
  font-size: 28px;
  min-height: 74px;
  padding: 0px 40px;
}

.lead-form__policy {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.lead-form__policy a {
  color: var(--color-white);
  text-decoration: underline;
}

.lead-form__status {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 0 24px;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__container {
  display: grid;
  justify-items: center;
  gap: 102px;
  padding: 60px 0px 35px;
}

.site-footer__logo {
  width: 374px;
  height: 69px;
}

.site-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-footer__link,
.site-footer__phone,
.site-footer__copy {
  font-weight: 500;
  font-size: 26px;
  line-height: 153%;
  color: var(--color-white);
  transition: opacity var(--transition);
  opacity: 0.4;
  letter-spacing: 0.02em;
}

.site-footer__link:hover,
.site-footer__phone:hover {
  opacity: 1;
}

.site-footer__social {
  opacity: 0.4;
  transition: opacity var(--transition);
}

.site-footer__social:hover {
  opacity: 1;
}

.site-footer__social img {
  width: 24px;
  height: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(1, 1, 1, 0.66);
}

.modal.is-open {
  display: flex;
  animation: fade-in var(--transition);
}

.modal__dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: min(88vh, 980px);
  overflow: hidden;
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: 0 40px 120px rgba(1, 1, 1, 0.3);
}

.modal__dialog--success {
  width: min(100%, 440px);
}

.modal__dialog--policy {
  display: flex;
  flex-direction: column;
  height: min(88vh, 980px);
  min-height: 0;
}

.modal__dialog--policy .modal__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 28px 14px 26px 28px;
}

.modal__dialog--policy .modal__title {
  flex-shrink: 0;
  margin: 0 72px 18px 0;
  text-align: left;
  letter-spacing: 0.02em;
}

.modal__body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.modal__title,
.policy-document__title {
  margin: 0 0 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal__close {
  z-index: 2;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 45, 65, 0.08);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), opacity var(--transition), filter var(--transition);
}

.modal__close img {
  width: 18px;
  height: 18px;
  cursor: pointer;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition), filter var(--transition);
}

.modal__close:hover {
  background: rgba(255, 45, 65, 0.16);
  box-shadow: 0 14px 28px rgba(232, 17, 45, 0.14), 0 0 0 6px rgba(255, 45, 65, 0.08);
  filter: saturate(1.08);
}

.modal__close:hover img {
  filter: brightness(0.96);
}

.modal__close:active {
  transform: scale(0.96);
  box-shadow: 0 8px 18px rgba(232, 17, 45, 0.12);
}

.policy-document {
  color: rgba(1, 1, 1, 0.84);
  letter-spacing: 0.01em;
}

.policy-document-shell {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.policy-document-shell::before,
.policy-document-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 12px;
  z-index: 2;
  height: 26px;
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition);
}

.policy-document-shell::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0) 100%);
}

.policy-document-shell::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0) 100%);
}

.policy-document-shell.is-at-top::before {
  opacity: 0;
}

.policy-document-shell.is-at-bottom::after {
  opacity: 0;
}

.policy-document--modal {
  flex: 1 1 auto;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2px 10px 2px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 17, 45, 0.56) rgba(253, 232, 234, 0.95);
}

.policy-document--modal::-webkit-scrollbar {
  width: 8px;
}

.policy-document--modal::-webkit-scrollbar-track {
  margin-block: 8px;
  border-radius: 999px;
  background: rgba(253, 232, 234, 0.95);
}

.policy-document--modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(232, 17, 45, 0.5);
}

.policy-document--modal::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 17, 45, 0.72);
}

.policy-document__title {
  margin-top: 0;
  margin-bottom: 18px;
  text-align: left;
}

.policy-document__heading {
  margin: 30px 0 14px;
  font-size: clamp(1.16rem, 0.48vw + 1.02rem, 1.48rem);
  line-height: 1.22;
  text-align: left;
}

.policy-document p {
  margin: 0 0 14px;
  font-weight: 400;
  font-size: clamp(1rem, 0.22vw + 0.96rem, 1.1rem);
  line-height: 1.62;
  text-align: left;
  text-wrap: pretty;
}

.policy-document__list {
  margin: 0 0 16px;
  padding-left: 1.35rem;
  text-align: left;
}

.policy-document__list li {
  margin-bottom: 12px;
  padding-left: 0.08rem;
  font-weight: 400;
  font-size: clamp(1rem, 0.2vw + 0.96rem, 1.08rem);
  line-height: 1.58;
  text-align: left;
}

.policy-page {
  background: #f2f2f2;
}

.policy-page__main {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 36px 0 60px;
}

.policy-page__topbar {
  margin-bottom: 18px;
}

.policy-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
}

.policy-page__back::before {
  content: "←";
}

.policy-page .policy-document {
  padding: 32px;
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(1, 1, 1, 0.08);
}

.modal__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  text-align: center;
  letter-spacing: 0.01em;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1400px) {
  .support-card h3 {
    font-size: 24px;
    line-height: 117%;
  }

  .support-card p {
    font-size: 18px;
    line-height: 122%;
  }
}

@media (max-width: 1280px) {
  .territory-badge {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
  }

  /* .territory-badge__label {
    font-size: 24px;
  }

  .territory-badge__value {
    font-size: 36px;
  } */
}

@media (max-height: 720px) {
  .hero {
    padding-bottom: 144px;
  }
}

@media (max-width: 1180px) {
  .stories-slider__track {
    --story-card-width: min(360px, calc(50vw - 36px));
  }

  .site-footer__meta {
    grid-template-columns: repeat(2, auto);
    gap: 20px 28px;
  }

  .growth-stat-card__value {
    font-size: 60px;
  }

  .growth-stats-panel {
    padding: 32px 22px 42px;
  }
}

@media (max-width: 960px) {
  .hero {
    padding-top: 44px;
  }

  .hero__intro,
  .ecosystem-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section--overlap,
  .hero-summary {
    margin-top: -48px;
  }

  .section-shell--neutral {
    padding: 40px 0 4px;
  }

  .section-shell--pattern {
    padding: 48px 0 88px;
  }

  .section-shell--partnership {
    padding: 48px 0 90px;
  }

  .section-shell--surface {
    padding: 0 0 24px;
  }

  .section-panel {
    width: min(100% - 32px, 1161px);
  }

  .hero__top {
    min-height: 72.5svh;
  }

  .hero__visual {
    top: auto;
    bottom: -112px;
    right: -36px;
    width: 130%;
  }

  .hero__intro {
    padding: 6px 0 0;
    gap: 4px;
  }

  .hero__intro-text strong {
    letter-spacing: 0.01em;
  }

  .hero__intro-image {
    display: block;
    width: 73px;
    min-width: 73px;
    height: 92px;
    margin-right: -9px;
    margin-top: 2px;
  }

  .hero__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero__intro-logo {
    justify-content: flex-start;
    display: none;
  }

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

  .metric-card {
    border-radius: 40px;
    padding: 12px 20px 12px;
    gap: 9px;
  }

  .metric-card__label,
  .metric-card__sub {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    margin-top: 3px;
    letter-spacing: 0.01em;
  }

  .metric-card__value {
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.01em;
  }



  .chart-card,
  .ecosystem-card {
    padding: 26px 14px;
    padding: 0;
  }

  .ecosystem-card__media {
    justify-self: stretch;
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .ecosystem-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }

  .ecosystem-card__copy {
    order: 1;
    width: 100%;
  }

  .ecosystem-card__media {
    order: 2;
  }

  .ecosystem-cards > .ecosystem-card:nth-child(2) {
    order: 3;
  }

  .ecosystem-cards > .ecosystem-card:nth-child(3) {
    order: 2;
  }

  .ecosystem-cards > .ecosystem-card:nth-child(3) .ecosystem-card__text-container {
    display: flex;
  }

  .ecosystem-cards .ecosystem-card__text-container {
    gap: 42px;
  }

  .ecosystem-cards > .ecosystem-card:nth-child(3) .ecosystem-card__text-container-item:first-child {
    order: 2;
  }

  .ecosystem-cards > .ecosystem-card:nth-child(3) .ecosystem-card__text-container-item:last-child {
    order: 1;
  }

  .ecosystem-card__text--first {
    margin: 25px 0 18px;
    transform: translateY(-22px);
  }

  .ecosystem-card__text-highlight-black, 
  .ecosystem-card__text-highlight-red {
    padding: 2px 10px;
    border-radius: 15px;
  }

  .ecosystem-card__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.007em;
  }

  .ecosystem-card__title-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    padding-left: 19px;
  }

  .ecosystem-card__title-text::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }

  .partnership__copy {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    gap: 40px;
  }

  .partnership__stats {
    transform: translateX(-26px);
    gap: 18px;
  }

  .partnership__stat {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-items: flex-end;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    min-width: 0;
  }

  .partnership__stat-label,
  .partnership__stat-inline {
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 138%;
    letter-spacing: 0.04em;
  }

  .partnership__stat-label {
    min-width: 0;
    text-align: right;
  }

  .partnership__stat-inline  {
    min-width: 0;
    text-align: left;
    margin-right: auto;
  }

  .partnership__download-link {
    font-size: 18px;
    line-height: 122%;
    gap: 24px;
  }

  .partnership__download-link span {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.009em;
  }

  .partnership__download-icon {
    width: 71px;
    height: 44px;
  }

  .partnership__download-icon img {
    width: 22px;
    height: 22px;
  }

  .partnership__stat-value--pill {
    min-height: 44px;
    border-radius: 100px;
    padding: 0px 20px;
    font-family: var(--font-family);
    background: var(--color-white);
    color: var(--color-text);
    font-weight: 500 !important;
    font-size: 18px !important;
    max-width: fit-content;
    white-space: nowrap;
    margin-right: auto;
    letter-spacing: 0.009em;
  }

  .partnership__coin--left,
  .partnership__coin--right {
    display: none;
  }

  .contact-section {
    --contact-radius: 40px;
    margin-top: -40px;
  }

  .contact-card {
    padding: 40px 0px 296px;
    box-shadow: none;
  }

  .contact-card__visual {
    min-height: auto;
  }

  .contact-card__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
  }

  .contact-card__form-wrap {
    padding: 0;
    gap: 50px;
  }

  .lead-form {
    gap: 20px;
  }

  .line-field input,
  .line-field textarea {
    font-size: 18px;
    line-height: 122%;
    padding: 0 0 17px;
  }

  .line-field .sr-only {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
  }

  .lead-form__actions {
    padding-top: 0px;
    margin-top: -6px;
  }

  .lead-form__actions .button {
    font-weight: 500;
    font-size: 18px;
    min-height: 44px;
    border-radius: 100px;
    padding: 0px 40px;
    max-width: 136px;
  }

  .format-section__copy {
    margin: 39px auto 70px;
    gap: 13px;
  }

  .format-section__gallery img {
    height: 53.1vh;
  }

  .format-section__photos,
  .format-section__cards {
    width: 100%;
  }

  .format-section__photos-track,
  .format-section__cards {
    grid-template-columns: 1fr;
  }

  .format-section__cards {
    gap: 20px;
    margin: 25px auto 0;
  }

  .format-card__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    border-radius: 40px;
    padding: 12px 23px 10px;
    min-height: 42px;
    letter-spacing: 0.01em;
  }

  .format-card__check {
    position: absolute;
    right: -26px;
    bottom: -54px;
    width: 75px;
    height: 75px;
  }

  .partnership__photo {
    min-height: 350px;
    width: 100%;
    height: 350px;
    border-radius: 40px;
    aspect-ratio: 307 / 316;
  }

  .growth-stats-section__shell {
    padding: 18px 0 66px;
  }

  .growth-stats-panel {
    padding: 32px 22px 85px;
  }

  .growth-stats-grid {
    width: min(100%, 760px);
    gap: 16px;
  }

  .growth-stat-card {
    min-height: 142px;
    border-radius: 32px;
  }

  .support-section__shell {
    padding: 54px 0 80px;
  }

  .support-section .section-header {
    margin-bottom: 28px;
  }

  .support-section__track {
    --support-slide-width: clamp(260px, 35vw, 360px);
  }

  .territory-badge {
    max-width: 100%;
  }

  .territory-section .section-shell--pattern {
    padding: 40px 0 48px;
  }

  .territory-section .section-header {
    margin-bottom: 19px;
  }

  .territory-section__map {
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 24px 70px rgba(1, 1, 1, 0.08);
    margin-top: 37px;
    margin-bottom: 42px;
  }

  .territory-section__map img {
    height: 530px
  }
  
  .territory-section__text--strong {
    margin-top: 22px;
  }

  .section-text,
  .format-section__lead,
  .lead-form__policy,
  .support-card p,
  .accordion__panel p {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.01em;
    text-align: center;
  }

  .stories-slider__track {
    --story-card-width: min(320px, calc(100vw - 80px));
  }

  .site-footer__logo {
    width: 250px;
    height: 46px;
  } 
}

@media (max-width: 720px) {
  :root {
    --radius-xl: 41px;
    --radius-lg: 28px;
  }

  .contact-card__visual-image {
    position: absolute;
    left: -3px;
    bottom: -58px;
    width: 122vw;
  }

  .container {
    width: min(calc(100% - 40px), var(--container-width));
  }

  .section--overlap,
  .hero-summary {
    margin-top: -32px;
  }

  .section-shell--neutral {
    padding: 22px 0 24px;
  }

  .section-shell--pattern {
    padding: 38px 0 71px;
  }

  .section-shell--partnership {
    padding: 39px 0 73px;
  }

  .section-shell--surface {
    padding: 0 0 18px;
  }

  .partnership__container {
    gap: 35px;
  }

  .partnership__stat-value {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
  }

  .partnership__stat-inline small {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: -2%;
  }

  .section-panel {
    width: min(100% - 20px, 1161px);
  }

  .hero__content {
    padding-top: 0;
    gap: 21px;
  }

  .hero__content .button {
    min-height: 44px;
    padding: 20px 40px;
    letter-spacing: 3%;
    font-weight: 500;
    font-size: 18px;
    border-radius: 100px;
    padding: 0px 20px;
  }

  .hero__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
  }

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

  .hero__intro-logo {
    display: none;
  }

  .hero__growth-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 109%;
    margin-top: 23px;
  }

  .hero__growth-pin img {
    width: 81px;
    height: 90px;
    transform: translate(-5px, 15px);
  }

  .section-title--small {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
  }

  .chart-section {
    margin-top: -134px
  }

  .growth-stats-section {
    margin-top: -42px;
  }

  .growth-stats-section__shell {
    padding: 8px 0 44px;
  }

  .growth-stats-panel {
    padding: 0px 0px 32px;
    border-radius: 41px;
  }

  .growth-stats-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .growth-stat-card {
    min-height: 88px;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 40px;
  }

  .growth-stat-card__value {
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
  }

  .growth-stat-card__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.01em;
  }

  .chart-card {
    padding: 24px 14px 28px;
  }

  .chart-card__timeline--desktop {
    display: none;
  }

  .chart-card__timeline--mobile {
    display: block;
    width: min(100%, 280px);
    aspect-ratio: 280 / 710;
    margin-top: 18px;
  }

  .chart-card__line--mobile {
    left: 67%;
    top: 51%;
    width: min(100%, 498px);
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center;
  }

  .timeline-point--mobile {
    display: block;
    transform: translate(-100%, -50%);
    text-align: left;
  }

  .timeline-point--mobile .timeline-point__marker {
    position: absolute;
    top: 50%;
    right: -34px;
    width: 44px;
    min-width: 44px;
    transform: translateY(-50%);
  }

  .timeline-point--mobile .timeline-point__content {
    width: 100%;
    margin-top: 0;
    transform: none;
  }

  .timeline-point--mobile .timeline-point__content strong {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.08;
  }

  .timeline-point--mobile .timeline-point__content span {
    font-size: 12px;
    line-height: 1.25;
    transform: none;
  }

  .format-section__photo-card {
    border-radius: 40px;
  }

  .format-section__photos {
    --format-photos-bleed: calc((100vw - 100%) / 2);
    overflow-x: auto;
    overflow-y: hidden;
    width: auto;
    margin: 28px calc(var(--format-photos-bleed) * -1) 28px calc(var(--format-photos-bleed) * -1);
    padding-left: var(--format-photos-bleed);
    padding-right: var(--format-photos-bleed);
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .format-section__photos::-webkit-scrollbar {
    display: none;
  }

  .format-section__photos.is-dragging {
    scroll-behavior: auto;
    cursor: grabbing;
    user-select: none;
  }

  .format-section__photos.is-dragging .format-section__photo-card {
    pointer-events: none;
  }

  .format-section__photos-track {
    display: flex;
    gap: 12px;
    width: max-content;
    grid-template-columns: none;
  }

  .format-section__photos-track::after {
    content: "";
    display: block;
    flex: 0 0 var(--format-photos-bleed);
    width: var(--format-photos-bleed);
  }

  .format-section__photo-card {
    flex: 0 0 min(304px, calc(100vw - 96px));
    width: min(304px, calc(100vw - 110px));
  }

  .format-card {
    min-height: 0;
    padding: 20px 18px 20px;
    border-radius: 40px;
    gap: 14px;
  }

  .format-card__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.02em;
  }

  .format-section__lead {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.01em;
  }

  .format-section__meta {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: 0.01em;
    margin-top: -3px;
  }

  .format-section__lead.format-section__lead--last {
    margin-top: 1px;
  }

  .partnership__media {
    width: min(100%, 339px);
  }

  .partnership__coin {
    width: 108px;
  }

  .partnership__coin--left {
    left: -40px;
    top: 46%;
  }

  .partnership__coin--right {
    right: -34px;
    bottom: 14%;
  }

  .support-section__shell {
    padding: 38px 0 63px;
  }

  .support-section .section-header {
    margin-bottom: 41px;
  }

  .support-section__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .support-card {
    min-height: 184px;
    border-radius: 40px;
    padding: 22px 8px;
    gap: 14px;
  }

  .support-card--gap-tight {
    gap: 14px;
  }

  .support-card--gap-wide {
    gap: 14px;
  }

  .support-card h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
  }

  .support-card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
  }

  .territory-section__metrics {
    margin-bottom: 25px;
  }

  .territory-badge {
    gap: 8px;
    border-radius: 40px;
    padding: 20px 12px;
    flex-direction: column;
    width: 100%;
  }

  .territory-badge__label,
  .territory-badge__value {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.01em;
  }

  .territory-badge__value {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.01em;
  }

  .stories-section__shell {
    padding: 40px 0 40px;
  }

  .stories-section__header {
    align-items: center;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }

  .stories-section__header .section-title,
  .stories-section__controls {
    grid-column: auto;
  }

  .section-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
  }

  .section-title.ecosystem-section__title {
    text-align: left;
  }

  .stories-section__controls {
    gap: 8px;
    display: none;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

  .stories-slider__track {
    --story-card-width: min(300px, calc(100vw - 72px));
  }

  .ecosystem-slider__dots {
    bottom: 14px;
    gap: 6px;
  }

  .ecosystem-slider__dot {
    width: 10px;
    height: 10px;
  }

  .story-card {
    border-radius: 40px;
    padding: 16px;
  }

  .story-card__media {
    border-radius: 35px;
    aspect-ratio: 1;
    width: 262px;
    height: 262px;
  }

  .story-card__image {
    width: 100%;
  }

  .story-card__body {
    padding: 16px 0px 0px;
    gap: 18px;
  }

  .story-card__name {
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
  }

  .story-card__copy p,
  .story-card__quote {
    font-size: 18px;
    line-height: 122%;
  }

  .stories-section__image {
    margin-top: 0px;
    border-radius: 40px;
    overflow: hidden;
    height: 350px;
  }

  .stories-section__image img {
    width: 100%;
    height: calc(100% + 0px);
    object-fit: cover;
    transform: translateY(0px);
  }

  .faq-section {
    background: var(--color-bg);
    padding: 40px 0 80px;
  }

  .faq-section .section-header {
    justify-content: flex-start;
    margin-bottom: 0px;
  }

  .accordion__trigger {
    padding: 19px 0 17px;
    align-items: flex-start;
    gap: 12px;
  }

  .accordion__trigger span {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    padding-right: 8px;
  }

  .accordion__panel p {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .accordion__list {
    margin: 14px 0 0;
    padding-left: 20px;
  }

  .accordion__list li {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.01em;
  }

  .accordion__list li + li {
    margin-top: 12px;
  }

  .site-footer__container {
    justify-items: center;
    padding-inline: 18px;
    gap: 41px;
  }

  .site-footer__meta {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .site-footer__link,
  .site-footer__phone,
  .site-footer__copy {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
  }

  .site-footer__copy {
    order: 0;
  }

  .site-footer__link {
    order: 1;
  }

  .site-footer__phone {
    order: 2;
  }

  .site-footer__social {
    order: 3;
  }

  .site-footer__social img {
    width: 32px;
    height: 32px;
  }

  .modal {
    padding: 14px;
  }

  .modal__body {
    padding: 22px 18px 24px;
  }

  .policy-page__main {
    width: min(100% - 20px, 980px);
    padding-top: 24px;
  }

  .policy-page .policy-document {
    padding: 22px 18px;
  }
}


@media (max-width: 380px) {

  .partnership__stat-inline small {
    font-weight: 500;
    font-size: 14px;
    line-height: 122%;
    letter-spacing: -2%;
  }

  .partnership__stat-inline .no-wrap {
    white-space: normal !important;
  }

  .partnership__stats {
    transform: none;
    gap: 18px;
  }

  .partnership__stat-value--pill {
    min-height: 34px;
    padding: 0px 10px;
    font-size: 13px !important;
  }
}
