:root {
  --red: #e30613;
  --black: #070707;
  --white: #f5f5f3;
  --muted: #999;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 42%, rgba(227, 6, 19, 0.12), transparent 27%),
    radial-gradient(circle at 12% 90%, rgba(227, 6, 19, 0.05), transparent 25%);
}

.topbar {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.topbar img {
  width: 170px;
  height: auto;
  display: block;
}

.status {
  color: #888;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(227, 6, 19, 0.7);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.75);
    box-shadow: 0 0 4px rgba(227, 6, 19, 0.3);
  }
}

.hero {
  width: min(calc(100% - 48px), 1120px);
  margin: auto;
  padding: 48px 0 35px;
  text-align: center;
}

.eyebrow {
  color: #777;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h1 span {
  color: var(--red);
}

.hero > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.cards {
  max-width: 960px;
  margin: 42px auto 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: left;
}

.cards article {
  min-height: 145px;
  padding: 22px;
  position: relative;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cards article:first-child {
  background: linear-gradient(145deg, rgba(227, 6, 19, 0.18), #101010 65%);
  border-color: rgba(227, 6, 19, 0.28);
}

.cards b {
  display: block;
  margin-bottom: 27px;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.cards strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.cards span {
  display: block;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.coming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #666;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.line {
  width: 42px;
  height: 2px;
  background: var(--red);
}

footer {
  width: min(calc(100% - 48px), 1120px);
  margin: auto auto 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer span:first-child {
  color: #888;
}

@media (max-width: 720px) {
  .topbar,
  .hero,
  footer {
    width: min(calc(100% - 30px), 1120px);
  }

  .topbar {
    height: 70px;
  }
  .topbar img {
    width: 140px;
  }

  .hero {
    padding: 38px 0 25px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero > p {
    font-size: 14px;
  }

  .cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .cards article {
    min-height: 0;
    padding: 18px;
  }

  .cards b {
    margin-bottom: 12px;
  }

  .coming {
    margin-top: 25px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
