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

:root {
  --bg: #f4f3ef;
  --panel: #eceae4;
  --ink: #161616;
  --muted: #6a6c72;
  --line: #d9d6cf;
  --accent: #161616;
  --font: "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 1180px;
  --pad: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -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 12px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-family: var(--mono);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 239, 0.92);
  border-bottom: 1px solid var(--line);
}

.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;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header__logo img {
  opacity: 0.9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--accent);
}

.btn:hover {
  opacity: 0.85;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

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

.btn--small {
  padding: 7px 12px;
}

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

.hero {
  padding: 120px 0 96px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.main_position {
  align-items: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  }
  
.hero__inner {
  width: 100%;
  display: grid;
  gap: 56px;
  align-items: center;
}

.put_center {
  text-align: center;
}

.hero__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero__title {
  text-align: center;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__text {
  color: var(--muted);
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero__spec {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  max-width: 420px;
}

.hero__spec p {
  background: var(--bg);
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__spec span {
  display: block;
  color: var(--ink);
  margin-top: 4px;
  font-size: 12px;
}

.hero__media {
  margin: 0;
  background: transparent;
}

.hero__media img {
  width: 100%;
  min-height: 460px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  filter: invert(1);
}

.roles {
  padding: 0;
}

.roles table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.roles th,
.roles td {
  text-align: left;
  padding: 28px var(--pad);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.roles th {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 40px;
}

.roles td:first-child {
  font-weight: 600;
  width: 28%;
}

.roles td:last-child {
  color: var(--muted);
}

.block {
  padding: 104px 0;
}

.block--panel {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.block__title {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.points__item h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.points__item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.steps__item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 72px 200px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.steps__item::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
}

.steps__item h3 {
  font-size: 20px;
  font-weight: 600;
}

.steps__item p {
  color: var(--muted);
  font-size: 16px;
}

.join {
  padding: 120px 0 128px;
}

.join__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.join__text {
  color: var(--muted);
  max-width: 520px;
  font-size: 18px;
  margin-bottom: 32px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 20px var(--pad);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

@media (max-width: 800px) {
  .hero__inner,
  .points {
    grid-template-columns: 1fr;
  }

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

  .steps__item {
    grid-template-columns: 40px 1fr;
  }

  .steps__item p {
    grid-column: 2;
  }

  .roles td:first-child {
    width: auto;
  }
}

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