@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --lls-black:      #080810;
  --lls-surface:    #0f0f1a;
  --lls-surface2:   #14141f;
  --lls-white:      #f0ece6;
  --lls-white-dim:  rgba(240,236,230,0.55);
  --lls-white-mute: rgba(240,236,230,0.2);
  --lls-purple:     #7c3aed;
  --lls-purple-lg:  #a78bfa;
  --lls-gold:       #f59e0b;
  --lls-gold-lg:    #fcd34d;
  --lls-teal:       #0d9488;
  --lls-teal-lg:    #5eead4;
  --lls-border:     rgba(240,236,230,0.1);
  --lls-radius:     14px;
  --lls-radius-sm:  8px;
  font-synthesis: none;
}

/* ── Reset / Base ───────────────────────────────────────────────────────────── */
.lls-dash-wrap *,
.lls-dash-gate * { box-sizing: border-box; }

.lls-dash-wrap,
.lls-dash-gate {
  font-family: 'DM Sans', sans-serif;
  background: var(--lls-black);
  color: var(--lls-white);
  min-height: 100vh;
  padding: 0 0 80px;
}

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
.lls-dash-header {
  background: linear-gradient(160deg, #0c0b18 0%, #100f1e 60%, #0c0b18 100%);
  border-bottom: 1px solid var(--lls-border);
  padding: 48px 40px 32px;
  position: relative;
  overflow: hidden;
}
.lls-dash-header::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 55%; height: 220%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lls-dash-header::after {
  content: '';
  position: absolute;
  bottom: -40%; left: 5%;
  width: 40%; height: 120%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.lls-dash-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.lls-dash-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lls-purple-lg);
  opacity: 0.7;
  margin-bottom: 10px;
}

.lls-dash-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--lls-white);
  margin: 0 0 10px;
}
.lls-dash-element { color: var(--lls-purple-lg); }

.lls-dash-email {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--lls-white-dim);
  letter-spacing: 0.5px;
}

/* Score ring */
.lls-dash-score-ring {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.lls-dash-score-svg {
  width: 100%;
  height: 100%;
  transform: none;
}
.lls-dash-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lls-dash-score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--lls-white);
}
.lls-dash-score-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
  margin-top: 2px;
}

/* Progress */
.lls-dash-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin: 24px 0 10px;
  position: relative;
  z-index: 1;
}
.lls-dash-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to right, var(--lls-purple), var(--lls-purple-lg), var(--lls-gold));
  transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.lls-dash-progress-labels {
  display: flex;
  gap: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--lls-white-mute);
  position: relative;
  z-index: 1;
}
.lls-dash-progress-labels .lls-done { color: var(--lls-purple-lg); }

/* ── MODULES GRID ───────────────────────────────────────────────────────────── */
.lls-dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px 40px 0;
}
@media (max-width: 900px) {
  .lls-dash-grid { grid-template-columns: 1fr; }
}

.lls-dash-module {
  border-radius: var(--lls-radius);
  padding: 24px;
  border: 1px solid;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: lls-fade-up 0.5s ease both;
}
.lls-dash-module:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.lls-dash-module:nth-child(1) { animation-delay: 0.05s; }
.lls-dash-module:nth-child(2) { animation-delay: 0.12s; }
.lls-dash-module:nth-child(3) { animation-delay: 0.19s; }

@keyframes lls-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* GloType */
.lls-mod-glo.lls-mod-complete {
  background: linear-gradient(160deg, rgba(124,58,237,0.12) 0%, rgba(10,10,16,0.8) 100%);
  border-color: rgba(167,139,250,0.3);
}
.lls-mod-glo.lls-mod-locked {
  background: rgba(15,15,26,0.6);
  border-color: rgba(167,139,250,0.12);
}

/* SAH */
.lls-mod-sah.lls-mod-complete {
  background: linear-gradient(160deg, rgba(13,148,136,0.1) 0%, rgba(10,10,16,0.8) 100%);
  border-color: rgba(94,234,212,0.25);
}
.lls-mod-sah.lls-mod-locked {
  background: rgba(15,15,26,0.6);
  border-color: rgba(94,234,212,0.1);
}

/* PM */
.lls-mod-pm.lls-mod-complete {
  background: linear-gradient(160deg, rgba(245,158,11,0.1) 0%, rgba(10,10,16,0.8) 100%);
  border-color: rgba(252,211,77,0.25);
}
.lls-mod-pm.lls-mod-locked {
  background: rgba(15,15,26,0.6);
  border-color: rgba(245,158,11,0.1);
}

.lls-mod-complete-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}
.lls-mod-glo .lls-mod-complete-badge { background: var(--lls-purple);    color: #fff; }
.lls-mod-sah .lls-mod-complete-badge { background: var(--lls-teal);      color: #fff; }
.lls-mod-pm  .lls-mod-complete-badge { background: var(--lls-gold);      color: #000; }

.lls-mod-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lls-mod-glo .lls-mod-tag { color: var(--lls-purple-lg); opacity: 0.8; }
.lls-mod-sah .lls-mod-tag { color: var(--lls-teal-lg);   opacity: 0.8; }
.lls-mod-pm  .lls-mod-tag { color: var(--lls-gold-lg);   opacity: 0.8; }

.lls-mod-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1;
  color: var(--lls-purple-lg);
  margin-bottom: 2px;
}
.lls-mod-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--lls-white);
  margin-bottom: 16px;
}

.lls-mod-dims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lls-dim {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lls-dim-axis {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
}
.lls-dim-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--lls-white);
}

.lls-mod-locked-icon { font-size: 28px; margin-bottom: 10px; opacity: 0.4; }
.lls-mod-locked-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--lls-white);
  margin-bottom: 6px;
  opacity: 0.6;
}
.lls-mod-locked-sub {
  font-size: 12px;
  line-height: 1.5;
  color: var(--lls-white-dim);
  margin-bottom: 16px;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────────── */
.lls-btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 40px;
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}
.lls-btn-primary {
  background: linear-gradient(135deg, var(--lls-purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.lls-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,0.5); color: #fff; text-decoration: none; }

.lls-btn-glo { background: rgba(124,58,237,0.2); color: var(--lls-purple-lg); border: 1px solid rgba(167,139,250,0.3); }
.lls-btn-sah { background: rgba(13,148,136,0.2); color: var(--lls-teal-lg);   border: 1px solid rgba(94,234,212,0.3); }
.lls-btn-pm  { background: rgba(245,158,11,0.2); color: var(--lls-gold-lg);   border: 1px solid rgba(252,211,77,0.3); }
.lls-btn-glo:hover, .lls-btn-sah:hover, .lls-btn-pm:hover { transform: translateY(-1px); text-decoration: none; }

.lls-btn-copy  { background: rgba(255,255,255,0.07); color: var(--lls-white); border: 1px solid var(--lls-border); }
.lls-btn-share { background: linear-gradient(135deg, var(--lls-purple), #6d28d9); color: #fff; }
.lls-btn-ghost { background: transparent; color: var(--lls-white-dim); border: 1px solid var(--lls-border); }
.lls-btn-ghost:hover { color: var(--lls-white); border-color: rgba(255,255,255,0.25); text-decoration: none; }

/* ── SECTIONS ───────────────────────────────────────────────────────────────── */
.lls-dash-section {
  padding: 32px 40px 0;
}
.lls-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
  margin-bottom: 16px;
}

/* ── RECOMMENDATION ─────────────────────────────────────────────────────────── */
.lls-dash-rec {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
}
@media (max-width: 900px) { .lls-dash-rec { grid-template-columns: 1fr; } }

.lls-dash-rec__left {
  background: linear-gradient(160deg, rgba(124,58,237,0.1) 0%, rgba(15,15,26,0.9) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--lls-radius);
  padding: 28px 32px;
}
.lls-rec-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-purple-lg);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.lls-rec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--lls-white);
  margin-bottom: 8px;
}
.lls-rec-sub {
  font-size: 14px;
  color: var(--lls-white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}

.lls-dash-rec__right {
  display: flex;
  flex-direction: column;
}
.lls-rec-secondary {
  flex: 1;
  background: rgba(15,15,26,0.7);
  border: 1px solid var(--lls-border);
  border-radius: var(--lls-radius);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lls-rec-secondary:hover { border-color: rgba(167,139,250,0.25); transform: translateY(-2px); text-decoration: none; }
.lls-rec-sec-tag  { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--lls-white-mute); }
.lls-rec-sec-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--lls-white); margin-top: 6px; }
.lls-rec-sec-sub  { font-size: 12px; color: var(--lls-white-dim); line-height: 1.5; margin-top: 4px; flex: 1; }
.lls-rec-sec-cta  { font-size: 13px; font-weight: 600; color: var(--lls-purple-lg); margin-top: 12px; }

/* ── INVITE CODE ────────────────────────────────────────────────────────────── */
.lls-dash-invite {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .lls-dash-invite { grid-template-columns: 1fr; } }

.lls-invite-left {
  background: rgba(15,15,26,0.7);
  border: 1px solid var(--lls-border);
  border-radius: var(--lls-radius);
  padding: 28px;
}
.lls-invite-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lls-purple-lg);
  opacity: 0.7;
  margin-bottom: 10px;
}
.lls-invite-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 5px;
  color: var(--lls-white);
  margin-bottom: 8px;
}
.lls-invite-sub {
  font-size: 13px;
  color: var(--lls-white-dim);
  line-height: 1.5;
  margin-bottom: 20px;
}
.lls-invite-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SHARE CARD ─────────────────────────────────────────────────────────────── */
.lls-invite-card {
  background: linear-gradient(160deg, #0f0b1e 0%, #1a1030 100%);
  border: 1.5px solid rgba(167,139,250,0.3);
  border-radius: var(--lls-radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lls-invite-card::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.lls-card-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(167,139,250,0.6);
  margin-bottom: 12px;
}
.lls-card-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 6px;
  color: var(--lls-purple-lg);
  line-height: 1;
  margin-bottom: 4px;
}
.lls-card-element {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--lls-white);
  margin-bottom: 10px;
}
.lls-card-dims {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(240,236,230,0.45);
  margin-bottom: 14px;
}
.lls-card-invite {
  font-size: 10px;
  color: rgba(240,236,230,0.4);
  line-height: 1.5;
  margin-bottom: 12px;
}
.lls-card-invite strong { color: var(--lls-purple-lg); }
.lls-card-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(245,158,11,0.6);
  letter-spacing: 0.5px;
}

/* ── ACTIVITY LOG ───────────────────────────────────────────────────────────── */
.lls-dash-events {
  background: rgba(15,15,26,0.5);
  border: 1px solid var(--lls-border);
  border-radius: var(--lls-radius);
  overflow: hidden;
}
.lls-event-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s ease;
}
.lls-event-row:last-child { border-bottom: none; }
.lls-event-row:hover { background: rgba(124,58,237,0.05); }
.lls-event-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lls-purple);
  opacity: 0.6;
  flex-shrink: 0;
}
.lls-event-info { flex: 1; display: flex; gap: 10px; align-items: center; }
.lls-event-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--lls-white);
  text-transform: capitalize;
}
.lls-event-product {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 4px;
}
.lls-event-time {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--lls-white-mute);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.lls-dash-footer {
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--lls-border);
  margin-top: 40px;
}
.lls-dash-footer__brand {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
}
.lls-dash-footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245,158,11,0.4);
}

/* ── JOURNEY MAP ────────────────────────────────────────────────────────────── */
.lls-dash-journey {
  padding: 32px 40px 0;
}

.lls-journey-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lls-journey-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
}

.lls-journey-node {
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.lls-journey-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.lls-journey-gold   .lls-journey-check { background: var(--lls-gold); color: #000; }
.lls-journey-teal   .lls-journey-check { background: var(--lls-teal); }
.lls-journey-purple .lls-journey-check { background: var(--lls-purple); }

.lls-journey-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
}

.lls-journey-dot-pulse {
  background: var(--lls-purple-lg);
  border-color: var(--lls-purple);
  animation: lls-pulse 2s ease-in-out infinite;
}

@keyframes lls-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167,139,250,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(167,139,250,0); }
}

.lls-journey-content {
  flex: 1;
  min-width: 0;
}

.lls-journey-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lls-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lls-journey-locked .lls-journey-label {
  color: var(--lls-white-mute);
}
.lls-journey-emoji { font-size: 16px; }

.lls-journey-next-cta {
  margin-top: 10px;
  padding: 16px 20px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--lls-radius-sm);
}

.lls-journey-next-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-purple-lg);
  margin-bottom: 10px;
}

.lls-btn-journey {
  background: linear-gradient(135deg, var(--lls-purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.lls-btn-journey:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124,58,237,0.5);
  color: #fff;
  text-decoration: none;
}

.lls-journey-connector {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.07);
  margin-left: 15px;
}
.lls-connector-done {
  background: linear-gradient(to bottom, var(--lls-purple-lg), rgba(167,139,250,0.2));
}

/* Coach micro-insights */
.lls-journey-coach {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 4px 44px;
  padding: 12px 16px;
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.12);
  border-radius: var(--lls-radius-sm);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(240,236,230,0.65);
  font-style: italic;
}
.lls-coach-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.lls-coach-text {
  flex: 1;
}

/* Fresh user CTA */
.lls-journey-fresh-cta {
  text-align: center;
  margin-top: 32px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(124,58,237,0.08) 0%, rgba(245,158,11,0.04) 100%);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--lls-radius);
}
.lls-btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}
.lls-journey-fresh-sub {
  font-size: 13px;
  color: var(--lls-white-dim);
  margin-top: 12px;
}

/* ── GRID SECTION WRAPPER ──────────────────────────────────────────────────── */
.lls-dash-grid-section {
  padding: 32px 40px 0;
}

/* ── UNLOCK SECTION ────────────────────────────────────────────────────────── */
.lls-dash-unlock {
  background: linear-gradient(160deg, rgba(124,58,237,0.06) 0%, rgba(15,15,26,0.9) 100%);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--lls-radius);
  padding: 32px;
  text-align: center;
}
.lls-unlock-inner {
  max-width: 420px;
  margin: 0 auto;
}
.lls-unlock-eyebrow {
  font-size: 14px;
  margin-bottom: 12px;
}
.lls-unlock-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--lls-white);
  line-height: 1.5;
  margin: 0 0 24px;
}
.lls-unlock-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── HEADER SUB ────────────────────────────────────────────────────────────── */
.lls-dash-sub {
  font-size: 14px;
  color: var(--lls-white-dim);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 480px;
}

/* Save progress label in header */
.lls-dash-save-label {
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--lls-white-dim);
  letter-spacing: 0.3px;
}

/* Save buttons row in header */
.lls-save-buttons {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Custom Sign In button */
.lls-btn-signin {
  background: linear-gradient(135deg, var(--lls-purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
  padding: 12px 24px;
  font-size: 14px;
}
.lls-btn-signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124,58,237,0.5);
  color: #fff;
  text-decoration: none;
}

/* Inline magic link form (compact row) */
.lls-magic-link-inline {
  max-width: none;
  margin-bottom: 0;
}
.lls-magic-form-row {
  flex-direction: row;
  gap: 8px;
}
.lls-magic-form-row .lls-magic-input {
  width: 200px;
  padding: 10px 14px;
  font-size: 13px;
}
.lls-magic-form-row .lls-btn-magic {
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 13px;
}
@media (max-width: 600px) {
  .lls-save-buttons { flex-direction: column; align-items: flex-start; }
  .lls-magic-form-row { flex-direction: column; width: 100%; }
  .lls-magic-form-row .lls-magic-input { width: 100%; }
}

/* Save progress inline form */
.lls-save-progress {
  margin-top: 20px;
  padding: 24px;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--lls-radius-sm);
  position: relative;
  z-index: 1;
  animation: lls-fade-up 0.3s ease both;
}
.lls-save-inner {
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── LOGIN GATE ─────────────────────────────────────────────────────────────── */
.lls-dash-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 60px 24px;
}
.lls-gate-inner {
  max-width: 460px;
  text-align: center;
}
.lls-gate-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lls-purple-lg);
  opacity: 0.7;
  margin-bottom: 16px;
}
.lls-gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--lls-white);
  margin: 0 0 16px;
}
.lls-gate-sub {
  font-size: 15px;
  color: var(--lls-white-dim);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lls-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Copy success animation ─────────────────────────────────────────────────── */
.lls-copied .lls-invite-code::after {
  content: ' ✓ Copied!';
  font-size: 18px;
  color: var(--lls-teal-lg);
  letter-spacing: 1px;
}

/* ── SIGN OUT LINK ─────────────────────────────────────────────────────────── */
.lls-dash-header__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lls-dash-signout {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.lls-dash-signout:hover {
  color: var(--lls-white-dim);
  text-decoration: none;
}

/* ── GATE — stacked layout ─────────────────────────────────────────────────── */
.lls-gate-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── GATE DIVIDER ──────────────────────────────────────────────────────────── */
.lls-gate-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  margin: 18px 0;
}
.lls-gate-divider__line {
  flex: 1;
  height: 1px;
  background: var(--lls-border);
}
.lls-gate-divider__text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-white-mute);
}

/* ── MAGIC LINK FORM ───────────────────────────────────────────────────────── */
.lls-magic-link-wrap {
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
}
.lls-magic-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lls-magic-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--lls-white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--lls-border);
  border-radius: var(--lls-radius-sm);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lls-magic-input::placeholder {
  color: var(--lls-white-mute);
}
.lls-magic-input:focus {
  border-color: rgba(167,139,250,0.4);
  background: rgba(255,255,255,0.07);
}
.lls-btn-magic {
  background: linear-gradient(135deg, var(--lls-purple), #6d28d9);
  color: #fff;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
.lls-btn-magic:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lls-magic-hint {
  font-size: 11px;
  color: var(--lls-white-mute);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}
.lls-magic-status {
  text-align: center;
  padding: 16px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--lls-radius-sm);
  color: var(--lls-purple-lg);
  font-size: 13px;
  line-height: 1.6;
}
.lls-magic-status strong {
  color: var(--lls-white);
}
.lls-magic-error {
  text-align: center;
  padding: 10px 14px;
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
}

/* ── v1.2.0: Invite Code Gate (inline on journey map) ──────────────────────── */
.lls-badge-invite {
  background: rgba(124,58,237,0.25) !important;
  color: #c4b5fd !important;
  border: 1px solid rgba(124,58,237,0.4) !important;
}

.lls-invite-gate-inline {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: stretch;
}

.lls-gate-input {
  flex: 1;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: var(--lls-radius-sm);
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(0,0,0,0.3);
  color: var(--lls-white);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  outline: none;
  transition: border-color 0.2s;
}
.lls-gate-input::placeholder {
  color: var(--lls-white-mute);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.lls-gate-input:focus {
  border-color: var(--lls-purple);
  box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}

.lls-gate-unlock {
  white-space: nowrap;
  padding: 10px 20px !important;
  font-size: 13px !important;
}
.lls-gate-unlock:disabled {
  opacity: 0.6;
  cursor: wait;
}

.lls-gate-error {
  margin-top: 8px;
  font-size: 12px;
  color: #f87171;
  font-weight: 500;
}

@media (max-width: 480px) {
  .lls-invite-gate-inline {
    flex-direction: column;
  }
  .lls-gate-input {
    max-width: 100%;
  }
}

/* ── v1.2.1: Waitlist ─────────────────────────────────────────────────────── */

.lls-badge-waitlist {
  background: rgba(234,179,8,0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(234,179,8,0.35) !important;
}

.lls-waitlist-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: stretch;
}

.lls-waitlist-input {
  flex: 1;
  max-width: 260px;
  padding: 10px 14px;
  border-radius: var(--lls-radius-sm);
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(0,0,0,0.3);
  color: var(--lls-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
}
.lls-waitlist-input::placeholder {
  color: var(--lls-white-mute);
}
.lls-waitlist-input:focus {
  border-color: var(--lls-purple);
  box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}
.lls-waitlist-input[readonly] {
  opacity: 0.7;
  cursor: default;
}

.lls-waitlist-join {
  white-space: nowrap;
  padding: 10px 20px !important;
  font-size: 13px !important;
}
.lls-waitlist-join:disabled {
  opacity: 0.6;
  cursor: wait;
}

.lls-waitlist-error {
  margin-top: 8px;
  font-size: 12px;
  color: #f87171;
  font-weight: 500;
}

.lls-waitlist-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #34d399;
}

.lls-waitlist-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 480px) {
  .lls-waitlist-form {
    flex-direction: column;
  }
  .lls-waitlist-input {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LLS DASHBOARD v1.3.0 — GlowOmeter + Onboarding
   ═══════════════════════════════════════════════════════════════ */

/* ── GlowOmeter hero ──────────────────────────────────────────── */
.lls-glowometer {
    background: rgba(107,79,187,0.08);
    border: 0.5px solid rgba(107,79,187,0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 0 0 24px;
}
.lls-glow-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.lls-glow-eyebrow { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--lls-purple-light, #9B7FEC); font-weight: 600; margin-bottom: 4px; }
.lls-glow-pm-name { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.lls-glow-username { font-size: 13px; color: rgba(155,127,236,0.7); font-weight: 400; margin-left: 8px; }
.lls-glow-goal { font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 4px; }
.lls-glow-badge { text-align: center; flex-shrink: 0; }
.lls-glow-badge-emoji { font-size: 28px; line-height: 1; }
.lls-glow-badge-name { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 2px; }
.lls-glow-badge-level { font-size: 10px; color: rgba(255,255,255,0.3); }

.lls-glow-body { display: flex; gap: 20px; align-items: flex-start; }
.lls-glow-thermo-col { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.lls-glow-thermo-zone-labels { display: flex; flex-direction: column; justify-content: space-between; height: 180px; margin-bottom: 4px; }
.lls-glow-zone-label { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; line-height: 1; }
.lls-glow-thermo-tube { width: 16px; height: 180px; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; position: relative; }
.lls-glow-thermo-fill { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 8px; transition: height .8s cubic-bezier(.34,1.2,.64,1), background .5s ease; }
.lls-glow-thermo-bulb { width: 28px; height: 28px; border-radius: 50%; transition: background .5s ease; }

.lls-glow-right { flex: 1; min-width: 0; }
.lls-glow-conquest-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.lls-glow-conquest-bar-wrap { background: rgba(255,255,255,0.06); border-radius: 4px; height: 6px; margin-bottom: 8px; overflow: hidden; }
.lls-glow-conquest-bar { height: 100%; border-radius: 4px; transition: width .8s cubic-bezier(.34,1.2,.64,1), background .5s ease; }
.lls-glow-conquest-pct { font-size: 32px; font-weight: 600; line-height: 1; margin-bottom: 2px; transition: color .5s; }
.lls-glow-zone-status { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.lls-glow-streak { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.lls-glow-streak-dot { width: 8px; height: 8px; border-radius: 50%; background: #EF9F27; flex-shrink: 0; }

.lls-glow-checkin-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.lls-glow-statement { font-size: 15px; color: #fff; line-height: 1.6; margin-bottom: 14px; }
.lls-glow-slider-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.lls-glow-slider { flex: 1; accent-color: #9B7FEC; cursor: pointer; }
.lls-glow-slider-val { font-size: 16px; font-weight: 600; color: #9B7FEC; min-width: 32px; text-align: right; }
.lls-glow-slider-ends { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.2); margin-bottom: 14px; }
.lls-glow-submit-btn { width: 100%; padding: 11px; background: #6B4FBB; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
.lls-glow-submit-btn:hover { background: #5a3fa8; }
.lls-glow-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.lls-glow-checkin-done { padding: 12px 0; }
.lls-glow-done-score { font-size: 18px; color: #9B7FEC; font-weight: 600; margin-bottom: 6px; }
.lls-glow-done-msg { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
.lls-glow-action-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.lls-glow-action-card { background: rgba(155,127,236,0.1); border: 0.5px solid rgba(155,127,236,0.25); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

.lls-glow-result { padding-top: 12px; }
.lls-glow-result-score { font-size: 36px; font-weight: 600; color: #9B7FEC; margin-bottom: 6px; }
.lls-glow-result-insight { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 14px; }

.lls-glow-hot-banner { background: rgba(239,159,39,0.12); border: 0.5px solid rgba(239,159,39,0.4); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; }
.lls-hot-title { font-size: 15px; font-weight: 600; color: #EF9F27; margin-bottom: 4px; }
.lls-hot-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.5; }
.lls-hot-btn { padding: 8px 16px; background: #EF9F27; color: #0a0a12; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }

.lls-glow-teaser { text-align: center; padding: 20px 0; }
.lls-glow-teaser-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.lls-glow-teaser-sub { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.lls-journey-pm-badge { display: inline-block; background: rgba(107,79,187,0.2); color: #9B7FEC; font-size: 11px; padding: 2px 8px; border-radius: 10px; margin-left: 8px; font-weight: 500; vertical-align: middle; }

/* ── Onboarding modal ─────────────────────────────────────────── */
.lls-onboarding-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 99998; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lls-onboarding-modal { background: #0e0a1a; border: 0.5px solid rgba(107,79,187,0.4); border-radius: 16px; padding: 32px 28px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; }
.lls-ob-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 24px; }
.lls-ob-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all .3s; }
.lls-ob-dot.active { background: #9B7FEC; width: 18px; border-radius: 3px; }
.lls-ob-step { display: none; }
.lls-ob-step.active { display: block; }
.lls-ob-eyebrow { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #6B4FBB; font-weight: 600; margin-bottom: 8px; text-align: center; }
.lls-ob-title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 6px; text-align: center; }
.lls-ob-sub { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; text-align: center; }
.lls-ob-pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.lls-ob-pm-card { padding: 14px; border-radius: 10px; border: 0.5px solid rgba(255,255,255,0.1); cursor: pointer; transition: all .2s; }
.lls-ob-pm-card:hover { border-color: rgba(155,127,236,0.4); }
.lls-ob-pm-card.selected { border-color: #9B7FEC; background: rgba(155,127,236,0.1); }
.lls-ob-pm-wide { grid-column: span 2; }
.lls-ob-pm-emoji { font-size: 20px; margin-bottom: 6px; }
.lls-ob-pm-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.lls-ob-pm-def { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }
.lls-ob-field-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.lls-ob-textarea { width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(107,79,187,0.3); border-radius: 8px; color: #fff; font-size: 14px; line-height: 1.6; font-family: inherit; resize: none; margin-bottom: 12px; box-sizing: border-box; }
.lls-ob-textarea:focus { outline: none; border-color: #9B7FEC; }
.lls-ob-textarea::placeholder { color: rgba(255,255,255,0.2); }
.lls-ob-examples { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.lls-ob-example-pill { padding: 4px 10px; border-radius: 12px; border: 0.5px solid rgba(255,255,255,0.1); font-size: 11px; color: rgba(255,255,255,0.35); cursor: pointer; transition: all .15s; }
.lls-ob-example-pill:hover { border-color: rgba(155,127,236,0.4); color: rgba(255,255,255,0.65); }
.lls-ob-username-wrap { position: relative; margin-bottom: 6px; }
.lls-ob-at { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: rgba(155,127,236,0.6); font-size: 15px; pointer-events: none; }
.lls-ob-input { width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(107,79,187,0.3); border-radius: 8px; color: #fff; font-size: 15px; font-family: inherit; box-sizing: border-box; }
.lls-ob-input:focus { outline: none; border-color: #9B7FEC; }
.lls-ob-username-input { padding-left: 26px; }
.lls-ob-username-note { font-size: 11px; color: rgba(255,255,255,0.2); margin-bottom: 16px; }
.lls-ob-profile-preview { background: rgba(155,127,236,0.06); border: 0.5px solid rgba(155,127,236,0.15); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.lls-ob-preview-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #9B7FEC; margin-bottom: 6px; }
.lls-ob-preview-name { font-size: 15px; color: #fff; margin-bottom: 2px; }
.lls-ob-preview-level { font-size: 12px; color: rgba(255,255,255,0.35); }
.lls-ob-btn { width: 100%; padding: 13px; background: #6B4FBB; color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; margin-bottom: 8px; }
.lls-ob-btn:hover { background: #5a3fa8; }
.lls-ob-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.lls-ob-btn-back { width: 100%; padding: 10px; background: transparent; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 10px; color: rgba(255,255,255,0.35); font-size: 13px; cursor: pointer; }
.lls-ob-badge-circle { width: 96px; height: 96px; border-radius: 50%; background: rgba(155,127,236,0.12); border: 2px solid #9B7FEC; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.lls-ob-badge-name { font-size: 24px; font-weight: 600; color: #9B7FEC; text-align: center; margin-bottom: 4px; }
.lls-ob-badge-level { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 14px; }
.lls-ob-badge-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; text-align: center; margin-bottom: 20px; }

/* ── Onboarding v1.3.1 additions ─────────────────────────────── */
.lls-ob-magic-toggle { margin-top: 16px; text-align: center; }
.lls-ob-magic-toggle button { background: none; border: none; color: #9B7FEC; font-size: 13px; cursor: pointer; text-decoration: underline; font-family: inherit; padding: 0; }
.lls-ob-skip-wrap { display: flex; gap: 8px; margin-top: 8px; }
.lls-ob-skip-wrap .lls-ob-btn-back { flex: 1; }
.lls-ob-btn-skip { flex: 1; padding: 10px; background: transparent; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 10px; color: rgba(255,255,255,0.35); font-size: 13px; cursor: pointer; font-family: inherit; }
.lls-ob-btn-skip:hover { border-color: rgba(155,127,236,0.3); color: rgba(255,255,255,0.55); }

/* ── v1.3.3 UX fixes ────────────────────────────────────────── */
.lls-ob-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}
.lls-ob-close:hover { color: rgba(255,255,255,0.7); }
.lls-onboarding-modal { position: relative; }

.lls-ob-inline-error {
    font-size: 12px;
    color: #E24B4A;
    margin-top: -8px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.lls-glow-band-live {
    font-size: 13px;
    color: rgba(155,127,236,0.8);
    font-style: italic;
    margin-bottom: 14px;
    min-height: 20px;
    transition: color .2s;
}
