/* ============================
   Base & Reset
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #1c1c24;
  color: #fff;
  font-family: 'Muli', sans-serif;
}


/* ============================
   Animated Background Orbs
   ============================ */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: floatOrb linear infinite;
  will-change: transform;
}

.orb-1 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, #ffffff 0%, #c8c8d8 45%, transparent 100%);
  top: -180px;
  left: -130px;
  animation-duration: 18s;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e8e8f0 0%, #b0b0c8 50%, transparent 100%);
  bottom: -150px;
  right: -110px;
  animation-duration: 22s;
  animation-delay: -6s;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #d8d8e8 0%, #a0a0c0 50%, transparent 100%);
  top: 38%;
  left: 55%;
  animation-duration: 26s;
  animation-delay: -12s;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #e0e0f0 0%, #c0c0d8 55%, transparent 100%);
  bottom: 18%;
  left: 4%;
  animation-duration: 20s;
  animation-delay: -3s;
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -30px) scale(1.05); }
  50%  { transform: translate(70px, 20px) scale(0.95); }
  75%  { transform: translate(20px, 50px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}


/* ============================
   Wrapper (centred layout)
   ============================ */
.wrapper {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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


/* ============================
   Glass Card
   ============================ */
.glass-card {
  width: 100%;
  max-width: 580px;
  padding: 52px 48px 44px;
  border-radius: 28px;
  text-align: center;

  /* Frosted glass — white over dark */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}


/* ============================
   Brand / Logo
   ============================ */
.brand {
  margin-bottom: 32px;
}

#logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(255, 255, 255, 0.15));
}


/* ============================
   Heading
   ============================ */
h1 {
  font-size: clamp(36px, 8vw, 56px);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 0;
}

.dot {
  color: #d0d0e8;
}


/* ============================
   Subtitle
   ============================ */
p {
  margin-top: 16px;
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}


/* ============================
   Social Icons
   ============================ */
.icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.icons a {
  text-decoration: none;
}

.icons i {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  height: 16px;
  width: 16px;
  padding: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 220ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.icons i:hover,
.icons i:active {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transform: scale(1.18) translateY(-2px);
  cursor: pointer;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .glass-card {
    padding: 40px 28px 36px;
    border-radius: 20px;
  }
}