:root {
  --bg: #0b1220;
  --bg-mid: #111827;
  --yellow: #ffd60a;
  --yellow-soft: #fbbf24;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --card: rgba(17, 24, 39, 0.78);
  --border: rgba(255, 214, 10, 0.25);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 214, 10, 0.12), transparent 60%),
    radial-gradient(ellipse 45% 35% at 100% 100%, rgba(59, 130, 246, 0.08), transparent 55%),
    linear-gradient(180deg, #111827 0%, var(--bg) 50%, #070b14 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page {
  width: min(860px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 2rem;
  text-align: center;
}

.logo-wrap {
  margin: 1.25rem auto 1.75rem;
  animation: fadeUp 0.8s ease both;
}

.logo-wrap img,
.logo-wrap svg {
  width: min(460px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.site-name {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.08);
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  animation: fadeUp 0.8s 0.15s ease both;
}

h1 em {
  font-style: normal;
  color: var(--yellow);
}

.tagline {
  margin: 0 auto 2rem;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.35);
  color: #fde68a;
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeUp 0.8s 0.25s ease both;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulse 2s infinite;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  animation: fadeUp 0.8s 0.3s ease both;
}

.card {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.card i {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.35s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #f59e0b);
  color: #111827;
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-soft);
  border: 1px solid var(--border);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.quick-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.quick-links a:hover { color: var(--yellow-soft); }

.powered {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.8s 0.45s ease both;
}

.powered a {
  display: inline-block;
  opacity: 0.9;
}

.powered img,
.powered svg {
  width: min(200px, 60vw);
  height: auto;
}

.footer-note {
  margin: 1rem 0 0;
  color: #6b7280;
  font-size: 0.8rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 600px) {
  .page { padding-top: 2rem; }
}
