:root {
  --bg: #0f172a;
  --panel: #020617;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f43f5e;
  --line: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 20% -10%, #1e293b 0%, var(--bg) 60%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 760px;
  padding: 4rem 3rem;
  background: linear-gradient(180deg, rgba(2,6,23,.9), rgba(2,6,23,.75));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 3rem;
  color: var(--accent);
}

p {
  line-height: 1.7;
  color: var(--text);
}

.small {
  color: var(--muted);
  font-size: .9rem;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.badge {
  display: inline-block;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(244,63,94,.15);
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

footer {
  margin-top: 3rem;
  font-size: .85rem;
  color: var(--muted);
}
.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: .9rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all .2s ease;
}

.cta:hover {
  background: rgba(244,63,94,.12);
  transform: translateY(-1px);
}
