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

:root {
  --bg-gradient: linear-gradient(135deg, #0f172a, #1d4ed8, #7c3aed);
  --card-bg: rgba(15, 23, 42, 0.9);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.2);
  --accent-strong: #f97316;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.7);
  --radius-xl: 1.75rem;
}

html,
body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #020617;
}

.body {
  min-height: 100vh;
}

.background {
  position: fixed;
  inset: 0;
  background-image: var(--bg-gradient);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.25), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.85;
  z-index: -1;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.card {
  max-width: 960px;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.35), transparent 60%);
  opacity: 0.25;
  pointer-events: none;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.logo-mark {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 30% 20%, #f97316, #e11d48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.8);
}

.logo-icon {
  font-weight: 800;
  font-size: 1.6rem;
  color: #f9fafb;
  letter-spacing: 0.04em;
}

.logo-text h1 {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text .tagline {
  margin-top: 0.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.status {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.4);
  margin-bottom: 0.6rem;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.status h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.status p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.highlight {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  border-radius: 1.25rem;
  padding: 1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  min-height: 150px;
}

.icon-circle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.highlight h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.info-block {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1.15rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
}

.info-block h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.info-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-block a {
  color: var(--accent);
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 0.85rem;
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.small-text {
  opacity: 0.9;
}

a {
  color: var(--accent-strong);
}

a:hover {
  opacity: 0.9;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 900px) {
  .card {
    padding: 1.6rem 1.4rem;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .logo-text h1 {
    font-size: 1.35rem;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 1.4rem 0.9rem;
  }

  .card {
    border-radius: 1.3rem;
  }
}
