@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url("../fonts/Poppins-VariableFont_wght.otf");
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #fcfcfc;
  color: #68656e;
  -webkit-font-smoothing: antialiased;
}

h1 {
  color: #2e2c35;
}

.phantom-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center; /* Center on mobile */
  max-width: 80rem;
}

@media (min-width: 768px) {
  .header {
    justify-content: flex-start;
  }
}


.content-wrapper {
  max-width: 64rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-badge {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pulse-wrapper {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.status-dot-outer {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: #4b25d1;
  opacity: 0.75;
  animation: pulse-dot 2s infinite ease-in-out;
}

.status-dot-inner {
  position: relative;
  display: inline-flex;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: #4b25d1;
}

.status-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.accent-text {
  color: #4b25d1;
}

.sub-title {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #68656e;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 6rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
}

.cta-container {
  margin-top: 2.5rem;
}

.btn-phantom {
  display: inline-block;
  background-color: #4b25d1;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 20px 25px -5px rgba(75, 37, 209, 0.2);
}

.btn-phantom:hover {
  background-color: #3a1ca3;
  transform: translateY(-2px);
}

.footer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
}

.footer-badge {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #68656e;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
