:root {
  --ls-blue: #1c4ed6;
  --ls-blue-2: #4485fc;
  --ls-blue-3: #0b54d4;
  --ls-cyan: #05bbdf;
  --ls-green: #00bc7d;
  --ls-purple: #7d3bed;
  --ls-pink: #cf48b6;
  --ls-ink: #070d24;
  --ls-muted: #687386;
  --ls-line: rgba(156, 192, 255, 0.28);
  --ls-card: rgba(255, 255, 255, 0.82);
  --ls-dark-card: rgba(255, 255, 255, 0.08);
  --ls-font: "Inter", "Host Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f7fbff;
}

body.ls-auth-body,
body.ls-portal-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ls-font);
  color: var(--ls-ink);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(68, 133, 252, 0.22), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(5, 187, 223, 0.16), transparent 26%),
    linear-gradient(180deg, #eff6ff 0%, #ffffff 38%, #f7fbff 100%);
}

body.ls-portal-body {
  color: #f8fbff;
  background:
    radial-gradient(circle at 12% 8%, rgba(68, 133, 252, 0.28), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(5, 187, 223, 0.2), transparent 24%),
    radial-gradient(circle at 50% 95%, rgba(125, 59, 237, 0.16), transparent 28%),
    linear-gradient(145deg, #061025 0%, #071635 42%, #0a1020 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.ls-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 78, 214, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 78, 214, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 78%);
}

.ls-bg-glow {
  position: fixed;
  inset: auto 6% 8% auto;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(28, 78, 214, 0.18), transparent 67%);
  filter: blur(12px);
  animation: ls-float 9s ease-in-out infinite;
}

@keyframes ls-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-24px, 18px, 0) scale(1.04); }
}

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

@keyframes ls-pulse {
  0% { transform: scale(0.64); opacity: 0.82; }
  70% { transform: scale(1.24); opacity: 0; }
  100% { transform: scale(1.24); opacity: 0; }
}

@keyframes ls-scan {
  0% { transform: translateY(-120%); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(120%); opacity: 0; }
}

.ls-auth-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 36px;
}

.ls-auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ls-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ls-logo img {
  width: 172px;
  height: auto;
  display: block;
}

.ls-back-link {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.ls-auth-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.ls-auth-card,
.ls-preview-card,
.ls-panel,
.ls-metric,
.ls-card,
.ls-report-section,
.ls-table-wrap {
  border: 1px solid rgba(156, 192, 255, 0.38);
  border-radius: 20px;
  background: var(--ls-card);
  box-shadow:
    rgba(87, 146, 255, 0.17) 0 12px 50px,
    rgba(255, 255, 255, 0.7) 0 1px 0 inset;
  backdrop-filter: blur(16px);
}

.ls-auth-card {
  padding: clamp(26px, 4vw, 44px);
  animation: ls-fade-up 0.55s ease both;
}

.ls-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--ls-blue);
  background: rgba(28, 78, 214, 0.08);
  border: 1px solid rgba(28, 78, 214, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.ls-auth-card h1,
.ls-portal-main h1 {
  margin: 18px 0 10px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ls-ink);
}

.ls-portal-main h1 {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
}

.ls-auth-card p,
.ls-page-subtitle {
  margin: 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.6;
}

.ls-auth-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.ls-field {
  display: grid;
  gap: 8px;
}

.ls-field span,
.ls-label {
  color: #263247;
  font-size: 13px;
  font-weight: 700;
}

.ls-field input,
.ls-field select,
.ls-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(156, 192, 255, 0.45);
  border-radius: 14px;
  color: #10172a;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  padding: 0 16px;
  box-shadow: rgba(87, 146, 255, 0.08) 0 4px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ls-field textarea {
  padding-top: 14px;
  min-height: 108px;
  resize: vertical;
}

.ls-field input:focus,
.ls-field select:focus,
.ls-field textarea:focus {
  border-color: rgba(28, 78, 214, 0.7);
  box-shadow: rgba(28, 78, 214, 0.2) 0 8px 24px;
}

.ls-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ls-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.ls-auth-actions {
  margin-top: 8px;
}

.ls-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--ls-blue-2) 0%, var(--ls-blue) 100%);
  box-shadow:
    rgba(87, 146, 255, 0.43) 0 0.3px 0.4px -1px,
    rgba(87, 146, 255, 0.34) 0 10px 22px -8px,
    rgba(255, 255, 255, 0.35) 0 2px 3.6px inset;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ls-button:hover {
  transform: translateY(-2px);
  box-shadow:
    rgba(87, 146, 255, 0.5) 0 16px 36px -10px,
    rgba(255, 255, 255, 0.35) 0 2px 3.6px inset;
}

.ls-button.secondary {
  color: var(--ls-blue);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(156, 192, 255, 0.7);
}

.ls-button.dark {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(156, 192, 255, 0.22);
  box-shadow: none;
}

.ls-small-links {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: #667085;
  font-size: 14px;
}

.ls-small-links a {
  color: var(--ls-blue);
  font-weight: 700;
}

body.ls-login-reference-body {
  min-height: 100vh;
  color: #07112e;
  background:
    radial-gradient(circle at 8% 96%, rgba(97, 181, 255, 0.32), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(36, 112, 255, 0.4), transparent 33%),
    radial-gradient(circle at 70% 7%, rgba(56, 124, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 47%, #edf6ff 100%);
}

.ls-login-reference-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.ls-login-reference-card {
  width: min(690px, 100%);
  min-height: 808px;
  padding: 34px 64px 30px;
  border: 1px solid rgba(173, 196, 235, 0.78);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    rgba(26, 92, 212, 0.17) 0 28px 80px,
    rgba(255, 255, 255, 0.96) 0 1px 0 inset;
  backdrop-filter: blur(22px);
  animation: ls-fade-up 0.5s ease both;
}

.ls-login-reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 24px;
  color: #07112e;
}

.ls-login-reference-logo strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.ls-login-reference-logo em {
  color: #0968ff;
  font-style: normal;
}

.ls-login-reference-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 76px;
  color: #ffffff;
}

.ls-login-reference-logo-mark:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  width: 48px;
  height: 58px;
  border-radius: 50% 50% 50% 12px;
  background: linear-gradient(180deg, #1382ff 0%, #0958db 100%);
  transform: rotate(42deg);
  box-shadow: rgba(25, 107, 255, 0.36) 0 18px 28px;
}

.ls-login-reference-logo-mark:after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 9px;
  width: 11px;
  height: 34px;
  border-radius: 999px;
  background: #1068e9;
  transform: rotate(-38deg);
  box-shadow: rgba(11, 84, 212, 0.16) 0 8px 14px;
}

.ls-login-reference-logo-mark span {
  position: relative;
  z-index: 1;
  margin: -11px 0 0 -8px;
  width: 31px;
  height: 31px;
  border: 5px solid #ffffff;
  border-radius: 999px;
}

.ls-login-reference-logo-mark span:before,
.ls-login-reference-logo-mark span:after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
}

.ls-login-reference-logo-mark span:before {
  width: 47px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ls-login-reference-logo-mark span:after {
  width: 5px;
  height: 47px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ls-login-reference-header {
  text-align: center;
}

.ls-login-reference-header h1 {
  margin: 0 0 10px;
  color: #07112e;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.ls-login-reference-header p {
  margin: 0;
  color: #607194;
  font-size: 18px;
  line-height: 1.45;
}

.ls-login-reference-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 20px;
  padding: 4px;
  min-height: 64px;
  border: 1px solid rgba(185, 199, 224, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    rgba(47, 75, 126, 0.08) 0 12px 22px,
    rgba(255, 255, 255, 0.8) 0 1px 0 inset;
}

.ls-login-reference-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  color: #16223b;
  font-size: 17px;
  font-weight: 800;
}

.ls-login-reference-tabs a.active {
  color: #075fff;
  border: 1.5px solid #1872ff;
  background: rgba(244, 249, 255, 0.94);
  box-shadow:
    rgba(28, 98, 255, 0.26) 0 10px 24px,
    rgba(255, 255, 255, 0.9) 0 2px 2px inset;
}

.ls-login-reference-tabs svg,
.ls-login-reference-secure svg,
.ls-login-reference-input-wrap svg,
.ls-login-reference-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: none;
}

.ls-login-reference-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #68789a;
  font-size: 16px;
  line-height: 1.3;
}

.ls-login-reference-secure svg {
  color: #0968ff;
}

.ls-login-reference-form {
  display: grid;
  gap: 17px;
}

.ls-login-reference-field {
  display: grid;
  gap: 8px;
}

.ls-login-reference-field > span:first-child {
  color: #0d1934;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.ls-login-reference-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(183, 198, 221, 0.9);
  border-radius: 13px;
  color: #7180a1;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    rgba(35, 72, 128, 0.07) 0 8px 18px,
    rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ls-login-reference-input-wrap:focus-within {
  border-color: rgba(20, 101, 255, 0.72);
  box-shadow:
    rgba(20, 101, 255, 0.18) 0 10px 24px,
    rgba(255, 255, 255, 0.92) 0 1px 0 inset;
}

.ls-login-reference-input-wrap input {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #0d1934;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.ls-login-reference-input-wrap input::placeholder {
  color: #7180a1;
  opacity: 1;
}

.ls-login-reference-input-wrap .eye {
  color: #7180a1;
}

.ls-login-reference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
  color: #667798;
  font-size: 15px;
}

.ls-login-reference-row a {
  color: #0064ff;
  font-weight: 700;
}

.ls-login-reference-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.ls-login-reference-remember input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0b72ff;
}

.ls-login-reference-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(180deg, #1380ff 0%, #075cff 100%);
  box-shadow:
    rgba(10, 93, 255, 0.36) 0 18px 30px -12px,
    rgba(255, 255, 255, 0.25) 0 2px 2px inset;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ls-login-reference-submit:hover {
  transform: translateY(-1px);
  box-shadow:
    rgba(10, 93, 255, 0.46) 0 22px 34px -12px,
    rgba(255, 255, 255, 0.25) 0 2px 2px inset;
}

.ls-login-reference-submit span:last-child {
  font-size: 27px;
  line-height: 1;
}

.ls-login-reference-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 25px 0 20px;
}

.ls-login-reference-divider span {
  height: 1px;
  background: rgba(185, 199, 224, 0.78);
}

.ls-login-reference-divider p {
  margin: 0;
  color: #68789a;
  font-size: 15px;
}

.ls-login-reference-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ls-login-reference-socials button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  border: 1px solid rgba(183, 198, 221, 0.9);
  border-radius: 11px;
  color: #0d1934;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: rgba(35, 72, 128, 0.08) 0 8px 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.ls-login-reference-socials .google {
  color: #4285f4;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.ls-login-reference-bottom {
  margin: 24px 0 0;
  text-align: center;
  color: #68789a;
  font-size: 16px;
}

.ls-login-reference-bottom a {
  color: #0064ff;
  font-weight: 800;
}

.ls-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 28px;
  animation: ls-fade-up 0.7s 0.08s ease both;
}

.ls-preview-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(28, 78, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 78, 214, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.8;
}

.ls-preview-content {
  position: relative;
  display: grid;
  gap: 18px;
}

.ls-mini-dashboard {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(156, 192, 255, 0.38);
  box-shadow: rgba(30, 64, 175, 0.12) 0 18px 60px;
}

.ls-mini-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.ls-mini-stat {
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(218, 226, 244, 0.9);
}

.ls-mini-stat strong {
  display: block;
  font-size: 26px;
  color: var(--ls-blue);
}

.ls-mini-stat span {
  color: #667085;
  font-size: 12px;
}

.ls-radar {
  position: relative;
  min-height: 290px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(68, 133, 252, 0.24), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(28, 78, 214, 0.08) 0 26%, transparent 27% 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(227, 240, 255, 0.84));
  border: 1px solid rgba(156, 192, 255, 0.42);
}

.ls-radar:before,
.ls-radar:after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 170px;
  height: 170px;
  margin: -85px;
  border-radius: 50%;
  border: 1px solid rgba(28, 78, 214, 0.38);
  animation: ls-pulse 2.5s ease-out infinite;
}

.ls-radar:after {
  width: 250px;
  height: 250px;
  margin: -125px;
  animation-delay: 0.55s;
}

.ls-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 4px;
  background: var(--ls-blue);
  transform: rotate(-45deg);
  box-shadow: rgba(28, 78, 214, 0.35) 0 8px 22px;
}

.ls-pin:after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.ls-pin.a { left: 25%; top: 34%; }
.ls-pin.b { left: 62%; top: 26%; background: var(--ls-green); }
.ls-pin.c { left: 70%; top: 66%; background: var(--ls-purple); }
.ls-pin.d { left: 35%; top: 72%; background: var(--ls-cyan); }

.ls-floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(156, 192, 255, 0.45);
}

.ls-floating-card strong {
  color: var(--ls-ink);
}

.ls-floating-card p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 13px;
}

.ls-portal-app {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
}

.ls-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  border-right: 1px solid rgba(156, 192, 255, 0.18);
  background: rgba(4, 12, 30, 0.58);
  backdrop-filter: blur(18px);
}

.ls-sidebar .ls-logo {
  min-height: 54px;
  padding: 0 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(156, 192, 255, 0.22);
  justify-content: center;
}

.ls-sidebar .ls-logo img {
  width: 178px;
  filter: drop-shadow(rgba(87, 146, 255, 0.24) 0 8px 18px);
}

.ls-side-nav {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.ls-side-link,
.ls-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ls-side-link:hover,
.ls-side-link.active,
.ls-logout:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(156, 192, 255, 0.18);
  transform: translateX(2px);
}

.ls-side-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--ls-blue-2), var(--ls-blue));
  font-size: 12px;
  font-weight: 900;
}

.ls-sidebar-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
}

.ls-plan-chip {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(156, 192, 255, 0.2);
}

.ls-plan-chip strong {
  display: block;
}

.ls-plan-chip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.ls-portal-main {
  min-width: 0;
  padding: 24px clamp(20px, 4vw, 44px) 44px;
}

.ls-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid rgba(156, 192, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.ls-topbar-title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.ls-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(156, 192, 255, 0.2);
}

.ls-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ls-blue-2), var(--ls-blue));
  font-size: 12px;
  font-weight: 900;
}

.ls-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.ls-page-subtitle {
  color: rgba(255, 255, 255, 0.66);
}

.ls-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.ls-metric {
  padding: 18px;
  color: #ffffff;
  background: var(--ls-dark-card);
  border-color: rgba(156, 192, 255, 0.18);
  animation: ls-fade-up 0.45s ease both;
}

.ls-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.ls-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
}

.ls-metric small {
  display: inline-flex;
  margin-top: 12px;
  color: #9cc0ff;
  font-weight: 700;
}

.ls-portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 18px;
}

.ls-panel,
.ls-card,
.ls-report-section,
.ls-table-wrap {
  color: #ffffff;
  background: var(--ls-dark-card);
  border-color: rgba(156, 192, 255, 0.18);
}

.ls-panel {
  padding: 20px;
}

.ls-panel h2,
.ls-card h3,
.ls-report-section h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 20px;
}

.ls-panel p,
.ls-card p,
.ls-report-section p,
.ls-muted {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.ls-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ls-card {
  padding: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ls-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
}

.ls-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}

.ls-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

.ls-table th,
.ls-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(156, 192, 255, 0.12);
}

.ls-table th {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
}

.ls-table td {
  color: rgba(255, 255, 255, 0.84);
}

.ls-status,
.ls-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(28, 78, 214, 0.34);
  border: 1px solid rgba(156, 192, 255, 0.26);
  font-size: 12px;
  font-weight: 800;
}

.ls-tag.green { background: rgba(0, 188, 125, 0.2); color: #9ff4d6; }
.ls-tag.purple { background: rgba(125, 59, 237, 0.22); color: #d5c5ff; }
.ls-tag.red { background: rgba(207, 72, 182, 0.22); color: #ffc4f0; }

.ls-chart-bars {
  display: grid;
  gap: 14px;
}

.ls-bar {
  display: grid;
  gap: 7px;
}

.ls-bar-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.ls-bar-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.ls-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ls-cyan), var(--ls-blue-2));
}

.ls-form-panel {
  max-width: 980px;
}

.ls-portal-form {
  display: grid;
  gap: 16px;
}

.ls-portal-form .ls-field span {
  color: rgba(255, 255, 255, 0.74);
}

.ls-portal-form .ls-field input,
.ls-portal-form .ls-field select,
.ls-portal-form .ls-field textarea {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(156, 192, 255, 0.2);
  box-shadow: none;
}

.ls-portal-form .ls-field input::placeholder,
.ls-portal-form .ls-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.ls-scan-loader {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(28, 78, 214, 0.18);
  border: 1px solid rgba(156, 192, 255, 0.24);
}

.ls-scan-loader.active {
  display: block;
}

.ls-progress {
  position: relative;
  height: 10px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.ls-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ls-cyan), var(--ls-blue-2));
  animation: ls-scan-progress 1.4s ease-in-out infinite;
}

@keyframes ls-scan-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(260%); }
}

.ls-map-large {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(156, 192, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 192, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(68, 133, 252, 0.22), transparent 23%),
    rgba(255, 255, 255, 0.06);
  background-size: 58px 58px, 58px 58px, auto, auto;
  border: 1px solid rgba(156, 192, 255, 0.2);
}

.ls-map-large:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(68, 133, 252, 0.85), transparent);
  animation: ls-scan 2.4s ease-in-out infinite;
}

.ls-density {
  position: absolute;
  border-radius: 999px;
  background: rgba(28, 78, 214, 0.18);
  border: 1px solid rgba(156, 192, 255, 0.24);
}

.ls-density.one { width: 220px; height: 120px; left: 15%; top: 22%; transform: rotate(-14deg); }
.ls-density.two { width: 260px; height: 140px; right: 10%; bottom: 20%; transform: rotate(12deg); }

.ls-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

.ls-report-section {
  padding: 22px;
}

.ls-report-stack {
  display: grid;
  gap: 18px;
}

.ls-score-list,
.ls-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ls-score-list li,
.ls-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(156, 192, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.ls-score {
  font-weight: 900;
  color: #9cc0ff;
}

.ls-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 18px;
}

.ls-usage-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.ls-usage-meter span {
  display: block;
  height: 100%;
  width: 48%;
  background: linear-gradient(90deg, var(--ls-cyan), var(--ls-blue-2));
}

.ls-public-auth-link {
  color: rgb(79, 75, 72);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

body.ls-portal-body[data-portal-page="overview"] {
  color: #08122f;
  background: #f7faff;
}

body.ls-portal-body[data-portal-page="overview"] .ls-portal-app {
  display: block;
  min-height: 100vh;
}

body.ls-portal-body[data-portal-page="overview"] .ls-sidebar,
body.ls-portal-body[data-portal-page="overview"] .ls-topbar {
  display: none;
}

body.ls-portal-body[data-portal-page="overview"] .ls-portal-main {
  padding: 0;
}

.ls-reference-dashboard {
  --dash-blue: #1454f5;
  --dash-ink: #08122f;
  --dash-line: #dfe7f3;
  --dash-bg: #f7faff;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: var(--dash-ink);
  background: radial-gradient(circle at 72% 0%, rgba(28, 78, 214, 0.09), transparent 28%), linear-gradient(180deg, #fbfdff 0%, var(--dash-bg) 100%);
  font-family: var(--ls-font);
}

.ls-reference-dashboard button {
  font: inherit;
}

.ls-ref-sidebar {
  position: relative;
  display: grid;
  grid-template-rows: 92px 1fr auto;
  gap: 14px;
  padding: 22px 14px;
  color: #ffffff;
  background: linear-gradient(180deg, #0d5dff 0%, #0649dc 100%);
  box-shadow: rgba(16, 85, 240, 0.35) 12px 0 40px;
}

.ls-ref-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  color: transparent;
  position: relative;
}

.ls-ref-mark:before,
.ls-ref-mark:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #ffffff;
}

.ls-ref-mark:before {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22);
}

.ls-ref-mark:after {
  width: 22px;
  height: 5px;
  right: -9px;
  bottom: 9px;
  transform: rotate(-38deg);
}

.ls-ref-sidebar nav {
  display: grid;
  align-content: start;
  gap: 16px;
}

.ls-ref-sidebar nav span,
.ls-ref-sidebar button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-size: 0;
  cursor: pointer;
  position: relative;
}

.ls-ref-sidebar nav span:before,
.ls-ref-sidebar button:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 3px solid currentColor;
}

.ls-ref-sidebar nav span.active {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: rgba(255, 255, 255, 0.08) 0 16px 34px inset;
}

.ls-ref-sidebar button {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.ls-ref-main {
  min-width: 0;
  padding: 24px 32px 28px 28px;
}

.ls-ref-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.ls-ref-title h1 {
  margin: 0 0 6px;
  color: var(--dash-ink);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.ls-ref-title p {
  margin: 0;
  color: #34425f;
  font-size: 16px;
}

.ls-ref-controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ls-ref-controls button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--dash-line);
  border-radius: 12px;
  color: #24324d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: rgba(40, 73, 128, 0.05) 0 8px 20px;
}

.ls-ref-bell {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: var(--dash-blue);
  box-shadow: rgba(20, 84, 245, 0.28) 0 8px 22px;
}

.ls-ref-avatar {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--dash-line);
  background: radial-gradient(circle at 50% 34%, #f1c39f 0 11px, transparent 12px), radial-gradient(circle at 50% 72%, #17213a 0 20px, transparent 21px), linear-gradient(135deg, #ffffff, #eff4fb);
}

.ls-ref-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.ls-ref-card {
  border: 1px solid var(--dash-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(31, 50, 92, 0.08) 0 14px 44px;
}

.ls-ref-metric {
  position: relative;
  min-height: 145px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  overflow: hidden;
}

.ls-ref-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #3677ff 0%, #074ce2 100%);
  font-size: 0;
  position: relative;
  box-shadow: rgba(20, 84, 245, 0.26) 0 10px 26px;
}

.ls-ref-icon:before {
  content: "";
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.ls-ref-icon:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  right: 12px;
  bottom: 15px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
}

.ls-ref-icon.purple {
  background: linear-gradient(180deg, #725cff 0%, #392ee7 100%);
}

.ls-ref-icon.green {
  background: linear-gradient(180deg, #44d69a 0%, #08ac73 100%);
}

.ls-ref-icon.orange {
  background: linear-gradient(180deg, #ffa64a 0%, #ff7a11 100%);
}

.ls-ref-sidebar nav span:before,
.ls-ref-sidebar button:before,
.ls-ref-icon:before,
.ls-ref-icon:after {
  display: none;
}

.ls-ref-sidebar nav span svg,
.ls-ref-sidebar button svg,
.ls-ref-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls-ref-controls .ls-ref-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: rgba(20, 84, 245, 0.2) 0 8px 18px;
}

.ls-ref-controls .ls-ref-icon svg {
  width: 20px;
  height: 20px;
}

.ls-ref-metric p {
  margin: 2px 0 8px;
  color: #354361;
  font-size: 15px;
}

.ls-ref-metric strong {
  display: block;
  color: var(--dash-ink);
  font-size: 25px;
  line-height: 1.05;
}

.ls-ref-metric strong span {
  color: #97a2b7;
  font-size: 14px;
}

.ls-ref-metric small {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 800;
}

.ls-ref-metric small:before,
.ls-ref-chart-stats small:before,
.trend small:before {
  content: "\2191 ";
}

.ls-ref-metric small.down:before {
  content: "\2193 ";
}

.up {
  color: #0caf70 !important;
}

.down {
  color: #ef4c45 !important;
}

.ls-ref-metric em {
  display: block;
  margin-top: 8px;
  color: #596982;
  font-size: 13px;
  font-style: normal;
}

.ls-ref-spark {
  position: absolute;
  right: 20px;
  bottom: 34px;
  width: 96px;
  height: 48px;
  overflow: visible;
}

.ls-ref-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.15fr) minmax(380px, 0.94fr) minmax(300px, 0.72fr);
  grid-template-areas:
    "map chart insights"
    "table table insights";
  gap: 16px;
}

.ls-ref-map-card {
  grid-area: map;
}

.ls-ref-chart-card {
  grid-area: chart;
}

.ls-ref-insights {
  grid-area: insights;
}

.ls-ref-table-card {
  grid-area: table;
}

.ls-ref-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--dash-line);
}

.ls-ref-card-head h2 {
  margin: 0;
  color: var(--dash-ink);
  font-size: 18px;
  letter-spacing: 0;
}

.ls-ref-card-head button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--dash-line);
  border-radius: 9px;
  color: #1b2843;
  background: #ffffff;
}

.ls-ref-map {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(circle at 52% 40%, rgba(24, 92, 255, 0.9), rgba(24, 92, 255, 0.28) 8%, transparent 14%),
    linear-gradient(29deg, transparent 45%, rgba(255, 255, 255, 0.95) 45% 46%, transparent 46%),
    linear-gradient(151deg, transparent 40%, rgba(255, 255, 255, 0.95) 40% 41%, transparent 41%),
    linear-gradient(75deg, transparent 36%, rgba(255, 255, 255, 0.88) 36% 37%, transparent 37%),
    radial-gradient(circle at 18% 44%, rgba(50, 205, 185, 0.25), transparent 26%),
    radial-gradient(circle at 84% 65%, rgba(50, 205, 185, 0.22), transparent 28%),
    #edf4f8;
}

.ls-ref-map:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(185, 200, 216, 0.34) 1px, transparent 1px), linear-gradient(rgba(185, 200, 216, 0.34) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
}

.ls-ref-map .label {
  position: absolute;
  z-index: 3;
  color: #536278;
  font-size: 13px;
  text-shadow: #ffffff 0 1px 0;
}

.ls-ref-map .label.a { left: 15%; top: 17%; }
.ls-ref-map .label.b { left: 20%; top: 29%; }
.ls-ref-map .label.c { left: 47%; top: 29%; color: #111a31; font-size: 24px; font-weight: 700; }
.ls-ref-map .label.d { left: 67%; top: 31%; }
.ls-ref-map .label.e { left: 19%; top: 76%; }
.ls-ref-map .label.f { right: 5%; bottom: 28%; }

.ls-ref-map .heat {
  position: absolute;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 92, 255, 0.72), rgba(24, 92, 255, 0.24) 42%, transparent 70%);
  filter: blur(1px);
}

.ls-ref-map .h1 { left: 37%; top: 28%; }
.ls-ref-map .h2 { left: 26%; top: 20%; opacity: 0.55; }
.ls-ref-map .h3 { left: 36%; top: 62%; opacity: 0.65; }
.ls-ref-map .h4 { left: 55%; top: 62%; opacity: 0.45; }
.ls-ref-map .h5 { left: 60%; top: 5%; opacity: 0.35; }

.ls-ref-zoom {
  position: absolute;
  left: 24px;
  top: 162px;
  z-index: 4;
  display: grid;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: rgba(35, 50, 80, 0.14) 0 8px 22px;
}

.ls-ref-zoom span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #23324d;
  border-bottom: 1px solid var(--dash-line);
  font-size: 22px;
}

.ls-ref-map-key {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  min-width: 378px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(35, 50, 80, 0.15) 0 12px 28px;
  color: #58677f;
  font-size: 13px;
}

.ls-ref-map-key b {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2ff, #175cff);
}

.ls-ref-chart {
  padding: 14px 22px 4px;
}

.ls-ref-chart svg {
  display: block;
  width: 100%;
  height: 226px;
}

.ls-ref-chart .grid path {
  stroke: #dce5f0;
  stroke-dasharray: 4 5;
}

.ls-ref-chart .area {
  fill: rgba(31, 92, 255, 0.12);
}

.ls-ref-chart .line {
  fill: none;
  stroke: #1454f5;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls-ref-chart .dots circle {
  r: 7;
  fill: #1454f5;
  stroke: #ffffff;
  stroke-width: 4;
}

.ls-ref-chart .months {
  display: flex;
  justify-content: space-between;
  color: #66748b;
  font-size: 13px;
  padding: 0 8px;
}

.ls-ref-chart-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 14px 16px 16px;
  padding: 12px 18px;
  border: 1px solid var(--dash-line);
  border-radius: 16px;
  background: #ffffff;
}

.ls-ref-chart-stats > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ls-ref-chart-stats > div + div {
  border-left: 1px solid var(--dash-line);
  padding-left: 22px;
}

.ls-ref-chart-stats span {
  display: grid;
  gap: 4px;
  color: #596982;
  font-size: 13px;
}

.ls-ref-chart-stats strong {
  color: var(--dash-ink);
  font-size: 19px;
}

.ls-ref-insights {
  padding-bottom: 20px;
}

.ls-ref-insights article {
  display: grid;
  grid-template-columns: 50px 1fr 16px;
  align-items: center;
  gap: 14px;
  margin: 16px 16px 0;
  min-height: 96px;
  padding: 14px 16px;
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: rgba(31, 50, 92, 0.05) 0 10px 24px;
}

.ls-ref-insights .bubble {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #1454f5;
  background: #edf3ff;
  font-size: 0;
}

.ls-ref-insights .bubble:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.ls-ref-insights .bubble.green { color: #0caf70; background: #eafaf3; }
.ls-ref-insights .bubble.purple { color: #7d3bed; background: #f2ecff; }
.ls-ref-insights .bubble.orange { color: #ff7a11; background: #fff2e7; }

.ls-ref-insights b,
.ls-ref-table-card .pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 7px;
  color: #1454f5;
  background: #edf3ff;
  font-size: 12px;
}

.ls-ref-insights b.green,
.ls-ref-table-card .pill.green {
  color: #0a9f64;
  background: #eafaf3;
}

.ls-ref-insights b.purple {
  color: #7130e8;
  background: #f2ecff;
}

.ls-ref-insights b.orange {
  color: #f27712;
  background: #fff2e7;
}

.ls-ref-insights p {
  margin: 0;
  color: #21304a;
  line-height: 1.42;
  font-size: 14px;
}

.ls-ref-insights i {
  color: #23324d;
  font-size: 28px;
  font-style: normal;
}

.ls-ref-table-card {
  overflow: hidden;
}

.ls-ref-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.ls-ref-table-card th,
.ls-ref-table-card td {
  padding: 12px 22px;
  text-align: left;
  border-top: 1px solid var(--dash-line);
}

.ls-ref-table-card th {
  color: #56657f;
  font-size: 12px;
  font-weight: 600;
  background: #fbfcff;
}

.ls-ref-table-card td {
  color: #13213b;
  font-size: 13px;
}

.ls-ref-table-card .biz {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
}

.ls-ref-table-card .biz span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--dash-blue);
  font-size: 0;
}

.ls-ref-table-card .biz span:before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.ls-ref-table-card .biz span.purple {
  background: #7d3bed;
}

.ls-ref-table-card .biz span.green {
  background: #13ba78;
}

.ls-ref-table-card .biz strong {
  font-size: 13px;
}

.ls-ref-table-card .biz small {
  color: #60708d;
}

.ls-ref-table-card .pill {
  margin: 0;
}

.ls-ref-table-card .score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ls-ref-table-card .score span {
  display: block;
  width: 104px;
  height: 5px;
  border-radius: 999px;
  background: #e6ecf7;
}

.ls-ref-table-card .score i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--dash-blue);
}

.ls-ref-table-card .trend {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-ref-table-card .trend .ls-ref-spark {
  position: static;
  width: 64px;
  height: 28px;
}

.ls-dashboard-render-body {
  margin: 0;
  width: 1600px;
  height: 1126px;
  overflow: hidden;
  background: #f7faff;
  font-family: var(--ls-font);
}

.ls-dashboard-render-body .ls-reference-dashboard {
  width: 1600px;
  height: 1126px;
  min-height: 1126px;
}

.ls-dashboard-render-body .ls-ref-main {
  padding: 24px 32px 22px 28px;
}

@media (max-width: 1020px) {
  .ls-auth-main,
  .ls-portal-app,
  .ls-portal-grid,
  .ls-report-layout,
  .ls-settings-grid {
    grid-template-columns: 1fr;
  }

  .ls-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(156, 192, 255, 0.18);
  }

  .ls-sidebar-bottom {
    position: static;
    margin-top: 18px;
  }

  .ls-side-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ls-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ls-preview-card {
    min-height: auto;
  }

  .ls-reference-dashboard {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ls-ref-sidebar {
    padding: 18px 8px;
  }

  .ls-ref-sidebar nav span,
  .ls-ref-sidebar button {
    width: 54px;
    height: 54px;
  }

  .ls-ref-header {
    flex-direction: column;
  }

  .ls-ref-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ls-ref-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ls-ref-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "chart"
      "insights"
      "table";
  }

  .ls-ref-table-card {
    overflow-x: auto;
  }

  .ls-ref-table-card table {
    min-width: 840px;
  }
}

@media (max-width: 720px) {
  .ls-auth-wrap {
    width: min(100% - 24px, 1180px);
    padding: 20px 0;
  }

  .ls-auth-top,
  .ls-page-header,
  .ls-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ls-form-row,
  .ls-card-grid,
  .ls-metrics,
  .ls-mini-row,
  .ls-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ls-side-link,
  .ls-logout {
    gap: 8px;
    padding: 0 8px;
    font-size: 14px;
  }

  .ls-auth-card h1,
  .ls-portal-main h1 {
    font-size: 34px;
  }

  .ls-portal-main {
    padding: 18px 12px 32px;
  }

  .ls-table-wrap {
    overflow-x: auto;
  }

  .ls-button {
    width: 100%;
  }

  .ls-reference-dashboard {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .ls-ref-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: auto;
  }

  .ls-ref-sidebar nav {
    grid-auto-flow: column;
    grid-auto-columns: 44px;
    overflow-x: auto;
    align-content: center;
  }

  .ls-ref-sidebar nav span,
  .ls-ref-sidebar button {
    width: 44px;
    height: 44px;
  }

  .ls-ref-main {
    padding: 18px 12px 28px;
  }

  .ls-ref-metrics {
    grid-template-columns: 1fr;
  }

  .ls-ref-map-key {
    min-width: calc(100% - 36px);
  }
}

@media (max-width: 720px) {
  .ls-login-reference-shell {
    padding: 20px 12px;
  }

  .ls-login-reference-card {
    min-height: auto;
    padding: 28px 18px 24px;
    border-radius: 28px;
  }

  .ls-login-reference-logo {
    gap: 12px;
    margin-bottom: 20px;
  }

  .ls-login-reference-logo strong {
    font-size: 31px;
  }

  .ls-login-reference-logo-mark {
    width: 56px;
    height: 64px;
  }

  .ls-login-reference-header h1 {
    font-size: 40px;
  }

  .ls-login-reference-header p,
  .ls-login-reference-secure {
    font-size: 14px;
  }

  .ls-login-reference-tabs {
    min-height: 56px;
    margin-top: 24px;
  }

  .ls-login-reference-tabs a {
    min-height: 48px;
    font-size: 14px;
  }

  .ls-login-reference-tabs svg,
  .ls-login-reference-secure svg,
  .ls-login-reference-input-wrap svg,
  .ls-login-reference-socials svg {
    width: 19px;
    height: 19px;
  }

  .ls-login-reference-socials {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ls-login-reference-row {
    align-items: flex-start;
    font-size: 14px;
  }
}

/* Horizon-inspired RadiusPilot client portal */
body.ls-portal-body {
  color: #0a1533;
  background:
    radial-gradient(circle at 14% 0%, rgba(28, 78, 214, 0.17), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(68, 133, 252, 0.18), transparent 30%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 44%, #f7faff 100%);
}

body.ls-portal-body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 78, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 78, 214, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

body.ls-portal-body[data-portal-page="overview"] {
  background:
    radial-gradient(circle at 14% 0%, rgba(28, 78, 214, 0.17), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(68, 133, 252, 0.18), transparent 30%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 44%, #f7faff 100%);
}

body.ls-portal-body[data-portal-page="overview"] .ls-portal-app {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
}

body.ls-portal-body[data-portal-page="overview"] .ls-sidebar,
body.ls-portal-body[data-portal-page="overview"] .ls-topbar {
  display: flex;
}

body.ls-portal-body[data-portal-page="overview"] .ls-sidebar {
  flex-direction: column;
}

body.ls-portal-body[data-portal-page="overview"] .ls-portal-main {
  padding: 24px 28px 36px 16px;
}

.ls-portal-app {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
  gap: 0;
}

.ls-sidebar {
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 24px 0 24px 24px;
  padding: 20px 16px;
  border: 1px solid rgba(188, 204, 235, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(45, 73, 131, 0.13);
  backdrop-filter: blur(18px) saturate(1.2);
}

.ls-sidebar .ls-logo {
  width: 176px;
  height: 42px;
  margin: 0 auto 22px;
}

.ls-side-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.ls-side-link,
.ls-logout {
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  color: #71809d;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ls-side-link:hover,
.ls-logout:hover,
.ls-side-link.active {
  color: #0a1533;
  background: linear-gradient(135deg, rgba(28, 78, 214, 0.12), rgba(68, 133, 252, 0.08));
  transform: translateX(2px);
}

.ls-side-link.active {
  box-shadow: inset 4px 0 0 #1c4ed6;
}

.ls-side-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #1c4ed6;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(28, 78, 214, 0.08);
}

.ls-side-link.active .ls-side-icon {
  color: #fff;
  background: linear-gradient(135deg, #1c4ed6, #4485fc);
  box-shadow: 0 12px 26px rgba(28, 78, 214, 0.24);
}

.ls-side-icon svg,
.ls-h-icon svg,
.ls-top-search svg,
.ls-h-insights svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls-sidebar-bottom {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.ls-plan-chip {
  border: 1px solid rgba(28, 78, 214, 0.14);
  border-radius: 18px;
  color: #0a1533;
  background: linear-gradient(135deg, rgba(238, 245, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.ls-plan-chip span {
  color: #72809a;
}

.ls-logout {
  border: 0;
  color: #8b5b68;
  background: #fff5f7;
}

.ls-portal-main {
  min-width: 0;
  padding: 24px 28px 36px 16px;
}

.ls-topbar {
  position: sticky;
  top: 20px;
  z-index: 20;
  min-height: 72px;
  margin-bottom: 20px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(188, 204, 235, 0.72);
  border-radius: 28px;
  color: #0a1533;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(45, 73, 131, 0.11);
  backdrop-filter: blur(18px) saturate(1.2);
}

.ls-topbar-copy {
  display: grid;
  gap: 4px;
  min-width: 168px;
}

.ls-topbar-copy span {
  color: #7a88a2;
  font-size: 12px;
  font-weight: 700;
}

.ls-topbar-copy strong {
  color: #07122f;
  font-size: 20px;
  line-height: 1;
}

.ls-top-search {
  flex: 1;
  max-width: 420px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(188, 204, 235, 0.72);
  border-radius: 18px;
  color: #64748f;
  background: #f7faff;
}

.ls-top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #0a1533;
  background: transparent;
}

.ls-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-top-actions button,
.ls-h-card-head button,
.ls-h-card-head a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(188, 204, 235, 0.82);
  border-radius: 14px;
  color: #0a1533;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.ls-top-actions .ls-h-icon,
.ls-h-card-head .ls-h-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.ls-user-pill {
  min-height: 46px;
  color: #0a1533;
  background: #fff;
  border: 1px solid rgba(188, 204, 235, 0.82);
  box-shadow: none;
}

.ls-avatar {
  background: linear-gradient(135deg, #1c4ed6, #05bbdf);
}

.ls-h-dashboard {
  display: grid;
  gap: 18px;
}

.ls-h-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(188, 204, 235, 0.72);
  border-radius: 30px;
  color: #0a1533;
  background:
    radial-gradient(circle at 78% 10%, rgba(28, 78, 214, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  box-shadow: 0 22px 70px rgba(45, 73, 131, 0.12);
}

.ls-h-page-head span {
  color: #1c4ed6;
  font-size: 13px;
  font-weight: 800;
}

.ls-h-page-head h1 {
  margin: 7px 0 8px;
  max-width: 760px;
  color: #07122f;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.ls-h-page-head p {
  max-width: 720px;
  margin: 0;
  color: #66748d;
  font-size: 16px;
  line-height: 1.6;
}

.ls-h-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ls-button {
  min-height: 46px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(28, 78, 214, 0.23);
}

.ls-button.secondary {
  color: #1c4ed6;
  background: #fff;
  border-color: rgba(28, 78, 214, 0.24);
  box-shadow: 0 12px 28px rgba(45, 73, 131, 0.08);
}

.ls-h-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ls-h-stat,
.ls-h-card,
.ls-h-feature,
.ls-h-report-card,
.ls-h-tool-card {
  border: 1px solid rgba(188, 204, 235, 0.7);
  color: #0a1533;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(45, 73, 131, 0.1);
  backdrop-filter: blur(18px) saturate(1.14);
}

.ls-h-stat {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  animation: ls-card-rise 0.55s ease both;
}

.ls-h-stat p,
.ls-h-stat em,
.ls-h-card p,
.ls-h-feature p,
.ls-h-report-card p,
.ls-h-tool-card p,
.ls-h-copy {
  color: #66748d;
}

.ls-h-stat p {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 700;
}

.ls-h-stat strong {
  display: block;
  color: #07122f;
  font-size: 31px;
  line-height: 1;
}

.ls-h-stat small,
.ls-h-split-stats small {
  display: inline-flex;
  margin-top: 13px;
  color: #0caf70;
  font-size: 13px;
  font-weight: 800;
}

.ls-h-stat small.down {
  color: #f04438;
}

.ls-h-stat em {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-style: normal;
}

.ls-h-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #1c4ed6, #4485fc);
  box-shadow: 0 18px 34px rgba(28, 78, 214, 0.22);
}

.ls-h-icon.cyan { background: linear-gradient(135deg, #05bbdf, #4485fc); }
.ls-h-icon.green { background: linear-gradient(135deg, #00bc7d, #23d695); }
.ls-h-icon.purple { background: linear-gradient(135deg, #7d3bed, #4485fc); }
.ls-h-icon.orange { background: linear-gradient(135deg, #ff8a1f, #ffb15c); }
.ls-h-icon.pink { background: linear-gradient(135deg, #cf48b6, #7d3bed); }

.ls-h-spark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 44px;
  opacity: 0.9;
}

.ls-h-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.9fr) minmax(310px, 0.72fr);
  grid-template-areas:
    "map chart insights"
    "features features insights"
    "table table insights";
  gap: 16px;
}

.ls-h-card {
  min-width: 0;
  padding: 22px;
  border-radius: 28px;
}

.ls-h-card:nth-child(1) { grid-area: map; }
.ls-h-card:nth-child(2) { grid-area: chart; }
.ls-h-card:nth-child(3) { grid-area: insights; }
.ls-h-card:nth-child(4) { grid-area: features; }
.ls-h-card:nth-child(5) { grid-area: table; }

.ls-h-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ls-h-card-head h2,
.ls-h-report-section h2,
.ls-h-report-aside h2 {
  margin: 0;
  color: #07122f;
  font-size: 19px;
  letter-spacing: 0;
}

.ls-h-card-head p {
  margin: 5px 0 0;
  font-size: 13px;
}

.ls-h-map {
  position: relative;
  min-height: 376px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(30deg, rgba(28, 78, 214, 0.06) 1px, transparent 1px),
    linear-gradient(120deg, rgba(28, 78, 214, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 22%, rgba(0, 188, 125, 0.14), transparent 18%),
    radial-gradient(circle at 74% 16%, rgba(5, 187, 223, 0.14), transparent 18%),
    #eef4fb;
  background-size: 54px 54px, 72px 72px, auto, auto, auto;
}

.ls-h-map .river {
  position: absolute;
  inset: -20% 12% auto auto;
  width: 120px;
  height: 150%;
  transform: rotate(18deg);
  border-radius: 999px;
  background: rgba(87, 212, 221, 0.22);
  filter: blur(1px);
}

.ls-h-map .road {
  position: absolute;
  height: 2px;
  width: 150%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(203, 214, 232, 0.5);
}

.ls-h-map .r1 { left: -20%; top: 33%; transform: rotate(-14deg); }
.ls-h-map .r2 { left: -24%; top: 64%; transform: rotate(12deg); }
.ls-h-map .r3 { left: -20%; top: 50%; transform: rotate(-42deg); }

.ls-h-map .map-label {
  position: absolute;
  z-index: 2;
  color: #66748d;
  font-size: 13px;
  font-weight: 700;
}

.ls-h-map .map-label.a { left: 18%; top: 18%; }
.ls-h-map .map-label.b { left: 30%; top: 42%; }
.ls-h-map .map-label.c { left: 49%; top: 35%; color: #07122f; font-size: 26px; }
.ls-h-map .map-label.d { left: 60%; top: 68%; }

.ls-h-map .heat {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 78, 214, 0.82), rgba(68, 133, 252, 0.36) 42%, transparent 70%);
  filter: blur(9px);
  animation: ls-scan-pulse 3.4s ease-in-out infinite;
}

.ls-h-map .h1 { left: 42%; top: 32%; }
.ls-h-map .h2 { left: 24%; top: 25%; opacity: 0.65; }
.ls-h-map .h3 { left: 30%; top: 62%; opacity: 0.62; }
.ls-h-map .h4 { left: 62%; top: 10%; opacity: 0.42; }

.ls-h-map .pin {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1c4ed6;
  box-shadow: 0 8px 18px rgba(28, 78, 214, 0.3);
}

.ls-h-map .pin.a { left: 51%; top: 43%; }
.ls-h-map .pin.b { left: 34%; top: 33%; }
.ls-h-map .pin.c { left: 59%; top: 61%; }

.ls-h-map-tools {
  position: absolute;
  left: 22px;
  top: 52%;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(45, 73, 131, 0.16);
}

.ls-h-map-tools button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  color: #0a1533;
  font-size: 20px;
}

.ls-h-map-key {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(420px, calc(100% - 44px));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  padding: 0 18px;
  border-radius: 18px;
  color: #66748d;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(45, 73, 131, 0.16);
}

.ls-h-map-key b {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(28, 78, 214, 0.08), #1c4ed6);
}

.ls-h-chart {
  min-height: 268px;
}

.ls-h-chart svg {
  width: 100%;
  height: 230px;
  overflow: visible;
}

.ls-h-chart .grid path {
  stroke: rgba(126, 143, 174, 0.22);
  stroke-dasharray: 4 6;
}

.ls-h-chart .area {
  fill: rgba(28, 78, 214, 0.12);
}

.ls-h-chart .line {
  fill: none;
  stroke: #1c4ed6;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls-h-chart .dots circle {
  r: 7;
  fill: #1c4ed6;
  stroke: #fff;
  stroke-width: 4;
}

.ls-h-chart .months {
  display: flex;
  justify-content: space-around;
  color: #66748d;
  font-size: 12px;
  font-weight: 700;
}

.ls-h-split-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(188, 204, 235, 0.72);
  border-radius: 20px;
  overflow: hidden;
}

.ls-h-split-stats > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.ls-h-split-stats > div + div {
  border-left: 1px solid rgba(188, 204, 235, 0.72);
}

.ls-h-split-stats .ls-h-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
}

.ls-h-split-stats span {
  display: grid;
  gap: 3px;
  color: #66748d;
  font-size: 13px;
}

.ls-h-split-stats strong {
  color: #07122f;
  font-size: 22px;
}

.ls-h-insights {
  display: grid;
  gap: 14px;
}

.ls-h-insights article {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(188, 204, 235, 0.62);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(45, 73, 131, 0.07);
}

.ls-h-insights article > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #1c4ed6;
  background: #edf4ff;
}

.ls-h-insights article > span.green { color: #0caf70; background: #eafaf3; }
.ls-h-insights article > span.purple { color: #7d3bed; background: #f2ecff; }
.ls-h-insights article > span.orange { color: #ff7a1a; background: #fff2e7; }

.ls-h-insights b {
  display: block;
  color: #07122f;
  font-size: 14px;
  margin-bottom: 5px;
}

.ls-h-insights p {
  margin: 0;
  color: #66748d;
  font-size: 13px;
  line-height: 1.5;
}

.ls-h-insights i {
  color: #6d7b95;
  font-style: normal;
  font-size: 26px;
}

.ls-h-feature-grid,
.ls-h-tool-grid,
.ls-h-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ls-h-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
}

.ls-h-feature .ls-h-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  flex: 0 0 auto;
}

.ls-h-feature h3 {
  margin: 0 0 6px;
  color: #07122f;
  font-size: 16px;
}

.ls-h-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.ls-h-table-wrap {
  overflow-x: auto;
}

.ls-h-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.ls-h-table th,
.ls-h-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(188, 204, 235, 0.55);
  text-align: left;
  font-size: 13px;
}

.ls-h-table th {
  color: #7a88a2;
  font-weight: 800;
}

.ls-h-table td {
  color: #162340;
  font-weight: 650;
}

.ls-h-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #1c4ed6;
  background: #edf4ff;
  font-size: 12px;
  font-weight: 800;
}

.ls-h-pill.draft {
  color: #9c5b00;
  background: #fff5df;
}

.ls-h-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ls-h-score strong {
  color: #07122f;
}

.ls-h-score span {
  width: 86px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef8;
}

.ls-h-score i,
.ls-h-bar i,
.ls-h-usage i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1c4ed6, #4485fc);
}

.ls-h-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 16px;
}

.ls-h-results-grid .ls-h-card:last-child {
  grid-column: 1 / -1;
}

.ls-h-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
}

.ls-h-form {
  display: grid;
  gap: 18px;
}

.ls-h-form label {
  display: grid;
  gap: 8px;
  color: #07122f;
  font-size: 13px;
  font-weight: 800;
}

.ls-h-form input,
.ls-h-form select,
.ls-h-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(188, 204, 235, 0.82);
  border-radius: 18px;
  padding: 0 16px;
  color: #0a1533;
  outline: none;
  background: #f8fbff;
}

.ls-h-form textarea {
  min-height: 122px;
  padding-top: 14px;
  resize: vertical;
}

.ls-h-scan-preview .ls-h-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.ls-scan-loader {
  color: #66748d;
}

.ls-scan-loader.active {
  display: block;
}

.ls-progress {
  background: #e9eef8;
}

.ls-progress span {
  background: linear-gradient(90deg, #1c4ed6, #05bbdf);
}

.ls-h-report-card,
.ls-h-tool-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
}

.ls-h-report-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.ls-h-report-card h2,
.ls-h-tool-card h2 {
  margin: 0;
  color: #07122f;
  font-size: 20px;
  line-height: 1.2;
}

.ls-h-report-card p,
.ls-h-tool-card p {
  margin: 0;
  line-height: 1.6;
}

.ls-h-score.large {
  justify-content: space-between;
}

.ls-h-score.large strong {
  font-size: 34px;
}

.ls-h-score.large span {
  flex: 1;
}

.ls-h-report-layout,
.ls-h-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
}

.ls-h-report-paper {
  display: grid;
  gap: 14px;
}

.ls-h-report-section {
  padding: 24px;
  border: 1px solid rgba(188, 204, 235, 0.7);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(45, 73, 131, 0.08);
}

.ls-h-report-section p,
.ls-h-list {
  color: #66748d;
  line-height: 1.7;
}

.ls-h-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.ls-h-bars {
  display: grid;
  gap: 14px;
}

.ls-h-bar {
  display: grid;
  gap: 8px;
}

.ls-h-bar div {
  display: flex;
  justify-content: space-between;
  color: #66748d;
  font-size: 13px;
  font-weight: 800;
}

.ls-h-bar strong {
  color: #07122f;
}

.ls-h-bar b,
.ls-h-usage span {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef8;
}

.ls-h-tool-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ls-h-tool-card {
  min-height: 246px;
  align-content: start;
}

.ls-h-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ls-h-profile strong {
  color: #07122f;
  font-size: 20px;
}

.ls-h-profile p,
.ls-h-usage p {
  margin: 4px 0 0;
  color: #66748d;
}

.ls-h-usage {
  display: grid;
  gap: 14px;
}

.ls-h-usage strong {
  color: #07122f;
  font-size: 24px;
}

@keyframes ls-card-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ls-scan-pulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.13);
    opacity: 0.88;
  }
}

@media (max-width: 1280px) {
  .ls-h-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ls-h-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    grid-template-areas:
      "map chart"
      "insights insights"
      "features features"
      "table table";
  }

  .ls-h-tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  body.ls-portal-body[data-portal-page="overview"] .ls-portal-app,
  .ls-portal-app,
  .ls-h-form-grid,
  .ls-h-results-grid,
  .ls-h-report-layout,
  .ls-h-settings-grid {
    grid-template-columns: 1fr;
  }

  .ls-sidebar {
    position: relative;
    top: auto;
    height: auto;
    margin: 14px;
  }

  .ls-sidebar-bottom {
    position: static;
    margin-top: 16px;
  }

  .ls-side-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ls-portal-body[data-portal-page="overview"] .ls-portal-main,
  .ls-portal-main {
    padding: 0 14px 28px;
  }

  .ls-topbar {
    position: relative;
    top: auto;
    flex-wrap: wrap;
  }

  .ls-top-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }
}

@media (max-width: 720px) {
  .ls-h-page-head,
  .ls-h-card-head,
  .ls-top-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ls-h-stat-grid,
  .ls-h-feature-grid,
  .ls-h-report-grid,
  .ls-h-tool-grid,
  .ls-h-scan-preview .ls-h-feature-grid,
  .ls-side-nav {
    grid-template-columns: 1fr;
  }

  .ls-h-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "chart"
      "insights"
      "features"
      "table";
  }

  .ls-h-page-head,
  .ls-h-card,
  .ls-h-stat,
  .ls-h-report-card,
  .ls-h-tool-card {
    border-radius: 22px;
    padding: 18px;
  }

  .ls-h-map {
    min-height: 300px;
  }
}

/* Landing-page CTA and animated border system */
.ls-button,
.ls-login-reference-submit {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 12px 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(180deg, #1f63f4 0%, #0f4bd8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 30px rgba(28, 78, 214, 0.28);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.ls-button:before,
.ls-login-reference-submit:before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)) -130% 0 / 70% 100% no-repeat,
    linear-gradient(180deg, #1f63f4, #0f4bd8);
  animation: ls-cta-shine 3.2s ease-in-out infinite;
}

.ls-button:not(.secondary):after,
.ls-login-reference-submit span:last-child {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #0f4bd8;
  background: #fff;
  box-shadow: 0 6px 15px rgba(7, 18, 47, 0.16);
  transition: transform 0.22s ease;
}

.ls-button:not(.secondary):after {
  content: "\2197";
  font-size: 17px;
  line-height: 1;
}

.ls-button:hover,
.ls-login-reference-submit:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 20px 42px rgba(28, 78, 214, 0.34);
}

.ls-button:hover:after,
.ls-login-reference-submit:hover span:last-child {
  transform: translate(2px, -2px);
}

.ls-button.secondary {
  padding: 0 24px;
  color: #0f4bd8;
  border: 1px solid rgba(28, 78, 214, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 26px rgba(45, 73, 131, 0.1);
}

.ls-button.secondary:before {
  background:
    linear-gradient(100deg, rgba(28, 78, 214, 0), rgba(28, 78, 214, 0.1), rgba(28, 78, 214, 0)) -130% 0 / 70% 100% no-repeat,
    rgba(255, 255, 255, 0.92);
}

.ls-button > *,
.ls-login-reference-submit > * {
  position: relative;
  z-index: 1;
}

.ls-button span {
  color: inherit !important;
}

.ls-login-reference-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  padding-left: 28px;
  padding-right: 18px;
}

.ls-login-reference-submit span:first-child {
  flex: 1;
  text-align: center;
}

.ls-h-stat,
.ls-h-card,
.ls-h-feature,
.ls-h-report-card,
.ls-h-tool-card,
.ls-h-report-section,
.ls-login-reference-card,
.ls-auth-card,
.ls-preview-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ls-h-stat:before,
.ls-h-card:before,
.ls-h-feature:before,
.ls-h-report-card:before,
.ls-h-tool-card:before,
.ls-h-report-section:before,
.ls-login-reference-card:before,
.ls-auth-card:before,
.ls-preview-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  opacity: 0.72;
  pointer-events: none;
  background: conic-gradient(from var(--ls-border-angle), rgba(28, 78, 214, 0.12), rgba(68, 133, 252, 0.85), rgba(5, 187, 223, 0.45), rgba(255, 255, 255, 0.2), rgba(28, 78, 214, 0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ls-border-spin 7s linear infinite;
}

.ls-h-stat:after,
.ls-h-card:after,
.ls-h-report-card:after,
.ls-h-tool-card:after,
.ls-login-reference-card:after,
.ls-auth-card:after,
.ls-preview-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.58;
  background-image: radial-gradient(rgba(28, 78, 214, 0.13) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.15));
}

.ls-h-card:hover:before,
.ls-h-stat:hover:before,
.ls-h-feature:hover:before,
.ls-h-report-card:hover:before,
.ls-h-tool-card:hover:before,
.ls-login-reference-card:hover:before,
.ls-auth-card:hover:before,
.ls-preview-card:hover:before {
  opacity: 1;
  animation-duration: 4s;
}

.ls-h-stat > *,
.ls-h-card > *,
.ls-h-feature > *,
.ls-h-report-card > *,
.ls-h-tool-card > *,
.ls-h-report-section > *,
.ls-login-reference-card > *,
.ls-auth-card > *,
.ls-preview-card > * {
  position: relative;
  z-index: 1;
}

.ls-login-reference-card {
  box-shadow:
    0 30px 80px rgba(32, 73, 143, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.ls-login-reference-tabs a.active {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(28, 78, 214, 0.18);
}

@property --ls-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes ls-border-spin {
  to {
    --ls-border-angle: 360deg;
  }
}

@keyframes ls-cta-shine {
  0%, 45% {
    background-position: -130% 0, 0 0;
  }
  70%, 100% {
    background-position: 230% 0, 0 0;
  }
}

@media (max-width: 720px) {
  .ls-button,
  .ls-login-reference-submit {
    min-height: 50px;
    font-size: 15px;
  }
}

/* RadiusPilot auth motion polish */
body.ls-login-reference-body,
body.ls-auth-body {
  background-size: 120% 120%;
  animation: ls-auth-bg-drift 18s ease-in-out infinite;
}

.ls-login-reference-card,
.ls-auth-card,
.ls-preview-card {
  animation: ls-auth-card-enter .78s cubic-bezier(.2, .8, .2, 1) both, ls-auth-card-breathe 6s ease-in-out .9s infinite;
}

.ls-login-reference-card:before,
.ls-auth-card:before,
.ls-preview-card:before {
  animation: ls-border-spin 6s linear infinite, ls-auth-border-glow 5s linear infinite;
}

.ls-login-reference-card:after,
.ls-auth-card:after,
.ls-preview-card:after {
  animation: ls-auth-sheen 4.2s ease-in-out infinite;
}

.ls-login-reference-logo,
.ls-login-reference-header,
.ls-login-reference-tabs,
.ls-login-reference-secure,
.ls-login-reference-form,
.ls-login-reference-divider,
.ls-login-reference-socials,
.ls-login-reference-bottom,
.ls-auth-card > *,
.ls-preview-card > * {
  animation: ls-auth-item-rise .56s cubic-bezier(.2, .8, .2, 1) both;
}

.ls-login-reference-logo,
.ls-auth-card > :nth-child(1) { animation-delay: .06s; }
.ls-login-reference-header,
.ls-auth-card > :nth-child(2) { animation-delay: .12s; }
.ls-login-reference-tabs,
.ls-auth-card > :nth-child(3) { animation-delay: .18s; }
.ls-login-reference-secure,
.ls-auth-card > :nth-child(4) { animation-delay: .24s; }
.ls-login-reference-form,
.ls-auth-card > :nth-child(5) { animation-delay: .3s; }
.ls-login-reference-divider { animation-delay: .36s; }
.ls-login-reference-socials { animation-delay: .42s; }
.ls-login-reference-bottom { animation-delay: .48s; }

.ls-login-reference-logo-mark,
.ls-logo img,
.ls-preview-card .ls-eyebrow {
  animation: ls-auth-logo-pulse 3.2s ease-in-out infinite;
}

.ls-login-reference-logo-mark span {
  animation: ls-auth-logo-spin 7s linear infinite;
}

.ls-login-reference-tabs a.active,
.ls-eyebrow {
  position: relative;
  overflow: hidden;
}

.ls-login-reference-tabs a.active:after,
.ls-eyebrow:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation: ls-auth-sheen 3.4s ease-in-out infinite;
}

.ls-login-reference-input-wrap,
.ls-field input,
.ls-field select {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ls-login-reference-input-wrap:focus-within,
.ls-field:focus-within input,
.ls-field:focus-within select {
  transform: translateY(-2px);
}

.ls-login-reference-field:focus-within .ls-login-reference-input-wrap svg:first-child {
  transform: scale(1.1) rotate(-6deg);
}

.ls-login-reference-submit,
.ls-button {
  position: relative;
  overflow: hidden;
  animation: ls-auth-button-breathe 2.8s ease-in-out infinite;
}

.ls-login-reference-submit:after,
.ls-button:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  animation: ls-auth-sheen 2.8s ease-in-out infinite;
}

.ls-login-reference-submit:hover span:last-child,
.ls-button:hover span:last-child {
  animation: ls-auth-arrow .62s ease-in-out infinite;
}

.ls-login-reference-socials button,
.ls-mini-stat,
.ls-preview-card article,
.ls-auth-actions .ls-button {
  animation: ls-auth-item-rise .5s cubic-bezier(.2, .8, .2, 1) both;
}

.ls-login-reference-socials button:nth-child(1),
.ls-auth-actions .ls-button:nth-child(1) { animation-delay: .5s; }
.ls-login-reference-socials button:nth-child(2),
.ls-auth-actions .ls-button:nth-child(2) { animation-delay: .57s; }

.ls-login-reference-socials button:hover,
.ls-mini-stat:hover,
.ls-preview-card article:hover {
  transform: translateY(-3px);
}

.ls-mini-dashboard,
.ls-preview-content {
  animation: ls-auth-float-panel 5s ease-in-out infinite;
}

.ls-bg-glow {
  animation: ls-auth-glow-orbit 12s ease-in-out infinite;
}

@keyframes ls-auth-bg-drift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 50%; }
}

@keyframes ls-auth-card-enter {
  from { opacity: 0; transform: translateY(28px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ls-auth-card-breathe {
  0%, 100% { box-shadow: 0 30px 80px rgba(32, 73, 143, .16), 0 0 0 1px rgba(255, 255, 255, .7) inset; }
  50% { box-shadow: 0 38px 104px rgba(32, 73, 143, .22), 0 0 0 1px rgba(255, 255, 255, .82) inset; }
}

@keyframes ls-auth-item-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ls-auth-border-glow {
  0%, 100% { opacity: .62; filter: hue-rotate(0deg); }
  50% { opacity: 1; filter: hue-rotate(12deg); }
}

@keyframes ls-auth-sheen {
  0%, 45% { transform: translateX(-130%) skewX(-18deg); }
  78%, 100% { transform: translateX(130%) skewX(-18deg); }
}

@keyframes ls-auth-logo-pulse {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 12px 18px rgba(15,91,236,.18)); }
  50% { transform: translateY(-3px) scale(1.03); filter: drop-shadow(0 16px 24px rgba(15,91,236,.28)); }
}

@keyframes ls-auth-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ls-auth-button-breathe {
  0%, 100% { box-shadow: 0 18px 34px rgba(15, 91, 236, .28); }
  50% { box-shadow: 0 24px 48px rgba(15, 91, 236, .38); }
}

@keyframes ls-auth-arrow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px); }
}

@keyframes ls-auth-float-panel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes ls-auth-glow-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(28px, -18px, 0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  body.ls-login-reference-body,
  body.ls-auth-body,
  .ls-login-reference-card,
  .ls-auth-card,
  .ls-preview-card,
  .ls-login-reference-card:before,
  .ls-auth-card:before,
  .ls-preview-card:before,
  .ls-login-reference-card:after,
  .ls-auth-card:after,
  .ls-preview-card:after,
  .ls-login-reference-logo,
  .ls-login-reference-header,
  .ls-login-reference-tabs,
  .ls-login-reference-secure,
  .ls-login-reference-form,
  .ls-login-reference-divider,
  .ls-login-reference-socials,
  .ls-login-reference-bottom,
  .ls-auth-card > *,
  .ls-preview-card > *,
  .ls-login-reference-logo-mark,
  .ls-logo img,
  .ls-preview-card .ls-eyebrow,
  .ls-login-reference-logo-mark span,
  .ls-login-reference-tabs a.active:after,
  .ls-eyebrow:after,
  .ls-login-reference-submit,
  .ls-button,
  .ls-login-reference-submit:after,
  .ls-button:after,
  .ls-login-reference-socials button,
  .ls-mini-stat,
  .ls-preview-card article,
  .ls-auth-actions .ls-button,
  .ls-mini-dashboard,
  .ls-preview-content,
  .ls-bg-glow {
    animation: none !important;
    transition: none !important;
  }
}
