

:root {
  --bg: #101820;
  --accent: #29b6f6;
  --accent-soft: #0288d1;
  --text: #eef2f5;
  --muted: #a9b2b9;
  --card: #141b24;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2e3a, #070b10 60%);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.frame {
  max-width: 520px;
  background: radial-gradient(circle at top, #1f2933, #101820);
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

/* Logo + branding */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #29b6f6, #26c6da, #00c853, #29b6f6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(7, 11, 16, 0.9), 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.logo-mark-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0%, #ffffff30, #0b1017);
}

.logo-mark-text {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(41, 182, 246, 0.12);
  color: var(--accent);
  border: 1px solid rgba(41, 182, 246, 0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.contact {
  margin-top: 6px;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

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

footer {
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--muted);
}