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

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  background: url("bg.png") center/cover no-repeat;
  z-index: -3;
  transform: scale(1.06);
}

.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 20%, rgba(20, 45, 80, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(12, 30, 55, 0.8) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 18, 32, 0.92) 0%, rgba(10, 28, 48, 0.88) 100%);
  z-index: -2;
}

/* Ambient glows */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.25) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.2) 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-15px) scale(1.05); }
}

.glow-2 {
  animation-name: float2;
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(10px) scale(1.08); }
}

/* Card */
.card {
  position: relative;
  min-height: 100vh;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeUp 1s ease;
}

/* Card border removed per request */

/* Logo – clear background for readability */
.logo-wrap {
  position: relative;
  margin-bottom: 28px;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo-wrap::before {
  content: none;
}

.logo {
  position: relative;
  z-index: 1;
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo-wrap:hover .logo {
  transform: scale(1.03);
}

/* Accent: line · dot · line */
.accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.accent-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.8), transparent);
  border-radius: 1px;
  animation: accentPulse 2.5s ease-in-out infinite;
}

.accent-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.9);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.5);
  animation: accentPulse 2.5s ease-in-out infinite 0.3s;
}

@keyframes accentPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Title */
.title {
  font-family: "Cormorant Garamond", "Outfit", serif;
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.3;
  background: linear-gradient(165deg, #fff 0%, rgba(255, 245, 220, 0.98) 50%, rgba(212, 168, 83, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.subtitle-block {
  max-width: 420px;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(230, 238, 255, 0.9);
  font-weight: 400;
}

/* Footer */
footer {
  margin-top: 44px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Entrance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .card {
    padding: 36px 24px;
  }

  .logo {
    width: 170px;
  }

  .logo-wrap {
    padding: 12px 18px;
  }

  .glow {
    opacity: 0.25;
  }
}
