:root {
  --purple: #894290;
  --purple-dark: #301135;
  --acid: #b9f648;
  --green: #218636;
  --black: #161616;
  --warm: #f3f0e9;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--black);
  background: var(--warm);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.nav {
  height: 82px;
  padding: 0 3.2vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand { width: 116px; height: 55px; display: block; filter: brightness(0) invert(1); }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-center { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.nav-link { justify-self: end; font-size: 12px; font-weight: 800; }
.nav-link b { margin-left: 12px; color: var(--acid); font-weight: 800; }
.nav-short { display: none; }

.hero {
  height: max(760px, 100vh);
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #171717;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10,8,11,.95) 0%, rgba(10,8,11,.76) 34%, rgba(10,8,11,.05) 73%),
    linear-gradient(0deg, rgba(10,8,11,.6), transparent 45%),
    url("assets/market-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.7) .5px, transparent .5px);
  background-size: 4px 4px;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 6.5vw;
  top: 50%;
  width: 58%;
  transform: translateY(-44%);
}
.overline, .section-no {
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.overline { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); }
.overline i { width: 27px; height: 2px; background: var(--acid); }
.hero h1 {
  margin: 35px 0 40px;
  font-size: clamp(78px, 9.4vw, 150px);
  line-height: .78;
  letter-spacing: -.09em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--acid); }
.hero-bottom { display: flex; align-items: center; gap: 35px; }
.hero-bottom p { max-width: 490px; margin: 0; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.75); }
.round-link {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--acid);
  transition: transform .25s;
}
.round-link:hover { transform: rotate(-12deg) scale(1.06); }
.glass {
  position: absolute;
  z-index: 3;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(20,14,20,.84);
}
.live-card {
  width: 255px;
  right: 5vw;
  top: 18%;
  padding: 22px;
}
.pulse {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 7px rgba(185,246,72,.13);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 13px rgba(185,246,72,0); } }
.glass small { display: block; font-size: 8px; letter-spacing: .15em; opacity: .55; }
.live-card strong { display: block; margin-top: 18px; font-size: 33px; letter-spacing: -.06em; }
.live-card p { margin: 10px 0 0; font-size: 10px; line-height: 1.55; opacity: .6; }
.order-card {
  width: 290px;
  right: 11vw;
  bottom: 8%;
  padding: 19px;
  transform: rotate(-2deg);
}
.order-head, .order-foot { display: flex; align-items: center; justify-content: space-between; }
.order-head span { font-size: 10px; opacity: .55; }
.order-head b { color: var(--acid); font-size: 10px; }
.order-products { display: flex; margin: 20px 0 17px; }
.order-products i, .order-products span {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.8); margin-left: -8px;
}
.order-products i:first-child { margin-left: 0; }
.order-products .p1 { background: #d8322d; }
.order-products .p2 { background: #ef9d31; }
.order-products .p3 { background: #39984c; }
.order-products span { display: grid; place-items: center; background: var(--purple); font-size: 11px; }
.order-foot span { font-size: 9px; opacity: .5; }
.order-foot strong { font-size: 13px; }

.ticker {
  overflow: hidden;
  padding: 20px 0;
  color: white;
  background: var(--purple);
}
.ticker div { width: max-content; display: flex; align-items: center; gap: 30px; animation: ticker 24s linear infinite; }
.ticker span { font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.ticker i { color: var(--acid); font-style: normal; font-size: 18px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.model { padding: 125px 5vw 100px; }
.section-no { color: var(--purple); }
.model-top { display: grid; grid-template-columns: 1fr 3fr; align-items: start; }
.model h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(48px, 6.3vw, 98px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 600;
}
.model h2 em { color: var(--purple); font-style: normal; }
.model-grid { margin-top: 105px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(0,0,0,.2); }
.model-grid article { min-height: 355px; padding: 35px 3vw 25px 0; border-right: 1px solid rgba(0,0,0,.2); }
.model-grid article:not(:first-child) { padding-left: 3vw; }
.model-grid article:last-child { border: 0; }
.icon {
  width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 70px;
  border-radius: 50%; font-size: 31px; font-weight: 400;
}
.icon-market { background: var(--acid); }
.icon-bag { color: white; background: var(--purple); }
.icon-route { border: 1px solid var(--black); }
.model-grid small { color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.model-grid h3 { margin: 12px 0 17px; font-size: 26px; letter-spacing: -.05em; }
.model-grid p { max-width: 360px; margin: 0; font-size: 14px; line-height: 1.65; opacity: .62; }

.geography { color: white; background: var(--black); display: grid; grid-template-columns: .84fr 1.16fr; }
.geo-intro { min-height: 870px; position: sticky; top: 0; align-self: start; padding: 80px 5vw; background: var(--purple); overflow: hidden; }
.geo-intro::after {
  content: ""; position: absolute; width: 510px; height: 510px; right: -230px; bottom: -120px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.geo-intro .section-no { color: var(--acid); }
.geo-intro > div { position: absolute; left: 5vw; bottom: 95px; z-index: 1; }
.geo-intro h2 { margin: 0; font-size: clamp(65px, 7vw, 110px); line-height: .86; letter-spacing: -.08em; font-weight: 600; }
.geo-intro h2 span { color: var(--acid); }
.geo-intro p { max-width: 440px; margin: 35px 0 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.65); }
.city-board { padding: 30px 4vw 55px; }
.city-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.city-row span { font-size: 10px; opacity: .35; }
.city-row strong { font-size: clamp(25px, 2.4vw, 39px); letter-spacing: -.05em; font-weight: 500; }
.city-row i { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; font-style: normal; border: 1px solid rgba(255,255,255,.2); padding: 8px 11px; border-radius: 20px; }
.city-row.active i { color: var(--acid); }
.city-row.active {
  cursor: pointer;
  position: relative;
}
.city-row.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.city-row.active:hover::after { transform: scaleX(1); }
.city-row.active:hover { color: var(--acid); }
.city-row.active:hover span { color: var(--acid); opacity: .75; }
.city-row.active:hover i {
  color: var(--acid);
  border-color: var(--acid);
  background: rgba(185,246,72,.08);
}
.city-row.next strong { color: rgba(255,255,255,.38); }
.city-row.next i { color: rgba(255,255,255,.4); border-style: dashed; }
.city-row:hover strong { color: var(--acid); transform: translateX(8px); transition: .25s; }
.city-row.active:hover strong {
  color: var(--acid);
  text-shadow: 0 0 24px rgba(185,246,72,.2);
}

.manifesto { padding: 120px 7vw; color: white; background: var(--purple-dark); }
.manifesto .section-no { color: var(--acid); }
.manifesto > p {
  margin: 65px 0 90px;
  max-width: 1260px;
  font-size: clamp(45px, 6.1vw, 94px);
  line-height: 1.04;
  letter-spacing: -.075em;
  font-weight: 500;
}
.manifesto > p em { color: var(--acid); font-style: normal; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.manifesto-tags span { padding: 12px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 30px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.action { display: grid; grid-template-columns: 1fr 1fr; }
.download, .contact { min-height: 780px; padding: 70px 5vw; position: relative; overflow: hidden; }
.download { background: var(--acid); }
.download h2, .contact h2 { margin: 70px 0 28px; font-size: clamp(58px, 6.1vw, 96px); line-height: .85; letter-spacing: -.085em; font-weight: 600; }
.download > p, .contact > p { max-width: 390px; font-size: 15px; line-height: 1.6; }
.download-bottom { position: absolute; left: 5vw; right: 5vw; bottom: 70px; display: flex; align-items: end; gap: 25px; }
.qr { display: block; background: white; padding: 9px; line-height: 0; }
.qr img { width: 125px; height: 125px; }
.promo { min-width: 235px; background: var(--black); color: white; padding: 17px 19px; display: grid; grid-template-columns: 1fr auto; }
.promo small { grid-column: 1 / -1; font-size: 8px; letter-spacing: .15em; opacity: .45; }
.promo strong { margin-top: 7px; font-size: 18px; letter-spacing: .02em; }
.promo button { border: 0; background: none; color: var(--acid); cursor: pointer; font-size: 9px; font-weight: 800; padding: 8px 0 0 10px; }
.contact { color: white; background: var(--green); }
.contact .section-no { color: var(--acid); position: relative; z-index: 1; }
.contact h2, .contact > p, .contact form { position: relative; z-index: 1; }
.contact-orbit { position: absolute; width: 500px; height: 500px; right: -300px; top: 50px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02); }
.contact form { margin-top: 45px; }
.contact label { display: block; padding-bottom: 11px; margin-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.27); }
.contact label span { display: block; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.contact input { width: 100%; border: 0; outline: none; padding: 9px 0 0; color: white; background: transparent; font-size: 15px; }
.contact input::placeholder { color: rgba(255,255,255,.36); }
.contact form button { width: 100%; display: flex; justify-content: space-between; margin-top: 28px; padding: 18px 20px; border: 0; color: var(--black); background: var(--acid); font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .2s; }
.contact form button:hover { transform: translateY(-3px); }
.contact form > small { display: block; margin-top: 12px; color: rgba(255,255,255,.4); font-size: 8px; }

footer { min-height: 170px; padding: 35px 4vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 25px; background: var(--warm); }
footer img { width: 115px; height: 58px; object-fit: contain; }
footer p { text-align: center; font-size: 10px; opacity: .45; }
footer div { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; font-size: 10px; }

@media (max-width: 960px) {
  .hero-copy { width: 80%; }
  .live-card { display: none; }
  .model-top { grid-template-columns: 1fr; gap: 35px; }
  .geography { grid-template-columns: 1fr; }
  .geo-intro { min-height: 620px; position: relative; }
  .action { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { height: 68px; padding: 0 20px; grid-template-columns: 1fr auto; }
  .brand { width: 88px; height: 43px; }
  .nav-center { display: none; }
  .nav-full { display: none; }
  .nav-short { display: inline; }
  .nav-link { position: absolute; right: 20px; top: 27px; font-size: 10px; }
  .hero { height: 760px; min-height: 760px; }
  .hero-image {
    background-image:
      linear-gradient(0deg, rgba(10,8,11,.93) 0%, rgba(10,8,11,.2) 70%),
      url("assets/market-hero.png");
    background-size: auto 100%;
    background-position: 68% center;
  }
  .hero-copy { left: 24px; top: auto; bottom: 205px; width: calc(100% - 48px); transform: none; }
  .overline { font-size: 8px; }
  .hero h1 { margin: 25px 0; font-size: 51px; line-height: .83; }
  .hero-bottom p { max-width: 320px; font-size: 13px; }
  .round-link { display: none; }
  .order-card { width: calc(100% - 48px); right: 24px; bottom: 24px; transform: none; }
  .ticker { padding: 15px 0; }
  .ticker span { font-size: 10px; }
  .model { padding: 80px 24px 65px; }
  .model h2 { font-size: 42px; }
  .model-grid { margin-top: 65px; grid-template-columns: 1fr; }
  .model-grid article, .model-grid article:not(:first-child) { min-height: auto; padding: 35px 0 45px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
  .model-grid article:last-child { border-bottom: 0; }
  .icon { margin-bottom: 45px; }
  .geo-intro { min-height: 520px; padding: 60px 24px; }
  .geo-intro > div { left: 24px; bottom: 65px; }
  .geo-intro h2 { font-size: 67px; }
  .geo-intro p { font-size: 14px; padding-right: 22px; }
  .city-board { padding: 15px 24px 40px; }
  .city-row { min-height: 72px; grid-template-columns: 28px 1fr; gap: 10px; }
  .city-row strong { font-size: 22px; }
  .city-row i { display: none; }
  .manifesto { padding: 80px 24px; }
  .manifesto > p { margin: 48px 0 65px; font-size: 40px; }
  .download, .contact { min-height: 690px; padding: 58px 24px; }
  .download h2, .contact h2 { margin-top: 55px; font-size: 58px; }
  .download-bottom { left: 24px; right: 24px; bottom: 58px; align-items: stretch; flex-direction: column; }
  .qr { width: fit-content; }
  .qr img { width: 112px; height: 112px; }
  .promo { min-width: 0; width: 100%; }
  footer { grid-template-columns: 1fr; padding: 35px 24px; }
  footer p { text-align: left; }
  footer div { justify-self: start; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div, .pulse { animation: none; }
}
