/* ===== BASE ===== */

:root {
  --primary: #012946;
  --secondary: #ffffff;
  --accent: #ffb000;
  --text-muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(135deg, #0f1117, #012946); */
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(135deg, #0f1117, #012946);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 15px 40px; /* space for navbar */
}

/* Glass effect toast */
.glass-effect {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: #222;
}

/* ===== NAVBAR ===== */
.floating-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.crumb.active {
  color: #ffb000;
  font-weight: 600;
}

.divider {
  opacity: 0.4;
}

/* ===== CARD ===== */
.onboarding-card {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);;
  /* background: linear-gradient(145deg, rgba(255,255,255,0.10), transparent 95%); */

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.muted {
  color: rgba(255,255,255,0.6);
}

/* ===== STEPS ===== */
.step {
  display: none;
}

.step.active {
  display: block;
}

  /*------------------------------------------------*/
  /*-------------------- Inputs --------------------*/
  /*------------------------------------------------*/

  input,
  textarea,
  select {
    background-color: #001524 !important;
    color: #fff !important;
    border: 1px solid var(--primary) !important;
  }

  input::placeholder,
  textarea::placeholder {
    color: #f4f4f4; /* Lighter placeholder for contrast */
    opacity: 1;
  }



/*------------------------------------------------*/
  /*-------------------- Buttons --------------------*/
  /*------------------------------------------------*/
  input[type="submit"] {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #102030;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  .btn-accent {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #102030;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  input[type="submit"],
  .btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 176, 0, 0.25);
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #102030;
  }

  .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: white; /* No color change on hover */
  }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  margin-bottom: 2px;
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}