:root {
  color-scheme: dark;
  --ink: #0b0c0f;
  --paper: #f1f2ed;
  --muted: rgba(241, 242, 237, 0.68);
  --line: rgba(241, 242, 237, 0.22);
  --cobalt: #2156ff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero__image,
.hero__wash,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  animation: image-arrival 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.96) 0%, rgba(5, 8, 14, 0.83) 38%, rgba(5, 8, 14, 0.3) 65%, rgba(5, 8, 14, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 8, 14, 0.62) 0%, transparent 44%);
}

.hero__grain {
  z-index: 5;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1480px);
  height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  animation: reveal 0.75s 0.04s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.wordmark__number {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav__cta {
  position: relative;
  padding: 9px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.nav__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--paper);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__cta:hover::after {
  transform: scaleX(0.45);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100% - 64px, 1480px);
  min-height: calc(100dvh - 152px);
  margin: 0 auto;
  padding: 44px 0 64px;
}

h1 {
  max-width: 1120px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.1rem, 5.35vw, 6.75rem);
  font-stretch: 82%;
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 span {
  display: block;
  animation: reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 span:first-child {
  animation-delay: 0.12s;
}

h1 span:last-child {
  animation-delay: 0.2s;
}

.hero__content p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.15rem);
  line-height: 1.6;
  animation: reveal 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  margin-top: 34px;
  padding: 0 18px 0 22px;
  background: var(--cobalt);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: reveal 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__cta:hover {
  transform: translateY(-3px);
  background: #3868ff;
}

.hero__cta:active {
  transform: translateY(0) scale(0.985);
}

.hero__cta-arrow {
  font-size: 19px;
  line-height: 1;
}

.control,
.economics,
.network {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(241, 242, 237, 0.12);
  background: var(--ink);
}

.control__inner,
.economics__inner,
.network__inner {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
}

.economics {
  background: #0d0f14;
}

.economics__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(72px, 10vw, 180px);
  padding: clamp(108px, 12vw, 190px) 0;
}

.economics__copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-stretch: 82%;
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.economics__copy > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.65;
}

.economics__empty {
  display: flex;
  max-width: 560px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 242, 237, 0.2);
}

.economics__empty span,
.economics__window-head,
.economics__revenue span,
.economics__result span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.economics__empty strong {
  color: rgba(241, 242, 237, 0.32);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.5rem, 5vw, 6.2rem);
  font-stretch: 84%;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.economics__window {
  position: relative;
  padding: 0 34px 30px;
  border: 1px solid rgba(241, 242, 237, 0.22);
  background: #12151c;
  box-shadow: 30px 34px 0 rgba(33, 86, 255, 0.13);
}

.economics__window::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 92px;
  height: 4px;
  background: var(--cobalt);
}

.economics__window-head {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(241, 242, 237, 0.16);
  color: rgba(241, 242, 237, 0.55);
}

.economics__window-head span:last-child {
  text-align: right;
}

.economics__revenue {
  display: flex;
  min-height: 142px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 25px;
  border-bottom: 1px solid rgba(241, 242, 237, 0.16);
}

.economics__revenue strong,
.economics__result strong {
  font-family: "Archivo", sans-serif;
  font-stretch: 84%;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.economics__revenue strong {
  font-size: clamp(4.5rem, 6vw, 7.4rem);
  font-weight: 690;
}

.economics__costs {
  margin: 0;
  padding: 21px 0;
  border-bottom: 1px solid rgba(241, 242, 237, 0.16);
}

.economics__costs div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.economics__costs dt,
.economics__costs dd {
  margin: 0;
  font-size: 0.88rem;
}

.economics__costs dt {
  color: rgba(241, 242, 237, 0.66);
}

.economics__costs dd {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.economics__result {
  display: flex;
  min-height: 144px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 25px;
}

.economics__result span {
  color: #91aaff;
}

.economics__result strong {
  color: var(--cobalt);
  font-size: clamp(5rem, 7vw, 8.6rem);
  font-weight: 760;
}

.economics__note {
  max-width: 48ch;
  margin: 8px 0 0;
  color: rgba(241, 242, 237, 0.42);
  font-size: 0.67rem;
  line-height: 1.55;
}

.control__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(64px, 8vw, 140px);
  padding: clamp(100px, 11vw, 176px) 0;
}

.control__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #111319;
}

.control__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 9, 12, 0.36));
  pointer-events: none;
}

.control__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control__copy h2,
.network__inner h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-stretch: 82%;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-transform: uppercase;
}

.control__copy h2 {
  max-width: 100%;
  font-size: clamp(3rem, 4vw, 5rem);
}

.control__intro,
.network__intro {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.65;
}

.control__intro {
  max-width: 570px;
  margin: 34px 0 0;
}

.control__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  margin-top: 58px;
}

.control__item {
  min-height: 142px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(241, 242, 237, 0.2);
}

.control__item h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control__item p {
  max-width: 31ch;
  margin: 13px 0 0;
  color: rgba(241, 242, 237, 0.62);
  font-size: 0.91rem;
  line-height: 1.55;
}

.network {
  background: #101218;
}

.network__inner {
  padding: clamp(100px, 11vw, 176px) 0 clamp(112px, 13vw, 210px);
}

.network__label {
  margin: 0 0 30px;
  color: rgba(241, 242, 237, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.network__inner h2 {
  max-width: 16ch;
  font-size: clamp(3.2rem, 6.4vw, 7.7rem);
}

.network__intro {
  max-width: 540px;
  margin: 34px 0 0;
}

.network__cities {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 28px;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.network__cities li {
  display: flex;
  min-height: 116px;
  align-items: flex-end;
  padding: 22px 0;
  border-top: 1px solid rgba(241, 242, 237, 0.19);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 2rem);
  font-stretch: 88%;
  font-weight: 590;
  letter-spacing: -0.035em;
}

@supports (animation-timeline: view()) {
  .control__media,
  .control__copy,
  .economics__copy,
  .economics__window,
  .network__label,
  .network__inner h2,
  .network__intro,
  .network__cities {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }

  .control__copy,
  .economics__window,
  .network__intro,
  .network__cities {
    animation-range: entry 14% cover 38%;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes image-arrival {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .hero__image {
    object-position: 63% center;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(5, 8, 14, 0.86) 0%, rgba(5, 8, 14, 0.46) 100%),
      linear-gradient(0deg, rgba(5, 8, 14, 0.92) 0%, rgba(5, 8, 14, 0.22) 74%);
  }

  .nav,
  .hero__content {
    width: calc(100% - 40px);
  }

  .nav {
    height: 68px;
  }

  .wordmark__name,
  .nav__cta {
    font-size: 9px;
  }

  .wordmark__number {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  .hero__content {
    min-height: calc(100dvh - 68px);
    justify-content: flex-end;
    padding: 100px 0 54px;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.65rem, 12vw, 4.3rem);
    line-height: 0.91;
  }

  h1 span {
    display: inline;
  }

  .hero__content p {
    max-width: 36ch;
    margin-top: 25px;
    font-size: 0.91rem;
  }

  .hero__cta {
    width: 100%;
    margin-top: 26px;
  }

  .control__inner,
  .economics__inner,
  .network__inner {
    width: calc(100% - 40px);
  }

  .control__inner {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 88px 0 104px;
  }

  .control__media {
    aspect-ratio: 16 / 11;
    max-height: none;
  }

  .control__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .control__intro {
    margin-top: 26px;
    font-size: 0.94rem;
  }

  .control__list {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .control__item {
    min-height: 0;
    padding: 23px 0 27px;
  }

  .economics__inner {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 92px 0 118px;
  }

  .economics__copy h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .economics__copy > p {
    margin-top: 26px;
    font-size: 0.94rem;
  }

  .economics__empty {
    margin-top: 52px;
  }

  .economics__window {
    padding: 0 22px 24px;
    box-shadow: 14px 16px 0 rgba(33, 86, 255, 0.14);
  }

  .economics__window-head {
    min-height: 58px;
    gap: 18px;
    font-size: 0.58rem;
  }

  .economics__revenue,
  .economics__result {
    min-height: 124px;
  }

  .economics__revenue strong {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .economics__result strong {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .network__inner {
    padding: 90px 0 112px;
  }

  .network__label {
    margin-bottom: 24px;
  }

  .network__inner h2 {
    max-width: 11ch;
    font-size: clamp(3rem, 14.5vw, 4.7rem);
  }

  .network__intro {
    margin-top: 26px;
    font-size: 0.94rem;
  }

  .network__cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    margin-top: 56px;
  }

  .network__cities li {
    min-height: 82px;
    font-size: clamp(1.15rem, 6vw, 1.6rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-timeline: auto !important;
  }
}
