/* 
  Color variables for easy theme editing.
  Dark mode palette with a purple accent.
*/
:root {
  --bg: #050509;
  --card: #11111a;
  --accent: #7f5af0;
  --text-main: #f5f5f7;
  --text-muted: #9ca3af;
  --border-subtle: #1f2933;
}

/* 
  Reset default browser spacing and ensure consistent sizing.
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
  Full-page dark gradient background.
  Centers the card both vertically and horizontally.
*/
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #11111a 0, #050509 55%, #020308 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/*
  The main card container.
  Rounded corners, subtle border, and soft shadow for depth.
*/
.wrapper {
  max-width: 480px;
  width: 100%;

  background: linear-gradient(145deg, #0b0b13, #050509);
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 2.25rem 2rem 2rem;
  text-align: center;
}

/*
  Logo placeholder box.
  Dashed border indicates "drop your logo here".
  Centered text until replaced with an <img>.
*/
.logo-slot {
  margin: 0 auto 1.75rem;
  border-radius: 24px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: radial-gradient(circle at 30% 0, #1f2937 0, #020308 60%);
  padding: 0.45rem;
  overflow: hidden;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Keep any logo image contained inside the slot,
   scale it down when needed and preserve rounded corners. */
.logo-slot img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

/*
  Main title styling.
  Uppercase with spaced letters for a clean brand feel.
*/
h1 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/*
  Subtle tagline text.
  Muted color and comfortable line spacing.
*/
.tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/*
  Pill-shaped status badge.
  Uses accent color with a soft translucent background.
*/
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(127, 90, 240, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

/*
  Glowing green dot inside the pill.
  Suggests "active" or "in progress".
*/
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/*
  Small footer text under the tagline.
  Slightly faded for subtlety.
*/
.footer-note {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/*
  Decorative horizontal accent line.
  Adds a finishing touch under the footer note.
*/
.accent-line {
  width: 64px;
  height: 2px;
  border-radius: 999px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}
