@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1E40AF;
  --primary-dark: #1E1B4B;
  --secondary: #0EA5E9;
  --accent: #F59E0B;
  --bg-from: #1E1B4B;
  --bg-to: #1E40AF;
  --card: #ffffff;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(245,158,11,0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(14,165,233,0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-from) 0%, var(--bg-to) 100%);
}

/* ─── Card ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  box-shadow:
    0 20px 60px -10px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
  animation: fadeUp 0.5s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Brand ────────────────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

/* ─── Badge ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ─── Headings ─────────────────────────────────────────────────────────── */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.85rem 0;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 2rem 0;
}

.lead strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ─── Actions ──────────────────────────────────────────────────────────── */
.actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.cta.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.4);
}

.cta.primary:hover {
  background: #1B3A9E;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
}

.cta.ghost {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.cta.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(30, 64, 175, 0.04);
}

/* ─── Contact line ─────────────────────────────────────────────────────── */
.contact-line {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.contact-line a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 0 1rem;
}

/* ─── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .card { padding: 2.25rem 1.5rem; }
  h1 { font-size: 1.4rem; }
  .lead { font-size: 0.95rem; }
  .actions { flex-direction: column; align-items: stretch; }
  .cta { justify-content: center; width: 100%; }
}
