:root {
  font-family: Arial, system-ui, sans-serif;
  color: #f8fafc;
  background: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #0f172a;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #111827;
}

.eyebrow {
  margin: 0 0 10px;
  color: #5eead4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.lead {
  margin: 14px 0 22px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.55;
}

.dns-card {
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 14px;
  background: #172033;
}

.dns-card span {
  display: block;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.dns-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: #f8fafc;
  font-size: 16px;
}

.dns-card p {
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}

.dns-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.dns-card li {
  margin-top: 6px;
  overflow-wrap: anywhere;
  color: #5eead4;
  font-size: 14px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.stats div {
  padding: 14px;
  border-radius: 14px;
  background: #1f2937;
}

.stats span {
  display: block;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.stats strong {
  display: block;
  font-size: 18px;
}

button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  color: #042f2e;
  background: #5eead4;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  opacity: 0.7;
  cursor: wait;
}
