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


:root {
  --bg:      #0b0b0f;
  --card:    #111117;
  --border:  rgba(255, 255, 255, 0.07);
  --accent1: #c044f5;
  --accent2: #7c3aed;
  --accent3: #f472b6;
  --text:    #f0eef8;
  --muted:   rgba(240, 238, 248, 0.45);
  --glow1:   rgba(192, 68, 245, 0.18);
  --glow2:   rgba(244, 114, 182, 0.12);
}

/* ── Base ── */
html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, var(--glow1), transparent),
    radial-gradient(ellipse 50% 45% at 85% 75%, var(--glow2), transparent),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(124, 58, 237, 0.06), transparent);
}

.bg::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}


.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -80px;
  background: rgba(192, 68, 245, 0.07);
  animation-duration: 20s;
}

.orb2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: -60px;
  background: rgba(244, 114, 182, 0.07);
  animation-duration: 14s;
  animation-delay: -6s;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: rgba(17, 17, 23, 0.85);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 52px 52px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(192, 68, 245, 0.06);

  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}


.card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 68, 245, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -24px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 32px;
}

.logo-img svg {
  height: 36px;
  width: 36px;
}

.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--text);
}



.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent1);
  background: rgba(192, 68, 245, 0.1);
  border: 1px solid rgba(192, 68, 245, 0.25);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent1);
  box-shadow: 0 0 6px var(--accent1);
  animation: pulse 2s ease-in-out infinite;
}



.headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.headline .accent {
  background: linear-gradient(135deg, var(--accent1) 0%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.75s forwards;
}

.body strong {
  color: var(--text);
  font-weight: 400;
}


.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s forwards;
}


.foot {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.95s forwards;
}

.foot a {
  color: var(--accent1);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 68, 245, 0.3);
  transition: border-color 0.2s;
}

.foot a:hover {
  border-color: var(--accent1);
}



@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

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



@media (max-width: 480px) {
  .card {
    padding: 40px 28px 36px;
  }
}
