:root {
  --bg: #0d1524;
  --bg-contrast: #0f1b30;
  --card: #0f1f3a;
  --text: #e8edf5;
  --muted: #b8c4dc;
  --accent: #6ee7ff;
  --accent-strong: #7c3aed;
  --outline: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(110, 231, 255, 0.18), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
}

.page {
  width: min(960px, 100%);
}

.card {
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.08), rgba(124, 58, 237, 0.12)), var(--card);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 12px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
}

.lede {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  border: 1px solid var(--outline);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.button.primary {
  background: linear-gradient(90deg, var(--accent-strong), #1f6feb);
  color: #f5f8ff;
  border: none;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.status-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--outline);
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(110, 231, 255, 0.15);
  color: var(--accent);
  font-weight: 800;
  border: 1px solid rgba(110, 231, 255, 0.35);
}

.check-title {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.check-desc {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}

.domains {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 16px;
}

.domains-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.domain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.domain-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: linear-gradient(90deg, rgba(110, 231, 255, 0.06), rgba(124, 58, 237, 0.05));
}

.domain-name {
  margin: 0;
  font-weight: 700;
}

.domain-desc {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.06);
}

.badge.positive {
  color: #b3ffde;
  border-color: rgba(110, 231, 255, 0.4);
  background: rgba(110, 231, 255, 0.12);
}

.badge.neutral {
  color: var(--muted);
  border-color: var(--outline);
}

.footer {
  margin-top: 18px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.7);
}

.footer-note {
  margin: 0;
}

@media (max-width: 640px) {
  body {
    padding: 20px 12px;
  }

  .card {
    padding: 24px;
  }

  .actions {
    width: 100%;
  }

  .button {
    width: 100%;
    justify-content: center;
  }
}
