  /* ── AUTH SCREENS ── */
  .auth-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
    background: #060606;
    background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .auth-screen::before {
    content: '';
    position: absolute;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(230,115,10,0.52) 0%, rgba(230,115,10,0.22) 35%, transparent 68%);
    top: -440px; left: -380px;
    pointer-events: none;
  }

  .auth-screen::after {
    content: '';
    position: absolute;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(123,47,190,0.55) 0%, rgba(123,47,190,0.22) 35%, transparent 68%);
    bottom: -380px; right: -320px;
    pointer-events: none;
  }

  .auth-card {
    background: rgba(14,20,14,0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 38px 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.5s ease;
  }

  .auth-card.wide { max-width: 720px; padding: 40px; }
  .auth-card.xwide { max-width: 920px; padding: 40px; }

  /* ── LOGIN LAYOUT ── */
  .login-wrap {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.5s ease;
  }

  .login-logo-area { text-align: center; }

  .login-logo-icon {
    width: 86px; height: 86px;
    border-radius: 24px;
    background: #111;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(245,130,15,0.2), 0 0 80px rgba(123,47,190,0.12);
  }

  .login-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
  }

  .login-brand-bazzarify {
    background: linear-gradient(135deg, #F5A623, #E85A2A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .login-brand-admin {
    background: linear-gradient(135deg, #C83A90, #7B2FBE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .login-brand-sub {
    font-size: 14px;
    color: var(--text2);
    margin-top: 2px;
  }

  .login-card {
    width: 100%;
    background: rgba(14,20,14,0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 36px 40px;
  }

  .login-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
  }

  .pw-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: 17px;
    padding: 0;
    line-height: 1;
    display: flex; align-items: center;
    transition: color 0.15s;
  }
  .pw-eye:hover { color: var(--text2); }
  .form-input.has-eye { padding-right: 44px; }

  .login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text2);
    cursor: pointer;
    user-select: none;
  }
  .login-remember input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: #3B82F6;
    cursor: pointer;
    border-radius: 4px;
  }

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

  .auth-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }
  .auth-subtitle {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.55;
  }

  /* ── INTAKE STEPS ── */
  .intake-steps { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
  .step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 0 0 auto; }
  .step-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text3);
    background: var(--surface);
    transition: all 0.3s;
  }
  .step.done .step-circle { background: var(--success); border-color: var(--success); color: white; }
  .step.active .step-circle { background: var(--gradient-h); border-color: transparent; color: white; box-shadow: 0 0 0 4px rgba(245,166,35,0.15); }
  .step-label { font-size: 10px; color: var(--text3); font-weight: 600; text-align: center; white-space: nowrap; }
  .step.active .step-label { color: var(--gold); }
  .step.done .step-label { color: var(--success); }
  .step-connector { height: 2px; flex: 1; background: var(--border); margin-bottom: 22px; transition: background 0.3s; min-width: 20px; }
  .step-connector.done { background: var(--success); }

  /* ── HERO (apply page) ── */
  .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
  .hero-pricing {
    background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(123,47,190,0.08));
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: var(--radius);
    padding: 22px;
    margin: 22px 0;
  }
  .hero-price-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
  .value-bullets { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
  .value-bullet { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
  .value-bullet-icon { font-size: 18px; flex-shrink: 0; }

