@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/manrope-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/manrope-latin-wght-normal.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+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: dark;
  font-family: Manrope, system-ui, sans-serif;
  background: #19191b;
  color: #ededef;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
.page {
  min-height: 100svh;
  max-width: 1280px;
  padding: 36px 64px 28px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: block;
  width: 220px;
  height: auto;
}
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b7b7be;
  font-size: 14px;
}
.status span {
  width: 6px;
  height: 6px;
  background: #bd9af5;
  border-radius: 50%;
}
main {
  flex: 1;
  padding: 100px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.accent {
  height: 3px;
  width: 72px;
  background: linear-gradient(90deg, #8937ff, #d12b88);
  margin-bottom: 34px;
}
.eyebrow {
  color: #b7b7be;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
h1 {
  font-size: clamp(42px, 6.5vw, 84px);
  letter-spacing: -0.055em;
  font-weight: 650;
  line-height: 1.12;
  margin: 0;
}
h1 span {
  color: #bda1ed;
}
.description {
  color: #aaaab2;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  margin: 30px 0 0;
}
footer {
  border-top: 1px solid #343438;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #95959e;
  font-size: 14px;
}
@media (max-width: 600px) {
  .page {
    padding: 24px 24px 22px;
  }
  .logo {
    width: 166px;
  }
  main {
    padding: 80px 0;
  }
  h1 {
    font-size: clamp(36px, 8.7vw, 52px);
  }
  .eyebrow {
    font-size: 13px;
  }
  footer {
    flex-wrap: wrap;
    font-size: 13px;
  }
}
