:root {
  --bg: #0f1115;
  --bg-card: #171a21;
  --fg: #e8eaed;
  --muted: #9aa0aa;
  --accent: #6ea8fe;
  --border: #262b35;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a1f2b 0%, var(--bg) 60%);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.monogram {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #b06efe);
}

h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--fg);
  color: #0f1115;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.contact:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.foot {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}
