@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400&display=swap');

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

:root {
  --bg: #080808;
  --glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --accent: #c8f0ff;
  --text: #f0f0f0;
  --muted: rgba(255,255,255,0.4);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

/* animated bg blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: #3b82f6; top: -150px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -100px; right: -100px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: #06b6d4; top: 40%; left: 50%; transform: translate(-50%,-50%); animation-delay: -8s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.card {
  position: relative;
  z-index: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 64px;
  text-align: center;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 8px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 480px;
  width: 90vw;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

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

.header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.buttons {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, transform 150ms, box-shadow 200ms;
  backdrop-filter: blur(8px);
}

.buttons:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(200,240,255,0.35);
  box-shadow: 0 0 24px rgba(200,240,255,0.12);
  transform: translateY(-2px);
}

.buttons:active {
  transform: translateY(0px) scale(0.98);
}
