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

:root {
  --bg: #0b0b0f;
  --text: #f5f5f7;
  --muted: rgba(255, 255, 255, 0.65);
  --soft: rgba(255, 255, 255, 0.08);
  --accent: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* HERO */

.hero {
  text-align: center;
  margin-bottom: 80px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 0.9;
}

.tagline {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.logo {
  width: 100px;
  height: 60px;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* MAIN MESSAGE */

.status {
  text-align: center;
  margin-bottom: 80px;
}

.status h1 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.status p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 12px auto;
  font-size: 16px;
}

.subtext {
  font-size: 13px;
  opacity: 0.7;
}

/* CARDS */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.card {
  background: var(--soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.card h2 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent);
}

.card p {
  font-size: 13px;
  color: var(--muted);
}

/* FOOTER */

.footer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-sub {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .status h1 {
    font-size: 26px;
  }

  .container {
    padding: 60px 18px;
  }
}
