/* ── Login ──────────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--black);
}
.login-card {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow: visible;
  border-radius: 20px;
  border: none;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  position: relative;
}
.login-art {
  position: relative;
  min-height: 560px;
  background: #1a1110;
  color: #fff;
  padding: 40px 36px;
  display: grid;
  align-content: space-between;
  border-radius: 20px 0 0 20px;
  border: 3px solid var(--red);
  border-right: none;
  overflow: hidden;
}
.login-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/extracted/Niklas___TRACKER__image1.png") center / 60% no-repeat;
  opacity: .05;
}
.login-art::after {
  content: "L U C K Y   C O A C H I N G";
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: .4em;
  color: rgba(255,255,255,.2);
  font-weight: 700;
}
.login-art > * { position: relative; z-index: 1; }
.login-art h1 { color: #fff; font-size: clamp(26px, 3.5vw, 48px); line-height: 1.1; }
.login-art-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.login-art-brand-icon { width: 52px; height: 52px; border-radius: 50%; background: #fff; overflow: hidden; }
.login-art-brand-icon img { width: 100%; height: 170%; object-fit: cover; object-position: 50% 8%; display: block; }
.login-art-brand-name {
  font-size: 10px; font-weight: 700; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.login-form {
  padding: 36px 28px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--panel);
  border-radius: 0 20px 20px 0;
}
.login-form h2 { font-size: 22px; margin: 0 0 4px; }

/* ── Onboarding ─────────────────────────────────────────────── */
.ob-progress { display: grid; gap: 10px; margin-bottom: 6px; }
.ob-progress-track { height: 3px; background: var(--line); border-radius: 9999px; overflow: hidden; }
.ob-progress-fill { height: 100%; background: var(--red); border-radius: 9999px; width: 0%; transition: width .35s ease; }
.ob-dots { display: flex; gap: 10px; align-items: center; justify-content: center; }
.ob-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .2s, transform .2s; flex-shrink: 0; }
.ob-dot--active { background: var(--red); transform: scale(1.4); }
.ob-dot--done { background: var(--green); }
.ob-panel { display: grid; gap: 14px; }
.ob-panel h2 { font-size: 22px; margin: 0 0 2px; }
.ob-sub { font-size: 13px; color: var(--muted); margin: 0; }
.ob-info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.ob-info-head { font-weight: 700; font-size: 15px; color: var(--ink); }
.ob-features { display: grid; gap: 7px; margin-top: 12px; }
.ob-feature { font-size: 13px; color: var(--ink); padding-left: 18px; position: relative; }
.ob-feature::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.ob-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ob-role-btn {
  background: var(--surface); border: 2px solid var(--line); border-radius: 16px;
  padding: 22px 16px; cursor: pointer; display: grid; gap: 6px;
  text-align: center; transition: border-color .15s, background .15s; color: var(--ink);
}
.ob-role-btn:hover { border-color: var(--red); }
.ob-role-btn.selected { border-color: var(--red); background: color-mix(in srgb, var(--red) 8%, transparent); }
.ob-role-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.ob-role-sub { font-size: 11px; color: var(--muted); line-height: 1.4; }
.ob-nav { display: flex; gap: 10px; }
.ob-nav button { flex: 1; }
.ob-back { background: transparent !important; border: 1px solid var(--line) !important; color: var(--muted) !important; }
