@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("/assets/fonts/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

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

:root {
  color-scheme: dark;
  --bg: #060609;
  --bg-elevated: #0b0b0f;
  --text: #f3f1ee;
  --muted: #a8a6ad;
  --muted-strong: #c6c3ca;
  --hairline: rgba(243, 241, 238, 0.14);
  --accent: #7a4cf5;
  --accent-hover: #7547ef;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(104px, 13vw, 190px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter Local", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 5px;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

.shell {
  width: min(100%, calc(var(--shell) + 2 * var(--gutter)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  z-index: 100;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.site-header {
  position: relative;
  z-index: 10;
  height: 72px;
  background: rgba(6, 6, 9, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-row {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  width: 150px;
  height: 35px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted-strong);
  font-size: 14px;
}

.nav-links a,
.site-footer a,
.text-link,
.meeting-contact a {
  transition: color 220ms var(--ease);
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover,
.meeting-contact a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #f8f5ff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 220ms var(--ease), transform 220ms var(--ease);
}

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

.button:active {
  transform: scale(0.98);
}

.button--small {
  justify-self: end;
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero {
  min-height: calc(100dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding-top: clamp(38px, 6vh, 72px);
  padding-bottom: clamp(46px, 7vh, 84px);
}

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

.eyebrow {
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  max-width: 880px;
  font-size: clamp(52px, 5.1vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 590px;
  margin-top: 34px;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.55;
}

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

.enter-eyebrow {
  --enter-delay: 80ms;
}

.enter-title {
  --enter-delay: 150ms;
}

.enter-copy {
  --enter-delay: 220ms;
}

.enter-actions {
  --enter-delay: 290ms;
}

.enter-visual {
  --enter-delay: 190ms;
}

.network-stage {
  position: relative;
  min-height: clamp(400px, 58vh, 680px);
  overflow: hidden;
  isolation: isolate;
}

.network-stage::before {
  content: "";
  position: absolute;
  inset: 2% -16% 2% -4%;
  z-index: -1;
  background: url("/assets/partner-network.jpg") center / contain no-repeat;
  opacity: 0.62;
}

.has-js .network-stage::before {
  opacity: 0.12;
}

#network-canvas {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.proof {
  padding-top: 14px;
  padding-bottom: 28px;
}

.proof dl {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 34px;
  border-top: 1px solid var(--hairline);
}

.proof dt {
  color: var(--text);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.proof dd {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.section h2 {
  max-width: 980px;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.scenarios {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(58px, 9vw, 144px);
}

.scenarios-intro {
  align-self: start;
  position: sticky;
  top: 116px;
}

.scenarios-intro h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.scenarios-intro p,
.expertise-copy > p,
.principles-statement > p {
  max-width: 610px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
}

.scenario-list {
  display: grid;
  gap: clamp(56px, 8vw, 104px);
  padding-top: 12px;
}

.scenario-list article {
  position: relative;
  max-width: 660px;
  padding-left: clamp(0px, 3vw, 44px);
}

.scenario-list h3 {
  font-size: clamp(30px, 3.5vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.scenario-list p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.profit-section {
  overflow: hidden;
}

.profit-section h2 {
  max-width: 1020px;
}

.profit-lines {
  display: grid;
  margin-top: clamp(66px, 9vw, 126px);
  gap: 36px;
}

.profit-lines p {
  max-width: 1050px;
  color: var(--muted);
  font-size: clamp(31px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.profit-lines p:nth-child(even) {
  margin-left: clamp(0px, 12vw, 178px);
  color: var(--text);
}

.formats h2 {
  max-width: 850px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 76px 28px;
  margin-top: clamp(72px, 10vw, 132px);
}

.format {
  grid-column: span 5;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.format--wide {
  grid-column: span 7;
}

.format:nth-child(1) {
  grid-column: 1 / span 7;
}

.format:nth-child(2) {
  grid-column: 8 / span 5;
}

.format:nth-child(3) {
  grid-column: 2 / span 5;
}

.format:nth-child(4) {
  grid-column: 7 / span 6;
}

.format h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.format p {
  max-width: 520px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 16px;
}

.expertise-copy {
  display: grid;
  justify-items: start;
}

.expertise-copy > p {
  max-width: 560px;
}

.network-figure {
  width: min(1500px, 100%);
  margin: clamp(64px, 8vw, 112px) auto 0;
}

.network-figure img {
  width: 100%;
  height: min(61vw, 760px);
  object-fit: cover;
  object-position: center;
}

.competency-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
  padding-top: 24px;
  color: var(--muted-strong);
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.principles-statement h2 {
  max-width: 760px;
}

.principles-grid {
  display: grid;
  gap: 34px;
  padding-top: 16px;
}

.principles-grid p {
  max-width: 460px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  color: var(--muted-strong);
  font-size: 18px;
}

.experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.experience-photo {
  position: relative;
  max-width: 520px;
}

.experience-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
  filter: grayscale(1) contrast(1.08);
}

.experience-copy h2 {
  max-width: 700px;
}

.experience-copy p {
  max-width: 660px;
  margin-top: 27px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.experience-copy p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--muted-strong);
  font-size: 15px;
}

.meeting {
  padding-bottom: clamp(100px, 12vw, 170px);
}

.meeting-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(58px, 9vw, 136px);
  align-items: start;
}

.meeting-number {
  color: var(--accent);
  font-size: clamp(150px, 22vw, 330px);
  font-weight: 200;
  line-height: 0.72;
  letter-spacing: -0.09em;
}

.meeting-content h2 {
  max-width: 900px;
  font-size: clamp(43px, 5.6vw, 78px);
}

.agenda {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted-strong);
  font-size: 17px;
}

.meeting-content .button {
  margin-top: 38px;
}

.meeting-contact {
  margin-top: 21px;
  color: var(--muted);
  font-size: 13px;
}

.meeting-contact a {
  color: var(--muted-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 110px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-enter {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-in 900ms var(--ease) forwards;
    animation-delay: var(--enter-delay, 0ms);
  }

  @keyframes hero-in {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 16px;
  }

  h1 {
    font-size: clamp(51px, 5.2vw, 60px);
  }

  .network-stage {
    min-height: 460px;
  }

  .scenarios,
  .principles {
    gap: 58px;
  }

  .section h2 {
    font-size: clamp(44px, 6.3vw, 68px);
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-space: 104px;
  }

  body {
    font-size: 16px;
  }

  .site-header,
  .nav-row {
    height: 68px;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 132px;
    height: auto;
  }

  .nav-links {
    display: none;
  }

  .button--small {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 11px;
  }

  .hero {
    min-height: calc(100dvh - 68px);
    grid-template-columns: 1fr;
    align-content: start;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.99;
  }

  h1 span {
    white-space: normal;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.48;
  }

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

  .hero-actions .button,
  .meeting-content .button {
    min-height: 50px;
    width: 100%;
  }

  .network-stage {
    min-height: 280px;
    margin-inline: -12px;
  }

  .proof {
    padding-top: 34px;
  }

  .proof dl {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding-top: 28px;
  }

  .proof dt {
    font-size: 28px;
  }

  .section h2,
  .scenarios-intro h2,
  .meeting-content h2 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .scenarios,
  .principles,
  .experience,
  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .scenarios {
    gap: 72px;
  }

  .scenarios-intro {
    position: static;
  }

  .scenarios-intro p,
  .expertise-copy > p,
  .principles-statement > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .scenario-list {
    gap: 56px;
    padding-top: 0;
  }

  .scenario-list article {
    padding-left: 0;
  }

  .scenario-list h3 {
    font-size: 33px;
  }

  .profit-lines {
    margin-top: 58px;
    gap: 28px;
  }

  .profit-lines p {
    font-size: clamp(30px, 9vw, 40px);
  }

  .profit-lines p:nth-child(even) {
    margin-left: 0;
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 64px;
  }

  .format-grid .format {
    grid-column: 1 / -1;
  }

  .network-figure {
    margin-top: 56px;
  }

  .network-figure img {
    height: 78vw;
  }

  .competency-line {
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 12px;
  }

  .principles {
    gap: 60px;
  }

  .principles-grid {
    gap: 28px;
  }

  .experience {
    gap: 54px;
  }

  .experience-photo {
    max-width: none;
  }

  .experience-photo img {
    aspect-ratio: 5 / 6;
  }

  .meeting-grid {
    gap: 58px;
  }

  .meeting-number {
    font-size: 160px;
  }

  .agenda {
    margin-top: 34px;
  }

  .site-footer {
    min-height: 132px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 116px;
  }

  .button--small {
    padding-inline: 13px;
  }
}

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

  .has-js [data-reveal],
  .hero-enter {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
