
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --accent:#2563eb;
  --shadow: 0 20px 60px rgba(17,24,39,.06);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.card{
  text-align:center;
  padding:48px 36px;
  border:1px solid var(--border);
  border-radius:20px;
  max-width:760px;
  width:100%;
  box-shadow: var(--shadow);
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.25);
}

.domain{
  font-size:clamp(46px,6vw,72px);
  margin:24px 0 12px;
  letter-spacing:-0.02em;
}

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

.divider{
  height:1px;
  background: var(--border);
  margin: 28px auto;
  width: min(520px, 92%);
}

.h2{
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: .02em;
}

.uses{
  list-style:none;
  padding:0;
  margin: 0 auto;
  display:grid;
  gap:12px;
  justify-items:center;
}

.uses li{
  width: min(560px, 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  background: #fafafa;
  text-align:left;
  font-size: 14.5px;
}

.contact{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.email{
  color: var(--accent);
  text-decoration:none;
  font-weight: 900;
}

.email:hover{
  text-decoration: underline;
}
