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

:root {
  --bg: #0c0c0c;
  --page: #f3f3f1;
  --ink: #0c0c0c;
  --light: #f3f3f1;
  --muted: #8a8a86;
  --accent: #414141;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1120px;
  --pad: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}



.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}



.header__actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(243, 243, 241, 0.28);
}

.btn--ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--small {
  padding: 8px 16px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--light);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 40px 0 72px;
}

.hero__bg {
  position: absolute;
  inset: -8% -6% -12%;
  pointer-events: none;
}

.hero__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__route {
  opacity: 0.28;
  stroke-dashoffset: 0;
  animation: route 18s linear infinite;
}

.hero__pins {
  opacity: 0.2;
}

@keyframes route {
  to {
    stroke-dashoffset: -180;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero__kicker {
  position: relative;
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 243, 241, 0.62);
  line-height: 1.2;
}

.hero__kicker-ghost {
  visibility: hidden;
  display: inline-block;
  white-space: nowrap;
}

.hero__kicker-live {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero__kicker-live::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-left: 5px;
  background: currentColor;
  animation: kicker-caret 0.9s step-end infinite;
}

@keyframes kicker-caret {
  50% {
    opacity: 0;
  }
}

.hero__title {
  font-size: clamp(44px, 8vw, 76px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 18px;
}

.hero__text {
  color: rgba(243, 243, 241, 0.72);
  font-size: 18px;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero__spec {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}

.hero__spec p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__spec span {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--light);
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 6% 0 8%;
  background: rgba(12, 12, 12, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 36px;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.facts {
  padding: 72px 0 24px;
}

.facts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: fact;
}

.facts__item {
  counter-increment: fact;
}

.facts__item::before {
  content: counter(fact, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.facts__item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.facts__item p {
  font-size: 15px;
  color: #5c5c58;
}

.block {
  padding: 56px 0 80px;
}

.block__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 16ch;
}

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

.item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.points__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.points__item p {
  font-size: 15px;
  color: #5c5c58;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.steps__item {
  counter-increment: step;
  background: #fff;
  padding: 28px 24px 32px;
  border-radius: 20px;
}

.steps__item::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--ink);
  margin-bottom: 20px;
}

.steps__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.steps__item p {
  font-size: 14px;
  color: #5c5c58;
}

.note {
  padding: 24px 0 96px;
}

.note__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.note__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.note__text p {
  font-size: 16px;
  line-height: 1.65;
  color: #5c5c58;
  margin-bottom: 16px;
}

.note__text p:last-child {
  margin-bottom: 0;
}

.note__media {
  margin: 0;
}

.note__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.join {
  background: var(--bg);
  color: var(--light);
  padding: 88px var(--pad);
  text-align: left;
}

.join .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.join_position {
    max-width: 460px;
    }

.join__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 12px;
}

.join__text {
  color: rgba(243, 243, 241, 0.7);
  margin-bottom: 0;
}

.footer {
  background: var(--bg);
  padding: 20px var(--pad) 36px;
}

.footer__inner {
    text-align: center;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 13px;
  color: rgba(243, 243, 241, 0.5);
}

.footer__nav {
  display: flex;
  gap: 20px;
}

.footer__nav a:hover {
  color: var(--accent);
}

@media (max-width: 800px) {
  .hero {
    min-height: 0;
    padding: 28px 0 48px;
  }

  .hero__inner,
  .facts__list,
  .points,
  .steps,
  .note__inner {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .block__title {
    max-width: none;
  }

  .join .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --pad: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__route,
  .hero__kicker-live::after {
    animation: none;
  }
}
