:root {
  --color-dark: #15222c;
  --color-gold: #fdca13;
  --color-teal: #02b5be;
  --color-orange: #fd8b08;
  --color-coral: #fb6766;
  --color-mint: #31c0ad;
  --color-text: #e8edf0;
  --color-text-muted: #9aabb5;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-dark);
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(2, 181, 190, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(253, 202, 19, 0.08), transparent 50%),
    var(--color-dark);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb--teal {
  width: 320px;
  height: 320px;
  background: var(--color-teal);
  top: -80px;
  right: -60px;
}

.orb--gold {
  width: 240px;
  height: 240px;
  background: var(--color-gold);
  bottom: 10%;
  left: -40px;
  animation-delay: -4s;
}

.orb--orange {
  width: 180px;
  height: 180px;
  background: var(--color-orange);
  bottom: 30%;
  right: 15%;
  animation-delay: -8s;
  opacity: 0.2;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.card {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem 2rem;
}

.brand {
  width: 100%;
}

.brand__logo {
  display: block;
  width: min(100%, 480px);
  height: auto;
  margin: 0 auto 2rem;
}

.construction {
  width: 100%;
}

.construction__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(21, 34, 44, 0.6);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.construction__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(154, 171, 181, 0.15);
  width: 100%;
}

.footer p {
  font-size: 0.75rem;
  color: rgba(154, 171, 181, 0.6);
  letter-spacing: 0.03em;
}
