* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(145deg, #000000 0%, #101010 48%, #000000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.brand strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.status p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.85);
}

.hero-card {
  width: 100%;
  max-width: 820px;
  margin: auto;
  padding: 72px 64px;
  text-align: center;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.82);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 28px 0 22px;
  font-size: clamp(56px, 10vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #ffffff;
}

.subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.75;
}

.info-panel {
  max-width: 620px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

.info-panel div {
  padding: 22px 20px;
}

.info-panel div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-panel span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-panel strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.message {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer {
  padding-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

@media (max-width: 720px) {
  .page {
    padding: 22px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-card {
    padding: 48px 24px;
    border-radius: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .info-panel {
    grid-template-columns: 1fr;
  }

  .info-panel div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}