@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #f7f7f7;
  --grey: #999999;
  --red: #f40011;
  --red-dark: #a9000c;
  --yellow: #ffbe00;
  --yellow-soft: #ffd13b;
}

* { box-sizing: border-box; }

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

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 48px 7vw 32px;
  background:
    radial-gradient(circle at 72% 28%, rgba(244, 0, 17, .055), transparent 30%),
    radial-gradient(circle at 28% 72%, rgba(255, 190, 0, .035), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0a0a0a 52%, #030303 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.content {
  position: relative;
  z-index: 2;
  width: min(800px, 100%);
  margin: auto;
}

.logo {
  display: block;
  width: min(560px, 94vw);
  height: auto;
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 25px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.55));
}

.divider {
  width: 82px;
  height: 3px;
  margin-bottom: 36px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  box-shadow: 0 0 18px rgba(244,0,17,.18);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3.5px;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 800;
}

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

.description {
  max-width: 600px;
  margin: 30px 0;
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,190,0,.30);
  background: rgba(255,255,255,.025);
  color: #d7d7d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(244,0,17,.75);
  animation: pulse 1.8s infinite;
}

.footer-text {
  margin: 25px 0 0;
  color: #6e6e6e;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

footer {
  position: absolute;
  z-index: 2;
  left: 7vw;
  right: 7vw;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 10px;
  letter-spacing: 1.5px;
}

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

.ambient {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: .055;
}

.ambient.red {
  top: -220px;
  right: -130px;
  background: var(--red);
}

.ambient.yellow {
  bottom: -260px;
  left: -170px;
  background: var(--yellow);
}

@keyframes pulse {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 600px) {
  .page {
    padding: 35px 24px 90px;
  }

  .logo {
    width: min(500px, 100%);
    max-height: 160px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 68px);
    letter-spacing: -3px;
  }

  .description {
    font-size: 15px;
    line-height: 1.65;
  }

  footer {
    left: 24px;
    right: 24px;
    bottom: 24px;
    flex-direction: column;
    gap: 8px;
  }
}
