:root {
  --bg-0: #f5f1ec;
  --bg-1: #fffefd;
  --bg-2: #fffefd;
  --ink-0: #191919;
  --ink-1: #002144;
  --ink-2: #647286;
  --line: rgba(0, 33, 68, 0.14);
  --line-strong: rgba(0, 33, 68, 0.24);
  --brand: #002144;
  --brand-strong: #00152d;
  --brand-soft: rgba(0, 33, 68, 0.08);
  --accent: #f86623;
  --success: #1f9d66;
  --danger: #d94a55;
  --warning: #d99820;
  --shadow-md: 0 14px 30px rgba(35, 64, 100, 0.14);
  --shadow-sm: 0 10px 22px rgba(0, 33, 68, 0.12);
  color-scheme: light;
  font-family: "Poppins", "Segoe UI Variable Text", "Segoe UI", Aptos, Arial, sans-serif;
  color: var(--ink-0);
  background: var(--bg-0);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(248, 102, 35, 0.14), transparent 24%),
    radial-gradient(circle at top left, rgba(0, 33, 68, 0.12), transparent 38%),
    linear-gradient(180deg, #fffefd 0%, #f7f3ee 48%, #fffefd 100%);
}

html:has(.login-view:not(.hidden)),
body:has(.login-view:not(.hidden)) {
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

button,
input,
textarea {
  font: inherit;
}

select {
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 54px;
  padding: 0 18px;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-0);
}

button {
  border: 0;
  cursor: pointer;
}

input {
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 54px;
  padding: 0 18px;
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

textarea {
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 92px;
  padding: 14px 18px;
  resize: vertical;
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-0);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 60%, white 40%);
  box-shadow: 0 0 0 4px rgba(0, 33, 68, 0.12);
  transform: translateY(-1px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 900;
}

.shell {
  min-height: 100vh;
}

body:has(.login-view:not(.hidden)) .shell {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

body.auth-loading .login-view,
body.auth-loading .app-view,
body.auth-loading .admin-view {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.brand-loading-overlay {
  align-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(248, 102, 35, 0.22), transparent 28%),
    linear-gradient(135deg, #002144 0%, #00152d 62%, #191919 100%);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  visibility: hidden;
  z-index: 1000;
}

.brand-loading-overlay::before,
.brand-loading-overlay::after {
  border: 1px solid rgba(255, 254, 253, 0.08);
  border-radius: 999px;
  content: "";
  position: absolute;
}

.brand-loading-overlay::before {
  animation: brandLoaderOrbit 7s ease-in-out infinite;
  height: 420px;
  width: 420px;
}

.brand-loading-overlay::after {
  animation: brandLoaderOrbit 7s ease-in-out infinite reverse;
  height: 640px;
  width: 640px;
}

body.auth-loading .brand-loading-overlay,
body.portal-transition-loading .brand-loading-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.brand-loader-card {
  align-items: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.brand-loader-card img {
  animation: brandLoaderMark 2.4s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.26));
  height: auto;
  max-width: min(360px, 72vw);
  width: 360px;
}

.brand-loader-line {
  background: rgba(255, 254, 253, 0.18);
  border-radius: 999px;
  display: block;
  height: 4px;
  overflow: hidden;
  position: relative;
  width: min(260px, 58vw);
}

.brand-loader-line::after {
  animation: brandLoaderLine 1.4s ease-in-out infinite;
  background: #f86623;
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-70%) scaleX(0.42);
  transform-origin: left center;
}

.brand-loader-card p {
  color: rgba(255, 254, 253, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.login-view {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-auto-rows: minmax(0, min(620px, calc(100dvh - 64px)));
  grid-template-columns: minmax(320px, 520px) minmax(360px, 430px);
  height: auto;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
  position: fixed;
  width: auto;
}

.login-ambient {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.login-ambient span {
  animation: loginDrift 12s ease-in-out infinite;
  border-radius: 999px;
  position: absolute;
}

.login-ambient span:nth-child(1) {
  background: rgba(0, 33, 68, 0.16);
  height: 360px;
  left: -110px;
  top: -90px;
  width: 360px;
}

.login-ambient span:nth-child(2) {
  animation-delay: -4s;
  background: rgba(248, 102, 35, 0.18);
  height: 240px;
  right: 12%;
  top: 10%;
  width: 240px;
}

.login-ambient span:nth-child(3) {
  animation-delay: -7s;
  background: rgba(0, 33, 68, 0.14);
  bottom: -120px;
  height: 320px;
  right: -80px;
  width: 320px;
}

.login-product-panel {
  background:
    radial-gradient(circle at 88% 10%, rgba(248, 102, 35, 0.34), transparent 26%),
    radial-gradient(circle at 8% 82%, rgba(248, 102, 35, 0.12), transparent 30%),
    linear-gradient(145deg, #00152d 0%, #002144 58%, #191919 100%);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(0, 33, 68, 0.3);
  color: #fffefd;
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.login-product-panel::before,
.login-product-panel::after {
  border-radius: 999px;
  content: "";
  position: absolute;
}

.login-product-panel::before {
  animation: bannerSweep 9s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgba(248, 102, 35, 0.24), transparent 62%),
    radial-gradient(circle at center, rgba(255, 254, 253, 0.08), transparent 60%);
  height: 360px;
  right: -132px;
  top: -118px;
  width: 360px;
}

.login-product-panel::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 254, 253, 0.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 254, 253, 0.035) 0 1px, transparent 1px 34px);
  border-radius: 0;
  inset: 0;
  opacity: 0.72;
}

.product-panel-badge,
.product-panel-copy,
.automation-motion {
  position: relative;
  z-index: 1;
}

.product-panel-badge {
  align-items: center;
  align-self: start;
  background: rgba(255, 254, 253, 0.1);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 999px;
  color: rgba(255, 254, 253, 0.82);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  justify-self: start;
  padding: 7px 12px 7px 8px;
  text-transform: uppercase;
}

.product-panel-mark {
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
  height: 22px;
  width: 22px;
}

.product-panel-copy {
  display: grid;
  gap: 8px;
  max-width: 440px;
}

.product-panel-copy h2 {
  font-size: 30px;
  font-weight: 950;
  line-height: 1.05;
  margin: 0;
  max-width: 16ch;
}

.product-panel-copy p {
  color: rgba(255, 255, 255, 0.78);
  display: none;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

.automation-motion {
  height: 100%;
  margin-top: auto;
  min-height: 0;
}

.motion-stage {
  background:
    radial-gradient(circle at 54% 16%, rgba(248, 102, 35, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.1), rgba(255, 254, 253, 0.045));
  border: 1px solid rgba(255, 254, 253, 0.14);
  border-radius: 22px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.motion-stage::before {
  background:
    linear-gradient(90deg, transparent, rgba(248, 102, 35, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(255, 254, 253, 0.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 254, 253, 0.05) 0 1px, transparent 1px 42px);
  content: "";
  inset: 0;
  opacity: 0.62;
  position: absolute;
}

.enterprise-watermark {
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  bottom: 22px;
  height: 150px;
  opacity: 0.05;
  pointer-events: none;
  position: absolute;
  right: 18px;
  width: 150px;
  z-index: 1;
}

.motion-scene {
  inset: 0;
  opacity: 0;
  padding: 22px;
  position: absolute;
  z-index: 2;
}

.motion-scene-garage {
  animation: sceneGarage 15.6s linear infinite;
}

.motion-scene-automation {
  animation: sceneAutomation 15.6s linear infinite;
}

.motion-scene-sold {
  animation: sceneSold 15.6s linear infinite;
}

.motion-timer {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  height: 8px;
  left: 18px;
  overflow: hidden;
  padding: 2px;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 6;
}

.motion-timer span {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.motion-timer span::before {
  animation: timerSegmentOne 15.6s linear infinite;
  background: linear-gradient(90deg, #f86623, #ffb48a);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-timer span:nth-child(2)::before {
  animation-name: timerSegmentTwo;
}

.motion-timer span:nth-child(3)::before {
  animation-name: timerSegmentThree;
}

.scene-label {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 950;
  left: 18px;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 34px;
}

.enterprise-console,
.extension-console,
.marketplace-console,
.sync-dashboard,
.activity-feed-mini,
.enterprise-metric {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.16), rgba(255, 254, 253, 0.065)),
    linear-gradient(135deg, rgba(0, 33, 68, 0.48), rgba(0, 21, 45, 0.14));
  border: 1px solid rgba(255, 254, 253, 0.18);
  box-shadow: 0 22px 42px rgba(0, 12, 28, 0.22);
  position: absolute;
}

.enterprise-console {
  border-radius: 22px;
  bottom: 28px;
  left: 24px;
  overflow: hidden;
  right: 24px;
  top: 78px;
}

.console-topbar {
  background:
    linear-gradient(90deg, rgba(248, 102, 35, 0.94), rgba(255, 180, 138, 0.5)),
    rgba(255, 254, 253, 0.12);
  height: 4px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.console-tab {
  background: rgba(255, 254, 253, 0.16);
  border-radius: 999px;
  height: 8px;
  left: 22px;
  position: absolute;
  top: 42px;
  width: 84px;
}

.console-tab:nth-of-type(3) {
  left: 118px;
  width: 68px;
}

.console-tab.short {
  left: 198px;
  width: 48px;
}

.console-tab.active {
  background: rgba(248, 102, 35, 0.84);
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.28);
}

.enterprise-vehicle-card {
  background: rgba(255, 254, 253, 0.12);
  border: 1px solid rgba(255, 254, 253, 0.14);
  border-radius: 18px;
  bottom: 22px;
  left: 22px;
  position: absolute;
  top: 70px;
  width: 58%;
}

.vehicle-photo-real {
  background:
    radial-gradient(circle at 72% 46%, rgba(248, 102, 35, 0.82) 0 13px, transparent 14px),
    linear-gradient(135deg, rgba(255, 254, 253, 0.88), rgba(255, 180, 138, 0.22) 46%, rgba(0, 33, 68, 0.2));
  border-radius: 14px;
  height: 58%;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.vehicle-line {
  background: rgba(255, 254, 253, 0.28);
  border-radius: 999px;
  bottom: 44px;
  height: 8px;
  left: 14px;
  position: absolute;
  width: 52%;
}

.vehicle-line.wide {
  bottom: 60px;
  width: 72%;
}

.vehicle-price {
  background: rgba(248, 102, 35, 0.94);
  border-radius: 999px;
  bottom: 14px;
  color: #fffefd;
  font-size: 12px;
  font-weight: 900;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
}

.inventory-meta-card {
  border-left: 3px solid #f86623;
  display: grid;
  gap: 4px;
  position: absolute;
  right: 22px;
  top: 84px;
  width: 34%;
}

.inventory-meta-card strong,
.extension-console strong,
.sync-dashboard strong {
  color: #fffefd;
  font-size: 13px;
  font-weight: 900;
}

.inventory-meta-card span,
.extension-state,
.sync-dashboard span {
  color: rgba(255, 254, 253, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.enterprise-chip {
  background: rgba(255, 254, 253, 0.12);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 999px;
  bottom: 30px;
  color: rgba(255, 254, 253, 0.76);
  font-size: 10px;
  font-weight: 900;
  padding: 8px 10px;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
}

.extension-console,
.marketplace-console {
  border-radius: 20px;
  height: 198px;
  top: 88px;
  width: 168px;
  z-index: 4;
}

.extension-console {
  animation: appActivate 5.2s ease-in-out infinite;
  display: grid;
  gap: 8px;
  left: 30px;
  padding: 22px 18px;
}

.extension-logo-dot {
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  display: block;
  height: 42px;
  width: 42px;
}

.extension-action {
  align-self: end;
  background: linear-gradient(135deg, #f86623, #ffb48a);
  border-radius: 999px;
  color: #fffefd;
  display: inline-grid;
  font-size: 11px;
  font-weight: 900;
  min-height: 34px;
  padding-inline: 12px;
  place-items: center;
  text-transform: uppercase;
}

.marketplace-console {
  animation: fbPublish 5.2s ease-in-out infinite;
  right: 30px;
}

.marketplace-top {
  background: #1877f2;
  border-radius: 999px;
  color: white;
  display: grid;
  font-size: 18px;
  font-weight: 950;
  height: 30px;
  left: 16px;
  place-items: center;
  position: absolute;
  top: 16px;
  width: 30px;
}

.marketplace-photo {
  background:
    radial-gradient(circle at 52% 62%, rgba(248, 102, 35, 0.72), transparent 14%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.88), rgba(24, 119, 242, 0.2));
  border-radius: 14px;
  height: 74px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 58px;
}

.marketplace-line {
  background: rgba(255, 254, 253, 0.26);
  border-radius: 999px;
  height: 8px;
  left: 18px;
  position: absolute;
  right: 48px;
  top: 148px;
}

.marketplace-line.wide {
  right: 24px;
  top: 132px;
}

.marketplace-status {
  bottom: 16px;
  color: rgba(255, 254, 253, 0.58);
  font-size: 10px;
  font-weight: 800;
  left: 18px;
  position: absolute;
}

.automation-rail {
  animation: automationBeam 5.2s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(248, 102, 35, 0.95), transparent);
  border-radius: 999px;
  height: 4px;
  left: 194px;
  position: absolute;
  right: 194px;
  top: 178px;
}

.automation-pulse {
  animation: automationPacket 5.2s ease-in-out infinite;
  background: #f86623;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(248, 102, 35, 0.42);
  height: 12px;
  left: calc(50% - 6px);
  opacity: 0;
  position: absolute;
  top: 174px;
  width: 12px;
  z-index: 6;
}

.pulse-two {
  animation-delay: 0.45s;
  top: 154px;
}

.sync-dashboard {
  align-items: center;
  border-radius: 22px;
  display: grid;
  gap: 6px;
  justify-items: center;
  left: 50%;
  padding: 24px 22px;
  text-align: center;
  top: 78px;
  transform: translateX(-50%);
  width: 252px;
  z-index: 4;
}

.sync-check {
  background: linear-gradient(135deg, #f86623, #ffb48a);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(248, 102, 35, 0.36);
  height: 42px;
  position: relative;
  width: 42px;
}

.sync-check::before {
  border-bottom: 4px solid #fffefd;
  border-left: 4px solid #fffefd;
  content: "";
  height: 9px;
  left: 12px;
  position: absolute;
  top: 12px;
  transform: rotate(-45deg);
  width: 17px;
}

.activity-feed-mini {
  border-radius: 18px;
  bottom: 34px;
  display: grid;
  gap: 9px;
  left: 30px;
  padding: 14px;
  width: 246px;
}

.feed-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.feed-row b {
  background: rgba(255, 254, 253, 0.24);
  border-radius: 999px;
  display: block;
  height: 8px;
  width: 8px;
}

.feed-row.active b {
  background: #f86623;
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.42);
}

.feed-row em {
  color: rgba(255, 254, 253, 0.7);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.enterprise-metric {
  border-radius: 18px;
  bottom: 48px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  right: 32px;
}

.enterprise-metric small {
  color: rgba(255, 254, 253, 0.56);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.enterprise-metric strong {
  color: #fffefd;
  font-size: 22px;
  font-weight: 900;
}

.garage-frame {
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 211, 111, 0.16), transparent 18%),
    radial-gradient(circle at 78% 8%, rgba(255, 211, 111, 0.13), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, rgba(5, 18, 39, 0.08), rgba(5, 18, 39, 0.36)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  bottom: 22px;
  left: 22px;
  overflow: hidden;
  position: absolute;
  right: 22px;
  top: 74px;
}

.garage-door {
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 26px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border-radius: 16px 16px 0 0;
  height: 66%;
  left: 22%;
  position: absolute;
  right: 16%;
  top: 0;
}

.garage-door::before,
.garage-door::after {
  background: rgba(255, 255, 255, 0.12);
  content: "";
  position: absolute;
}

.garage-door::before {
  bottom: 0;
  left: 50%;
  top: 0;
  width: 2px;
}

.garage-door::after {
  height: 2px;
  left: 0;
  right: 0;
  top: 50%;
}

.garage-light {
  animation: garageLightFlicker 5.2s ease-in-out infinite;
  background: rgba(255, 211, 111, 0.8);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255, 211, 111, 0.38);
  height: 8px;
  position: absolute;
  top: 16px;
  width: 42px;
}

.garage-light-left {
  left: 24px;
}

.garage-light-right {
  right: 28px;
}

.garage-clock {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.72) 49% 51%, transparent 52%),
    linear-gradient(25deg, transparent 48%, rgba(255, 255, 255, 0.72) 49% 51%, transparent 52%);
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  height: 34px;
  left: 26px;
  position: absolute;
  top: 42px;
  width: 34px;
}

.garage-sign {
  background: rgba(217, 74, 85, 0.16);
  border: 1px solid rgba(255, 180, 188, 0.28);
  border-radius: 10px;
  color: #ffb4bc;
  font-size: 10px;
  font-weight: 950;
  left: 70px;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 42px;
}

.garage-paper {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 3px;
  box-shadow: 0 8px 16px rgba(4, 16, 35, 0.18);
  height: 34px;
  position: absolute;
  transform: rotate(-8deg);
  width: 26px;
}

.garage-paper::before,
.garage-paper::after {
  background: rgba(16, 33, 59, 0.28);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 5px;
  position: absolute;
  right: 5px;
}

.garage-paper::before {
  top: 9px;
}

.garage-paper::after {
  top: 17px;
}

.garage-paper-one {
  bottom: 66px;
  right: 28px;
}

.garage-paper-two {
  bottom: 38px;
  right: 72px;
  transform: rotate(11deg);
}

.garage-floor {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  bottom: 38px;
  height: 2px;
  left: 12%;
  position: absolute;
  right: 12%;
}

.garage-car {
  animation: garageCarPulse 5.2s ease-in-out infinite;
  bottom: 30px;
  left: 52%;
  transform: translateX(-50%);
}

.worried-dealer {
  animation: dealerWorry 5.2s ease-in-out infinite;
  bottom: 36px;
  height: 86px;
  left: 46px;
  position: absolute;
  width: 58px;
  z-index: 4;
}

.dealer-head {
  background:
    radial-gradient(circle at 36% 44%, #10213b 0 2px, transparent 3px),
    radial-gradient(circle at 64% 44%, #10213b 0 2px, transparent 3px),
    linear-gradient(180deg, #ffe0b8, #eab47f);
  border-radius: 999px;
  box-shadow: inset 0 -5px 0 rgba(16, 33, 59, 0.12);
  height: 34px;
  left: 12px;
  position: absolute;
  top: 0;
  width: 34px;
}

.dealer-head::before {
  background: #10213b;
  border-radius: 999px 999px 8px 8px;
  content: "";
  height: 12px;
  left: 2px;
  position: absolute;
  right: 2px;
  top: -2px;
}

.dealer-head::after {
  border-bottom: 2px solid rgba(16, 33, 59, 0.64);
  border-radius: 999px;
  bottom: 8px;
  content: "";
  height: 8px;
  left: 11px;
  position: absolute;
  transform: rotate(180deg);
  width: 12px;
}

.dealer-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(143, 181, 255, 0.78));
  border-radius: 16px 16px 10px 10px;
  bottom: 0;
  height: 50px;
  left: 9px;
  position: absolute;
  width: 40px;
}

.dealer-arm {
  background: #ffe0b8;
  border-radius: 999px;
  height: 10px;
  position: absolute;
  top: 45px;
  width: 30px;
}

.dealer-arm-left {
  left: 0;
  transform: rotate(-38deg);
}

.dealer-arm-right {
  right: 0;
  transform: rotate(38deg);
}

.worry-mark {
  animation: worryPop 5.2s ease-in-out infinite;
  background: rgba(217, 74, 85, 0.92);
  border-radius: 999px;
  color: white;
  display: grid;
  font-size: 12px;
  font-weight: 950;
  height: 22px;
  place-items: center;
  position: absolute;
  right: -8px;
  top: -10px;
  width: 22px;
}

.money-loss,
.money-rise {
  border-radius: 999px;
  display: grid;
  font-size: 15px;
  font-weight: 950;
  height: 30px;
  place-items: center;
  position: absolute;
  width: 30px;
}

.money-loss {
  animation: moneyDrop 5.2s ease-in infinite;
  background: rgba(217, 74, 85, 0.16);
  border: 1px solid rgba(255, 180, 188, 0.34);
  color: #ffb4bc;
  top: 48px;
}

.money-loss-one {
  animation-delay: 0.1s;
  left: 20%;
}

.money-loss-two {
  animation-delay: 0.7s;
  left: 48%;
}

.money-loss-three {
  animation-delay: 1.2s;
  right: 18%;
}

.app-mock,
.fb-mock {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 50% 0%, rgba(248, 102, 35, 0.15), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  box-shadow: 0 24px 44px rgba(4, 16, 35, 0.2);
  position: absolute;
  z-index: 4;
}

.app-mock {
  animation: appActivate 5.2s ease-in-out infinite;
  height: 190px;
  left: 28px;
  top: 82px;
  width: 158px;
}

.fb-mock {
  animation: fbPublish 5.2s ease-in-out infinite;
  height: 190px;
  right: 28px;
  top: 82px;
  width: 158px;
}

.app-bar,
.app-photo,
.app-line,
.fb-photo,
.fb-line {
  border-radius: 999px;
  position: absolute;
}

.app-bar {
  background: rgba(255, 255, 255, 0.22);
  height: 10px;
  left: 16px;
  right: 48px;
  top: 16px;
}

.app-photo,
.fb-photo {
  background:
    radial-gradient(circle at 50% 62%, rgba(248, 102, 35, 0.76), transparent 12%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(143, 181, 255, 0.8));
  border-radius: 14px;
  height: 74px;
  left: 16px;
  right: 16px;
  top: 38px;
}

.app-line,
.fb-line {
  background: rgba(255, 255, 255, 0.28);
  height: 8px;
  left: 18px;
}

.app-line-one,
.fb-line-one {
  right: 30px;
  top: 126px;
}

.app-line-two,
.fb-line-two {
  right: 54px;
  top: 142px;
}

.app-mock button {
  animation: buttonPress 5.2s ease-in-out infinite;
  background: linear-gradient(135deg, #f86623, #ffb48a);
  border-radius: 999px;
  bottom: 14px;
  color: #10213b;
  font-size: 12px;
  font-weight: 950;
  left: 18px;
  min-height: 34px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
}

.fb-top {
  background: #1877f2;
  border-radius: 999px;
  color: white;
  display: grid;
  font-size: 18px;
  font-weight: 950;
  height: 30px;
  left: 14px;
  place-items: center;
  position: absolute;
  top: 12px;
  width: 30px;
}

.fb-photo {
  top: 52px;
}

.fb-line-one {
  top: 142px;
}

.fb-line-two {
  top: 158px;
}

.automation-beam {
  animation: automationBeam 5.2s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(248, 102, 35, 0), rgba(248, 102, 35, 0.95), rgba(248, 102, 35, 0));
  border-radius: 999px;
  height: 4px;
  left: 188px;
  opacity: 0;
  position: absolute;
  right: 188px;
  top: 176px;
}

.automation-glow {
  animation: automationGlow 5.2s ease-in-out infinite;
  border-radius: 999px;
  position: absolute;
  z-index: 1;
}

.automation-glow-one {
  background: rgba(24, 119, 242, 0.18);
  height: 210px;
  right: 22px;
  top: 54px;
  width: 210px;
}

.automation-glow-two {
  background: rgba(248, 102, 35, 0.15);
  height: 170px;
  left: 24px;
  top: 82px;
  width: 170px;
}

.automation-status {
  animation: premiumSlideLeft 5.2s ease-in-out infinite;
  backdrop-filter: blur(14px);
  background: rgba(16, 33, 59, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 950;
  left: 30px;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 62px;
  z-index: 5;
}

.vehicle-data-card,
.publish-card {
  animation: automationCardIn 5.2s ease-in-out infinite;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(4, 16, 35, 0.18);
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  position: absolute;
  z-index: 5;
}

.vehicle-data-card {
  bottom: 34px;
  left: 38px;
  width: 136px;
}

.publish-card {
  animation-delay: 0.45s;
  bottom: 34px;
  right: 38px;
  width: 150px;
}

.vehicle-data-card strong,
.publish-card strong {
  color: white;
  font-size: 12px;
  font-weight: 950;
}

.vehicle-data-card span,
.publish-card span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 800;
}

.automation-packet {
  animation: automationPacket 5.2s ease-in-out infinite;
  background: linear-gradient(135deg, #ffb48a, #f86623);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.38);
  height: 10px;
  left: 192px;
  opacity: 0;
  position: absolute;
  top: 173px;
  width: 10px;
  z-index: 6;
}

.automation-packet-two {
  animation-delay: 0.35s;
  top: 158px;
}

.automation-packet-three {
  animation-delay: 0.7s;
  top: 188px;
}

.deal-card {
  animation: dealCardIn 5.2s ease-in-out infinite;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.11)),
    radial-gradient(circle at 50% 0%, rgba(157, 244, 200, 0.24), transparent 52%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 26px 46px rgba(4, 16, 35, 0.2), 0 0 0 1px rgba(157, 244, 200, 0.12);
  display: grid;
  gap: 4px;
  left: 50%;
  padding: 20px 18px 18px;
  place-items: center;
  position: absolute;
  top: 72px;
  transform: translateX(-50%);
  width: 178px;
  z-index: 4;
}

.deal-card strong {
  color: white;
  font-size: 26px;
  font-weight: 950;
}

.deal-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
}

.deal-check {
  animation: checkPulse 5.2s ease-in-out infinite;
  background: linear-gradient(135deg, #1f9d66, #9df4c8);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(157, 244, 200, 0.36);
  height: 36px;
  position: relative;
  width: 36px;
}

.deal-check::before {
  border-bottom: 4px solid white;
  border-left: 4px solid white;
  content: "";
  height: 8px;
  left: 10px;
  position: absolute;
  top: 10px;
  transform: rotate(-45deg);
  width: 16px;
}

.buyer-seller {
  bottom: 36px;
  display: flex;
  gap: 28px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.person {
  animation: personNod 5.2s ease-in-out infinite;
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.95) 0 11px, transparent 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 36%, rgba(143, 181, 255, 0.72) 37%);
  border-radius: 999px 999px 16px 16px;
  box-shadow: 0 16px 24px rgba(4, 16, 35, 0.16);
  height: 58px;
  width: 40px;
}

.dealer-person {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.95) 0 11px, transparent 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 36%, rgba(248, 102, 35, 0.78) 37%);
}

.buyer-person {
  animation-delay: 0.2s;
}

.handshake {
  animation: handshakePulse 5.2s ease-in-out infinite;
  background: linear-gradient(90deg, #ffb48a, #f86623);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.34);
  height: 12px;
  margin-top: 24px;
  width: 54px;
}

.premium-glow {
  animation: premiumGlow 5.2s ease-in-out infinite;
  border-radius: 999px;
  filter: blur(1px);
  position: absolute;
}

.premium-glow-one {
  background: rgba(157, 244, 200, 0.18);
  height: 190px;
  left: 48%;
  top: 44px;
  transform: translateX(-50%);
  width: 190px;
}

.premium-glow-two {
  background: rgba(248, 102, 35, 0.16);
  bottom: 26px;
  height: 150px;
  right: 34px;
  width: 150px;
}

.sold-tag,
.sold-plate,
.receipt-card {
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(4, 16, 35, 0.18);
  position: absolute;
  z-index: 3;
}

.sold-tag {
  animation: premiumSlideLeft 5.2s ease-in-out infinite;
  background: rgba(31, 157, 102, 0.92);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 950;
  left: 32px;
  padding: 9px 12px;
  text-transform: uppercase;
  top: 92px;
}

.sold-plate {
  animation: premiumSlideRight 5.2s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 950;
  padding: 8px 10px;
  right: 30px;
  text-transform: uppercase;
  top: 96px;
}

.receipt-card {
  animation: receiptFloat 5.2s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  right: 34px;
  top: 154px;
  width: 126px;
}

.receipt-card strong {
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.receipt-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
}

.receipt-top {
  background: rgba(157, 244, 200, 0.9);
  border-radius: 999px;
  height: 5px;
  width: 46px;
}

.confetti {
  animation: confettiPop 5.2s ease-out infinite;
  background: #ffb48a;
  border-radius: 3px;
  height: 12px;
  position: absolute;
  top: 116px;
  width: 6px;
  z-index: 2;
}

.confetti-one {
  animation-delay: 0.1s;
  left: 34%;
}

.confetti-two {
  animation-delay: 0.25s;
  background: #9df4c8;
  left: 62%;
}

.confetti-three {
  animation-delay: 0.42s;
  background: #ffffff;
  left: 44%;
}

.confetti-four {
  animation-delay: 0.6s;
  background: #f86623;
  left: 70%;
}

.money-rise {
  animation: moneyRise 5.2s ease-out infinite;
  background: rgba(31, 157, 102, 0.18);
  border: 1px solid rgba(157, 244, 200, 0.34);
  bottom: 42px;
  color: #9df4c8;
}

.money-rise-one {
  animation-delay: 0.1s;
  left: 18%;
}

.money-rise-two {
  animation-delay: 0.45s;
  left: 34%;
}

.money-rise-three {
  animation-delay: 0.8s;
  right: 32%;
}

.money-rise-four {
  animation-delay: 1.1s;
  right: 16%;
}

.motion-card {
  animation: motionCardPulse 5.8s ease-in-out infinite;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(4, 16, 35, 0.18);
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  position: absolute;
  width: 148px;
  z-index: 2;
}

.motion-card strong {
  color: white;
  font-size: 13px;
  font-weight: 950;
}

.motion-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.motion-source {
  left: 18px;
  top: 18px;
}

.motion-ai {
  animation-delay: 0.7s;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
}

.motion-marketplace {
  animation-delay: 1.4s;
  bottom: 18px;
  right: 18px;
}

.motion-path {
  background: linear-gradient(90deg, rgba(248, 102, 35, 0), rgba(248, 102, 35, 0.9), rgba(248, 102, 35, 0));
  border-radius: 999px;
  height: 3px;
  opacity: 0;
  position: absolute;
  transform-origin: left center;
  z-index: 1;
}

.motion-path-one {
  animation: motionPathOne 5.8s ease-in-out infinite;
  left: 150px;
  top: 68px;
  width: 135px;
}

.motion-path-two {
  animation: motionPathTwo 5.8s ease-in-out infinite;
  bottom: 76px;
  right: 128px;
  width: 150px;
}

.motion-car {
  animation: motionCarDrive 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  bottom: 38px;
  height: 66px;
  left: 26px;
  position: absolute;
  width: 150px;
  z-index: 3;
}

.garage-frame .garage-car {
  animation: garageCarPulse 5.2s ease-in-out infinite;
  bottom: 30px;
  left: 54%;
  transform: translateX(-50%);
}

.car-body,
.car-roof,
.car-wheel {
  position: absolute;
}

.car-body {
  background: linear-gradient(135deg, #ffffff, #c9dcff);
  border-radius: 18px 28px 14px 14px;
  bottom: 13px;
  box-shadow: 0 16px 28px rgba(3, 15, 32, 0.24);
  height: 34px;
  left: 0;
  width: 142px;
}

.car-roof {
  background: linear-gradient(135deg, #dfeaff, #8fb5ff);
  border-radius: 30px 34px 8px 8px;
  bottom: 39px;
  height: 28px;
  left: 34px;
  width: 68px;
}

.car-wheel {
  animation: wheelSpin 0.85s linear infinite;
  background: #10213b;
  border: 4px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  bottom: 4px;
  height: 24px;
  width: 24px;
}

.car-wheel-left {
  left: 22px;
}

.car-wheel-right {
  left: 100px;
}

.motion-click {
  animation: motionClick 5.8s ease-in-out infinite;
  background: linear-gradient(135deg, #f86623, #ffb48a);
  border-radius: 999px;
  bottom: 88px;
  box-shadow: 0 16px 34px rgba(248, 102, 35, 0.34);
  color: #10213b;
  font-size: 12px;
  font-weight: 950;
  min-height: 40px;
  padding: 0 16px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  text-transform: uppercase;
  z-index: 4;
}

.motion-sold {
  animation: motionSold 5.8s ease-in-out infinite;
  background: rgba(31, 157, 102, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  bottom: 74px;
  box-shadow: 0 14px 32px rgba(31, 157, 102, 0.28);
  color: white;
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  padding: 9px 13px;
  position: absolute;
  right: 48px;
  transform: translateY(8px) scale(0.94);
  z-index: 5;
}

.login-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
  border: 1px solid rgba(188, 205, 226, 0.78);
  border-radius: 24px;
  box-shadow: 0 30px 64px rgba(28, 48, 73, 0.2);
  align-self: center;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  isolation: isolate;
  min-height: 0;
  max-width: 430px;
  max-height: calc(100dvh - 24px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.login-panel::before {
  animation: loginOrangeAura 9s ease-in-out infinite;
  background:
    radial-gradient(circle at 18% 12%, rgba(248, 102, 35, 0.34), transparent 28%),
    radial-gradient(circle at 52% 38%, rgba(248, 102, 35, 0.12), transparent 34%);
  content: "";
  inset: -34%;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-22px, -18px, 0) scale(0.84);
  transform-origin: 16% 12%;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  z-index: -1;
}

.login-panel:hover::before,
.login-panel:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.18);
}

body.admin-auth-mode .login-view {
  background:
    linear-gradient(180deg, rgba(250, 251, 253, 0.98), rgba(241, 244, 248, 0.98));
  grid-auto-rows: minmax(0, min(520px, calc(100dvh - 64px)));
  grid-template-columns: minmax(320px, 440px);
}

body.admin-auth-mode .login-ambient,
body.admin-auth-mode .login-product-panel {
  display: none;
}

body.admin-auth-mode .login-panel {
  background: rgba(255, 254, 253, 0.98);
  border: 1px solid rgba(171, 188, 207, 0.82);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(23, 43, 67, 0.12);
  max-width: 440px;
}

body.admin-auth-mode .login-panel::before {
  display: none;
}

body.admin-auth-mode .auth-card-main {
  gap: 18px;
  padding: 36px 34px 30px;
}

body.admin-auth-mode .portal-logo-motion {
  height: 68px;
  max-width: 280px;
}

body.admin-auth-mode .login-copy {
  gap: 8px;
  text-align: left;
}

body.admin-auth-mode .login-copy h1 {
  color: #102844;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
}

body.admin-auth-mode .login-copy p {
  color: #50647b;
  font-size: 13px;
  margin: 0;
  max-width: 44ch;
}

body.admin-auth-mode #login-form button[type="submit"],
body.admin-auth-mode #reset-form button[type="submit"],
body.admin-auth-mode #new-password-form button[type="submit"] {
  background: #102844;
  border: 1px solid #102844;
  box-shadow: none;
}

body.admin-auth-mode #login-form button[type="submit"]:hover,
body.admin-auth-mode #reset-form button[type="submit"]:hover,
body.admin-auth-mode #new-password-form button[type="submit"]:hover {
  box-shadow: 0 10px 22px rgba(16, 40, 68, 0.16);
}

body.admin-auth-mode .auth-card-footer {
  background: #f7f9fb;
  border-top: 1px solid rgba(171, 188, 207, 0.55);
  justify-content: space-between;
  min-height: 68px;
  padding: 16px 34px;
  text-align: left;
}

body.admin-auth-mode .auth-footer-link,
body.admin-auth-mode .field-link,
body.admin-auth-mode .auth-tab {
  color: #102844;
}

.auth-card-main {
  align-content: center;
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: 34px 30px 30px;
  position: relative;
  z-index: 1;
}

.auth-card-footer {
  align-items: center;
  border-top: 1px solid rgba(188, 205, 226, 0.72);
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-height: 82px;
  padding: 18px 24px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.portal-logo {
  align-items: center;
  color: var(--brand);
  display: flex;
  gap: 14px;
  justify-content: center;
}

.portal-logo-motion {
  height: 94px;
  margin-inline: auto;
  max-width: min(360px, 100%);
  position: relative;
  width: 360px;
}

.portal-logo-layer {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
}

.portal-logo-tagline,
.portal-logo-full {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.portal-logo-full {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.auth-register-mode .portal-logo-tagline {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.auth-register-mode .portal-logo-full {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
}

.portal-mark {
  align-items: center;
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  border-radius: 50%;
  display: flex;
  height: 78px;
  justify-content: center;
  position: relative;
  width: 78px;
  animation: loginMarkFloat 4.8s ease-in-out infinite;
}

.portal-mark::before,
.portal-mark::after {
  display: none;
}

.portal-mark::before {
  height: 30px;
  width: 11px;
}

.portal-mark::after {
  height: 11px;
  width: 30px;
}

.portal-wordmark {
  align-items: baseline;
  display: inline-flex;
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-33%);
}

.portal-wordmark-omni {
  font-weight: 900;
}

.portal-wordmark-dealer {
  font-weight: 400;
  margin-left: -1px;
}

.login-copy {
  display: grid;
  gap: 6px;
  text-align: center;
}

.login-copy h1,
.topbar h1,
.section-head h2,
.operator-form h2 {
  margin: 0;
}

.login-copy h1 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.login-copy p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 32ch;
}

.login-copy p,
.topbar p,
.status,
.sidebar-foot,
.metrics small {
  color: var(--ink-2);
}

.auth-progress {
  display: none;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-progress span {
  background: rgba(188, 205, 226, 0.7);
  border-radius: 999px;
  height: 4px;
  overflow: hidden;
  position: relative;
}

.auth-progress span::after {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-80%);
  transition: opacity 0.2s ease, transform 0.28s ease;
}

.auth-progress span.active::after {
  opacity: 1;
  transform: translateX(0);
}

#login-form,
#register-form,
#reset-form,
#new-password-form,
.operator-form {
  align-content: start;
  display: grid;
  gap: 16px;
}

#login-form:not(.hidden),
#register-form:not(.hidden),
#reset-form:not(.hidden),
#new-password-form:not(.hidden) {
  animation: authFormIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#login-form button[type="submit"],
#register-form button[type="submit"],
#reset-form button[type="submit"],
#new-password-form button[type="submit"],
.operator-form button,
.topbar button,
.section-head button,
.operator-card button {
  min-height: 44px;
  border-radius: 12px;
  font-weight: 850;
  padding: 0 16px;
}

.field-label-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-width: 0;
}

.field-link {
  background: transparent;
  border: 0;
  color: var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-link.active {
  color: var(--brand);
}

#login-form button[type="submit"],
#register-form button[type="submit"],
#reset-form button[type="submit"],
#new-password-form button[type="submit"],
.operator-form button {
  min-height: 52px;
  background: linear-gradient(180deg, #1b62d1 0%, #00152d 100%);
  box-shadow: 0 14px 28px rgba(0, 33, 68, 0.26);
  color: #fff;
  line-height: 1;
  opacity: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

#login-form button[type="submit"]:hover,
#register-form button[type="submit"]:hover,
#reset-form button[type="submit"]:hover,
#new-password-form button[type="submit"]:hover {
  box-shadow: 0 16px 30px rgba(0, 33, 68, 0.3);
  transform: translateY(-1px);
}

#login-form button[type="submit"].is-loading,
#register-form button[type="submit"].is-loading,
#reset-form button[type="submit"].is-loading,
#new-password-form button[type="submit"].is-loading {
  cursor: wait;
  filter: saturate(0.82);
  opacity: 0.84;
}

.auth-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-tab {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--brand);
  min-height: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 850;
}

.auth-tab.active {
  background: transparent;
  border-color: transparent;
  color: var(--brand);
}

.auth-footer-link {
  align-items: center;
  color: var(--ink-0);
  display: inline-flex;
  font-size: 14px;
  gap: 6px;
  min-height: 24px;
}

.auth-footer-link::after {
  content: ">";
  font-weight: 900;
}

#login-status {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.portal-toast-container {
  display: grid;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
  pointer-events: none;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 120;
}

.portal-toast {
  align-items: flex-start;
  animation: toastIn 0.24s ease-out;
  background: rgba(231, 240, 255, 0.72);
  border: 1px solid rgba(188, 205, 226, 0.72);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(28, 48, 73, 0.2);
  color: var(--ink-0);
  display: grid;
  gap: 4px;
  line-height: 1.35;
  min-height: 54px;
  padding: 13px 15px;
  pointer-events: auto;
}

.portal-toast strong {
  font-size: 13px;
  font-weight: 950;
}

.portal-toast span {
  color: var(--ink-2);
  font-size: 12px;
}

.portal-toast.success {
  background: rgba(232, 248, 239, 0.96);
  border-color: rgba(42, 160, 89, 0.28);
}

.portal-toast.error {
  background: rgba(255, 242, 243, 0.96);
  border-color: rgba(206, 65, 78, 0.28);
}

.portal-toast.loading {
  background: rgba(231, 240, 255, 0.96);
  border-color: rgba(0, 33, 68, 0.28);
}

.portal-toast.info {
  background: rgba(255, 249, 236, 0.96);
  border-color: rgba(248, 102, 35, 0.34);
}

.onboarding-preview {
  background:
    linear-gradient(180deg, rgba(231, 240, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(188, 205, 226, 0.78);
  border-radius: 14px;
  display: grid;
  gap: 5px;
  padding: 14px;
}

.onboarding-preview strong {
  color: var(--ink-0);
  font-size: 14px;
}

.onboarding-preview span {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.45;
}

.app-view {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  height: 100vh;
  overflow: hidden;
  padding: 22px;
}

.admin-view {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  height: 100vh;
  overflow: hidden;
  padding: 22px;
}

.admin-view .sidebar-ambient {
  display: none;
}

.portal-sidebar,
.portal-main,
.admin-sidebar,
.admin-main {
  border: 1px solid rgba(188, 205, 226, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.portal-sidebar,
.admin-sidebar {
  background:
    linear-gradient(180deg, rgba(13, 36, 73, 0.96), rgba(16, 49, 94, 0.92) 54%, rgba(9, 35, 64, 0.96));
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 24px 0 0 24px;
  box-shadow: 0 24px 54px rgba(10, 34, 64, 0.28);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: calc(100vh - 44px);
  isolation: isolate;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px;
  position: sticky;
  top: 22px;
  scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
  scrollbar-width: thin;
}

.admin-sidebar {
  background: #102844;
  box-shadow: 0 16px 34px rgba(10, 34, 64, 0.18);
  gap: 18px;
}

.admin-main {
  background: rgba(255, 254, 253, 0.94);
}

.admin-topbar {
  align-items: center;
  min-height: 96px;
}

.admin-topbar h1 {
  font-size: 24px;
  line-height: 1.15;
}

.admin-topbar p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
  max-width: 720px;
}

.admin-topbar button {
  background: rgba(255, 254, 253, 0.96);
  border: 1px solid var(--line);
  color: var(--ink-1);
  box-shadow: none;
}

.portal-sidebar::-webkit-scrollbar,
.admin-sidebar::-webkit-scrollbar {
  width: 8px;
}

.portal-sidebar::-webkit-scrollbar-thumb,
.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.sidebar-ambient {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.sidebar-ambient span {
  animation: sidebarAurora 10s ease-in-out infinite;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.58;
  position: absolute;
}

.sidebar-ambient span:nth-child(1) {
  background: rgba(248, 102, 35, 0.32);
  height: 140px;
  left: -66px;
  top: 42px;
  width: 140px;
}

.sidebar-ambient span:nth-child(2) {
  animation-delay: -3s;
  background: rgba(44, 190, 203, 0.22);
  height: 180px;
  right: -104px;
  top: 210px;
  width: 180px;
}

.sidebar-ambient span:nth-child(3) {
  animation-delay: -6s;
  background: rgba(255, 255, 255, 0.14);
  bottom: 96px;
  height: 120px;
  left: 58px;
  width: 120px;
}

.workspace-brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.workspace-brand-mark {
  background: url("/assets/brand/logo-symbol-white.png") center / 112% auto no-repeat;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.045),
    0 12px 24px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.workspace-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.workspace-brand-name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.workspace-brand-subtitle {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tabs {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.nav-indicator {
  background: linear-gradient(180deg, rgba(248, 102, 35, 0.9), rgba(255, 205, 105, 0.9));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.42);
  height: 24px;
  left: -10px;
  position: absolute;
  top: 8px;
  transform: translateY(var(--nav-offset, 0px));
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  width: 4px;
}

.tab {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  min-height: 40px;
  padding: 0 12px;
  position: relative;
  text-align: left;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.tab::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.18s ease;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  transform: translateX(2px);
}

.tab:hover::after {
  opacity: 1;
}

.tab.active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 26px rgba(0, 0, 0, 0.18);
  color: white;
}

.sidebar-status-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.sidebar-status-card::before {
  background: #2fd180;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(47, 209, 128, 0.62);
  content: "";
  height: 8px;
  position: absolute;
  right: 14px;
  top: 16px;
  width: 8px;
}

.status-card-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-status-card strong {
  color: white;
  font-size: 14px;
  line-height: 1.25;
}

.sidebar-status-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 10px;
  padding-top: 14px;
  position: relative;
  z-index: 1;
  font-size: 12px;
}

.sidebar-foot button,
.topbar button,
.section-head button,
.operator-card button,
.admin-topbar button {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(188, 205, 226, 0.76);
  color: #21529e;
}

.sidebar-foot button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.portal-main,
.admin-main {
  border-left: 0;
  border-radius: 0 24px 24px 0;
  height: calc(100vh - 44px);
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 0;
  padding: 22px;
  scrollbar-color: rgba(0, 33, 68, 0.24) transparent;
  scrollbar-width: thin;
}

.portal-main::-webkit-scrollbar,
.admin-main::-webkit-scrollbar {
  width: 10px;
}

.portal-main::-webkit-scrollbar-thumb,
.admin-main::-webkit-scrollbar-thumb {
  background: rgba(0, 33, 68, 0.22);
  border-radius: 999px;
}

.seller-mode .portal-sidebar {
  display: none;
}

.seller-mode .app-view {
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  padding: 18px;
}

.seller-navbar {
  align-items: center;
  background:
    radial-gradient(circle at 14% 10%, rgba(248, 102, 35, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(0, 33, 68, 0.98), rgba(0, 21, 45, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(0, 33, 68, 0.2);
  color: #fffefd;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 78px;
  overflow: hidden;
  padding: 12px 14px;
  position: relative;
}

.seller-navbar::after {
  background: url("/assets/brand/logo-symbol-white.png") center / contain no-repeat;
  content: "";
  height: 160px;
  opacity: 0.06;
  position: absolute;
  right: 22%;
  top: -48px;
  width: 160px;
}

.seller-navbar-brand,
.seller-navbar-status,
.seller-nav-tabs {
  position: relative;
  z-index: 1;
}

.seller-navbar-brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 190px;
}

.seller-navbar-mark {
  background: url("/assets/brand/logo-symbol-white.png") center / 112% auto no-repeat;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 8px rgba(255, 255, 255, 0.05);
  height: 36px;
  width: 36px;
}

.seller-navbar-brand span:last-child {
  display: grid;
  gap: 2px;
}

.seller-navbar-brand strong {
  color: #fffefd;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.seller-navbar-brand small {
  color: rgba(255, 254, 253, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-nav-tabs {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: flex;
  flex: 1 1 auto;
  gap: 4px;
  justify-content: center;
  min-width: 0;
  padding: 5px;
}

.seller-nav-link {
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: rgba(255, 254, 253, 0.7);
  font-size: 12px;
  font-weight: 950;
  min-height: 40px;
  padding: 0 14px;
  text-align: center;
  white-space: nowrap;
}

.seller-nav-link::after {
  display: none;
}

.seller-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fffefd;
  transform: none;
}

.seller-nav-link.active {
  background: #f86623;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 102, 35, 0.24);
  color: #fffefd;
}

.seller-navbar-status {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 44px;
  padding: 5px 6px 5px 12px;
}

.seller-navbar-status-dot {
  background: #d94a55;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(217, 74, 85, 0.16);
  height: 9px;
  width: 9px;
}

.seller-navbar-status-dot.connected {
  background: #1f9d66;
  box-shadow: 0 0 0 5px rgba(31, 157, 102, 0.18);
}

.seller-navbar-status span:not(.seller-navbar-status-dot) {
  color: rgba(255, 254, 253, 0.76);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.seller-navbar-status button {
  background: rgba(255, 254, 253, 0.94);
  border-radius: 999px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  min-height: 34px;
  padding: 0 12px;
}

.seller-mode .portal-main {
  border-left: 1px solid rgba(188, 205, 226, 0.72);
  border-radius: 22px;
  height: auto;
  min-height: 0;
}

.seller-mode .portal-sidebar {
  background:
    radial-gradient(circle at 18% 18%, rgba(248, 102, 35, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(0, 33, 68, 0.98), rgba(1, 26, 53, 0.96) 58%, rgba(25, 25, 25, 0.98));
}

.seller-mode .portal-main {
  background:
    radial-gradient(circle at 92% 8%, rgba(248, 102, 35, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

.seller-mode .topbar::after {
  background: linear-gradient(90deg, rgba(248, 102, 35, 0.95), rgba(0, 33, 68, 0.72));
}

.seller-mode .tab {
  min-height: 44px;
}

.seller-mode #view-usage .filters {
  display: none;
}

.topbar,
.section-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.topbar {
  border-bottom: 1px solid rgba(188, 205, 226, 0.48);
  margin-bottom: 18px;
  padding-bottom: 16px;
  position: relative;
}

.topbar::after {
  background: linear-gradient(90deg, rgba(0, 33, 68, 0.95), rgba(0, 33, 68, 0.6));
  border-radius: 999px;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.eyebrow {
  color: var(--brand);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.topbar h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.view {
  display: block;
}

.extension-store-banner {
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(248, 102, 35, 0.34), transparent 24%),
    linear-gradient(135deg, #002144 0%, #002144 46%, #f86623 100%);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 33, 68, 0.24);
  color: white;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-bottom: 18px;
  min-height: 116px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-decoration: none;
}

.extension-store-banner::before,
.extension-store-banner::after {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
  position: absolute;
}

.extension-store-banner::before {
  animation: bannerSweep 7s ease-in-out infinite;
  height: 180px;
  right: 11%;
  top: -92px;
  width: 180px;
}

.extension-store-banner::after {
  animation: bannerPulse 3.8s ease-in-out infinite;
  bottom: -36px;
  height: 90px;
  right: -18px;
  width: 90px;
}

.store-banner-orbit {
  animation: bannerFloat 3.6s ease-in-out infinite;
  background:
    url("/assets/brand/logo-symbol-transparent.png") center / 112% auto no-repeat,
    radial-gradient(circle at center, rgba(255, 254, 253, 0.96) 0 62%, rgba(255, 254, 253, 0.42) 63% 100%);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 254, 253, 0.28) inset;
  height: 62px;
  position: relative;
  width: 62px;
  z-index: 1;
}

.store-banner-orbit::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  content: "";
  inset: -7px;
  position: absolute;
}

.store-banner-copy,
.store-banner-actions,
.store-banner-action {
  position: relative;
  z-index: 1;
}

.login-panel::-webkit-scrollbar {
  width: 0;
}

.store-banner-copy {
  display: grid;
  gap: 6px;
}

.store-banner-copy strong {
  font-size: 22px;
  font-weight: 950;
}

.store-banner-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.store-banner-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.store-banner-action {
  background: white;
  border-radius: 12px;
  color: #12428f;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  padding: 13px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.extension-store-banner:hover .store-banner-action {
  transform: translateY(-1px);
}

.dismiss-panel-button {
  align-items: center;
  background: rgba(0, 33, 68, 0.08);
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 30px;
  z-index: 4;
}

.dismiss-panel-button.light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fffefd;
}

.dismiss-panel-button:hover {
  background: var(--brand);
  color: #fffefd;
  transform: translateY(-1px);
}

.dismiss-panel-button.light:hover {
  background: #fffefd;
  color: var(--brand);
}

.floating-extension-download {
  align-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #f86623, #d84f18);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 42px rgba(248, 102, 35, 0.32);
  color: #fffefd;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  position: fixed;
  right: 22px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 70;
}

.floating-extension-review {
  align-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #002144, #123f6f);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  bottom: 86px;
  box-shadow: 0 16px 36px rgba(0, 33, 68, 0.22);
  color: #fffefd;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px 0 10px;
  position: fixed;
  right: 22px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 70;
}

.floating-extension-review::before {
  animation: reviewHintFloat 3.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  background: #fffefd;
  border: 1px solid rgba(188, 205, 226, 0.86);
  border-radius: 999px;
  bottom: calc(100% + 10px);
  box-shadow: 0 16px 34px rgba(0, 33, 68, 0.16);
  color: #002144;
  content: "Enjoying OmniDealer?";
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  padding: 10px 13px;
  pointer-events: none;
  position: absolute;
  right: 0;
  white-space: nowrap;
}

.floating-extension-review::after {
  animation: reviewHintArrow 3.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  background: #fffefd;
  border-bottom: 1px solid rgba(188, 205, 226, 0.86);
  border-right: 1px solid rgba(188, 205, 226, 0.86);
  bottom: calc(100% + 4px);
  content: "";
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 28px;
  transform: rotate(45deg);
  width: 10px;
}

.floating-extension-review .floating-extension-icon {
  align-items: center;
  animation: reviewStarPulse 2.9s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  background: #f86623;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  color: #fffefd;
  display: inline-flex;
  font-size: 16px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}

.floating-extension-label {
  display: inline;
}

.floating-extension-review:hover {
  box-shadow: 0 20px 48px rgba(0, 33, 68, 0.3);
  transform: translateY(-2px);
}

.floating-extension-review:hover::before,
.floating-extension-review:hover::after {
  animation-play-state: paused;
}

.floating-extension-download .floating-extension-icon {
  background:
    url("/assets/brand/logo-symbol-white.png") center / 116% auto no-repeat,
    rgba(0, 33, 68, 0.2);
  border-radius: 999px;
  height: 34px;
  width: 34px;
}

.floating-extension-download:hover {
  box-shadow: 0 22px 54px rgba(248, 102, 35, 0.42);
  transform: translateY(-2px);
}

.metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.metrics article,
.operator-form,
.operator-card,
.table-wrap,
.insight-panel {
  border: 1px solid rgba(188, 205, 226, 0.7);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(43, 69, 102, 0.08);
}

.metrics article {
  padding: 16px;
}

.metrics span {
  color: var(--ink-0);
  display: block;
  font-size: 30px;
  font-weight: 900;
}

.admin-dashboard-grid {
  display: grid;
  gap: 14px;
}

.admin-dashboard-summary-card {
  display: grid;
  gap: 14px;
}

.admin-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-kpi {
  background: rgba(255, 254, 253, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 14px;
}

.admin-kpi span {
  color: var(--ink-0);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.admin-kpi small {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.admin-card {
  border: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.96);
  border-radius: 8px;
  box-shadow: none;
  min-width: 0;
  padding: 16px;
}

.admin-dashboard-columns {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-placeholder-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  place-content: center start;
}

.admin-placeholder-card h2,
.admin-placeholder-card p {
  margin: 0;
}

.admin-placeholder-card p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.admin-session-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-topbar p {
  max-width: 640px;
}

.admin-row {
  align-items: center;
  border-bottom: 1px solid rgba(0, 33, 68, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 0;
}

.admin-row:first-child {
  padding-top: 0;
}

.admin-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-row strong {
  color: var(--ink-0);
  display: block;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}

.admin-row-value {
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--brand-strong) !important;
  padding: 4px 9px;
}

.admin-panel-grid {
  display: grid;
  gap: 12px;
}

.admin-card-wide {
  grid-column: 1 / -1;
}

.admin-table {
  display: grid;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
}

.admin-table-row {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(0, 33, 68, 0.08);
  color: var(--ink-0);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(92px, 0.7fr));
  min-height: 58px;
  padding: 10px 0;
  text-align: left;
  width: 100%;
}

.admin-table-row:last-child {
  border-bottom: 0;
}

.admin-table-row strong {
  color: var(--ink-0);
  display: block;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table-row small,
.admin-table-row span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}

.admin-workspace-row {
  border-radius: 10px;
  padding-inline: 10px;
}

.admin-workspace-row:hover,
.admin-workspace-row.active {
  background: var(--brand-soft);
}

.admin-subscription-row {
  grid-template-columns: minmax(180px, 1.3fr) repeat(5, minmax(96px, 0.7fr)) minmax(220px, 1fr);
}

.admin-audit-row {
  grid-template-columns: minmax(150px, 1fr) minmax(140px, 0.8fr) minmax(160px, 1fr) minmax(180px, 1.4fr) minmax(132px, 0.8fr);
}

.admin-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-toggle-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0;
}

.admin-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(188, 205, 226, 0.7);
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
}

.admin-toggle input {
  box-shadow: none;
  flex: 0 0 auto;
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.admin-action-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-action-row button,
.admin-form-grid button,
.admin-token-row button,
.admin-panel .section-head button {
  border-radius: 12px;
  min-height: 40px;
  padding: 0 12px;
}

.admin-action-row input {
  flex: 1 1 160px;
  min-height: 40px;
}

.admin-view [data-admin-mutates]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-muted {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-danger {
  color: var(--danger);
  font-size: 13px;
  font-weight: 850;
}

.admin-danger-button {
  background: rgba(217, 74, 85, 0.1) !important;
  border-color: rgba(217, 74, 85, 0.26) !important;
  color: var(--danger) !important;
}

.admin-pill {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--brand-strong) !important;
  display: inline-flex;
  font-size: 11px !important;
  font-weight: 900 !important;
  margin-right: 4px;
  min-height: 24px;
  padding: 4px 8px;
  white-space: nowrap;
}

.admin-pill.success {
  background: rgba(31, 157, 102, 0.12);
  color: #14784d !important;
}

.admin-pill.danger {
  background: rgba(217, 74, 85, 0.12);
  color: var(--danger) !important;
}

.admin-token-row {
  border-top: 1px solid rgba(0, 33, 68, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr) auto;
  padding: 12px 0;
}

.admin-token-row:first-of-type {
  border-top: 0;
}

.admin-token-section {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.insight-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.insight-panel {
  min-height: 168px;
  padding: 16px;
}

.last-post-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 240, 255, 0.92));
  display: grid;
  align-content: center;
  gap: 10px;
}

.insight-kicker {
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.last-post-panel strong {
  color: var(--ink-0);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.last-post-panel span:last-child {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.compact-list,
.source-list {
  display: grid;
  gap: 8px;
}

.compact-row,
.source-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.compact-row strong,
.source-row strong {
  color: var(--ink-0);
  display: block;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row span,
.source-row span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}

.source-count {
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--brand-strong) !important;
  padding: 4px 9px;
}

.empty-inline {
  color: var(--ink-2);
  font-size: 13px;
  margin: 0;
}

.section-head {
  margin-bottom: 12px;
}

.section-head.compact {
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 18px;
  font-weight: 900;
}

.section-head p {
  color: var(--ink-2);
  font-size: 13px;
  margin: 4px 0 0;
}

.period-controls,
.filters {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.period-controls button,
.filters button {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(188, 205, 226, 0.76);
  border-radius: 10px;
  color: #21529e;
  font-weight: 850;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
}

.filters button {
  height: 54px;
  min-width: 128px;
}

.period-controls button.active {
  background: var(--brand);
  color: white;
}

.filters label {
  min-width: 220px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid rgba(188, 205, 226, 0.48);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink-2);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: var(--ink-1);
  font-size: 13px;
}

.operator-form,
.operator-card {
  padding: 16px;
}

.operator-toolbar,
.operator-actions,
.operator-code-cell {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-actions {
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.operator-toolbar button,
.operator-actions button,
.operator-code-cell button,
.seller-operator-actions button,
.portal-modal-dialog button {
  background: var(--brand);
  border-radius: 12px;
  color: white;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
}

.operator-toolbar button:first-child,
.operator-actions button.secondary,
.operator-code-cell button,
.seller-operator-actions button.secondary,
.seller-operator-actions .code-icon-button {
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.78);
  color: var(--brand-strong);
}

.operator-code-cell .code-icon-button,
.seller-operator-actions .code-icon-button {
  align-items: center;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  min-height: 38px;
  padding: 0;
  width: 38px;
}

.operator-code-cell .code-icon-button svg,
.seller-operator-actions .code-icon-button svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 18px;
}

.operator-actions button.danger {
  background: #fff3f4;
  border: 1px solid rgba(217, 74, 85, 0.28);
  color: var(--danger);
}

.operator-actions button,
.seller-operator-actions button {
  border-radius: 10px;
  font-size: 12px;
  min-height: 32px;
  padding: 0 10px;
}

.seller-operator-actions button.danger {
  background: #fff3f4;
  border: 1px solid rgba(217, 74, 85, 0.28);
  color: var(--danger);
}

.operators-list,
.members-list {
  overflow-x: auto;
}

.operator-table,
.member-table {
  min-width: 980px;
  width: 100%;
}

.member-table select {
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.78);
  border-radius: 10px;
  color: var(--brand-strong);
  font-weight: 800;
  min-height: 34px;
  padding: 0 10px;
}

.operator-name,
.operator-meta,
.operator-code-preview {
  display: block;
}

.operator-meta,
.operator-code-preview {
  color: var(--ink-2);
  font-size: 13px;
}

.operator-code-preview {
  font-family: Consolas, "SFMono-Regular", monospace;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-chart-panel {
  background:
    radial-gradient(circle at 96% 0%, rgba(248, 102, 35, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.96), rgba(248, 251, 255, 0.92));
  display: grid;
  gap: 14px;
  min-height: 208px;
  overflow: hidden;
  position: relative;
}

.seller-chart-panel::after {
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  content: "";
  height: 116px;
  opacity: 0.035;
  position: absolute;
  right: -34px;
  top: -34px;
  width: 116px;
}

.seller-chart-panel-primary {
  background:
    radial-gradient(circle at 94% 8%, rgba(248, 102, 35, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(0, 33, 68, 0.96), rgba(0, 21, 45, 0.94) 58%, rgba(248, 102, 35, 0.86));
  color: #fffefd;
}

.seller-chart-head {
  display: grid;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.seller-chart-head span {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seller-chart-panel-primary .seller-chart-head span,
.seller-chart-panel-primary .seller-chart-head small {
  color: rgba(255, 254, 253, 0.72);
}

.seller-chart-head strong {
  color: var(--ink-0);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.seller-chart-panel-primary .seller-chart-head strong {
  color: #fffefd;
}

.seller-chart-head small {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.seller-days-without-posting strong {
  font-size: 38px;
}

.seller-days-without-posting.healthy strong {
  color: #fffefd;
}

.seller-days-without-posting.warning strong {
  color: #ffd7bd;
}

.seller-days-without-posting.stale strong {
  color: #ffb15d;
}

.seller-posting-status {
  align-self: end;
  background: rgba(255, 254, 253, 0.12);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.seller-posting-status span {
  color: #fffefd;
  font-size: 18px;
  font-weight: 950;
}

.seller-posting-status em {
  color: rgba(255, 254, 253, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.seller-unposted-list {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.seller-unposted-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 33, 68, 0.08);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 9px 10px;
}

.seller-unposted-row strong,
.seller-unposted-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-unposted-row strong {
  color: var(--ink-0);
  font-size: 12px;
  font-weight: 950;
}

.seller-unposted-row span {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
}

.seller-unposted-row em {
  background: rgba(248, 102, 35, 0.1);
  border-radius: 999px;
  color: #b84b19;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  max-width: 96px;
  overflow: hidden;
  padding: 5px 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.seller-age-buckets {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.seller-age-buckets div {
  background: rgba(0, 33, 68, 0.04);
  border: 1px solid rgba(0, 33, 68, 0.08);
  border-radius: 12px;
  display: grid;
  gap: 5px;
  padding: 8px;
}

.seller-age-buckets span,
.seller-age-buckets strong {
  color: var(--ink-0);
  font-size: 10px;
  font-weight: 950;
}

.seller-age-buckets strong {
  font-size: 17px;
}

.seller-age-buckets em {
  background: rgba(0, 33, 68, 0.1);
  border-radius: 999px;
  display: block;
  height: 5px;
  overflow: hidden;
  position: relative;
}

.seller-age-buckets em::before {
  background: linear-gradient(90deg, #f86623, #ffb15d);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--age-width);
}

.seller-funnel-chart {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.seller-funnel-step {
  display: grid;
  gap: 6px;
}

.seller-funnel-step div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.seller-funnel-step span,
.seller-funnel-step strong {
  color: var(--ink-0);
  font-size: 12px;
  font-weight: 950;
}

.seller-funnel-step strong {
  color: var(--brand);
}

.seller-funnel-step em {
  background: rgba(0, 33, 68, 0.08);
  border-radius: 999px;
  display: block;
  height: 10px;
  overflow: hidden;
  position: relative;
}

.seller-funnel-step em::before {
  background: linear-gradient(90deg, #002144, #f86623);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--funnel-width);
}

.seller-funnel-step.review em::before {
  background: linear-gradient(90deg, #ffb15d, #f86623);
}

.seller-source-performance {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.seller-source-row {
  display: grid;
  gap: 6px;
}

.seller-source-row div {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.seller-source-row strong,
.seller-source-row span {
  color: var(--ink-0);
  font-size: 12px;
  font-weight: 950;
}

.seller-source-row span {
  color: var(--ink-2);
  font-size: 11px;
}

.seller-source-row em {
  background: rgba(0, 33, 68, 0.08);
  border-radius: 999px;
  display: block;
  height: 12px;
  overflow: hidden;
  position: relative;
  width: var(--source-width);
}

.seller-source-row em::before {
  background: rgba(0, 33, 68, 0.2);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.seller-source-row em i {
  background: linear-gradient(90deg, #f86623, #ffb15d);
  border-radius: inherit;
  display: block;
  height: 100%;
  position: relative;
  width: var(--posted-width);
  z-index: 1;
}

.seller-bar-chart {
  align-items: end;
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(auto-fit, minmax(24px, 1fr));
  min-height: 94px;
  position: relative;
  z-index: 1;
}

.seller-bar-item {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-rows: minmax(54px, 1fr) auto;
  justify-items: center;
}

.seller-bar-item span {
  align-self: end;
  background: linear-gradient(180deg, #ffb15d, #f86623);
  border-radius: 999px 999px 6px 6px;
  box-shadow: 0 12px 24px rgba(248, 102, 35, 0.24);
  display: block;
  height: var(--bar-height);
  min-height: 8px;
  width: 100%;
}

.seller-bar-item small {
  color: rgba(255, 254, 253, 0.68);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.seller-source-bars {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.seller-source-bar {
  display: grid;
  gap: 6px;
}

.seller-source-bar div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.seller-source-bar strong,
.seller-source-bar span {
  color: var(--ink-0);
  font-size: 12px;
  font-weight: 900;
}

.seller-source-bar span {
  color: var(--ink-2);
}

.seller-source-bar em {
  background: rgba(0, 33, 68, 0.08);
  border-radius: 999px;
  display: block;
  height: 9px;
  overflow: hidden;
  position: relative;
}

.seller-source-bar em::before {
  background: linear-gradient(90deg, #002144, #f86623);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--source-width);
}

.seller-donut-chart {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.seller-donut-ring {
  align-items: center;
  background:
    radial-gradient(circle, #fffefd 0 54%, transparent 55%),
    conic-gradient(#f86623 var(--donut-value), rgba(0, 33, 68, 0.1) 0);
  border-radius: 50%;
  display: grid;
  height: 98px;
  justify-items: center;
  width: 98px;
}

.seller-donut-ring span {
  color: var(--brand);
  font-size: 20px;
  font-weight: 950;
}

.seller-donut-legend {
  display: grid;
  gap: 8px;
}

.seller-donut-legend span {
  align-items: center;
  color: var(--ink-1);
  display: flex;
  font-size: 12px;
  font-weight: 850;
  gap: 8px;
}

.seller-donut-legend i {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.seller-donut-legend i.success {
  background: #f86623;
}

.seller-donut-legend i.warning {
  background: rgba(0, 33, 68, 0.16);
}

.seller-readiness-chart {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.seller-readiness-chart div {
  align-items: center;
  background: rgba(0, 33, 68, 0.05);
  border: 1px solid rgba(0, 33, 68, 0.08);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
}

.seller-readiness-chart div.ready {
  background: rgba(248, 102, 35, 0.1);
  border-color: rgba(248, 102, 35, 0.2);
}

.seller-readiness-chart span,
.seller-readiness-chart strong {
  color: var(--ink-0);
  font-size: 12px;
  font-weight: 900;
}

.seller-readiness-chart strong {
  color: var(--ink-2);
}

.seller-readiness-chart .ready strong {
  color: #b84b19;
}

.seller-flow {
  align-items: center;
  background:
    radial-gradient(circle at 88% 0%, rgba(248, 102, 35, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.96), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 33, 68, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  margin-bottom: 16px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.seller-flow::before {
  background: url("/assets/brand/logo-symbol-transparent.png") center / contain no-repeat;
  content: "";
  height: 180px;
  opacity: 0.06;
  position: absolute;
  right: -42px;
  top: -48px;
  width: 180px;
}

.seller-flow-copy,
.seller-flow-steps {
  position: relative;
  z-index: 1;
}

.seller-flow-copy h2 {
  color: var(--ink-0);
  font-size: 24px;
  line-height: 1.12;
  margin: 0;
}

.seller-flow-copy p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 56ch;
}

.seller-flow-steps {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seller-flow-steps article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 33, 68, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 14px;
  position: relative;
}

.seller-flow-steps article::after {
  background: rgba(0, 33, 68, 0.12);
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: -9px;
  top: 24px;
  width: 8px;
}

.seller-flow-steps article:last-child::after {
  display: none;
}

.seller-flow-steps span {
  color: rgba(0, 33, 68, 0.38);
  font-size: 11px;
  font-weight: 950;
}

.seller-flow-steps strong {
  color: var(--ink-0);
  font-size: 15px;
}

.seller-flow-steps small {
  align-self: end;
  background: rgba(0, 33, 68, 0.08);
  border-radius: 999px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  justify-self: start;
  padding: 6px 9px;
}

.seller-flow-steps article.ready {
  border-color: rgba(31, 157, 102, 0.28);
  box-shadow: inset 0 0 0 1px rgba(31, 157, 102, 0.05);
}

.seller-flow-steps article.ready small {
  background: rgba(31, 157, 102, 0.12);
  color: #14704a;
}

.seller-flow-steps article.needs-action {
  border-color: rgba(248, 102, 35, 0.2);
}

.seller-flow-steps article.needs-action small {
  background: rgba(248, 102, 35, 0.12);
  color: #b84b19;
}

.portal-modal {
  align-items: center;
  background: rgba(16, 33, 59, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 60;
}

.portal-modal-dialog {
  background: #fff;
  border: 1px solid rgba(188, 205, 226, 0.86);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(8, 28, 58, 0.28);
  display: grid;
  gap: 14px;
  max-width: 460px;
  padding: 18px;
  width: min(460px, 100%);
}

.code-key-dialog {
  max-width: 520px;
  width: min(520px, 100%);
}

.code-key-modal-value {
  background: linear-gradient(135deg, rgba(231, 240, 255, 0.95), rgba(255, 247, 231, 0.8));
  border: 1px solid rgba(0, 33, 68, 0.18);
  border-radius: 14px;
  color: var(--brand-strong);
  display: block;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 14px;
  text-align: center;
  overflow-wrap: anywhere;
}

.settings-key-row {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) max-content;
}

.settings-key-status {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.settings-key-status span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.settings-key-status button.secondary {
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.78);
  color: var(--brand-strong);
  min-height: 42px;
}

.classroom-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.classroom-head button,
.playbook-card button,
.onboarding-actions button {
  border-radius: 10px;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
}

.classroom-head button,
.playbook-card button,
.onboarding-actions button[data-onboarding-action="next"],
.onboarding-actions button[data-onboarding-action="finish"] {
  background: var(--brand);
  color: white;
}

.classroom-hero {
  align-items: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(248, 102, 35, 0.28), transparent 24%),
    linear-gradient(135deg, #00152d 0%, #002144 58%, #191919 100%);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 33, 68, 0.22);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 260px;
  margin-bottom: 16px;
  min-height: 178px;
  overflow: hidden;
  padding: 20px;
}

.classroom-hero-copy {
  display: grid;
  gap: 8px;
}

.classroom-hero-copy h3 {
  color: #fffefd;
  font-size: 24px;
  line-height: 1.12;
  margin: 0;
  max-width: 24ch;
}

.classroom-hero-copy p {
  color: rgba(255, 254, 253, 0.72);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
}

.classroom-hero-motion {
  height: 142px;
  min-width: 0;
  position: relative;
}

.classroom-hero-motion span,
.onboarding-motion span {
  position: absolute;
}

.classroom-pulse {
  animation: classroomPulse 4.8s ease-in-out infinite;
  border-radius: 999px;
  opacity: 0.72;
}

.classroom-pulse-one {
  background: rgba(255, 254, 253, 0.1);
  height: 130px;
  right: 22px;
  top: 4px;
  width: 130px;
}

.classroom-pulse-two {
  animation-delay: -1.6s;
  background: rgba(248, 102, 35, 0.18);
  height: 96px;
  left: 12px;
  top: 24px;
  width: 96px;
}

.classroom-window,
.classroom-extension {
  background: rgba(255, 254, 253, 0.92);
  border: 1px solid rgba(255, 254, 253, 0.18);
  box-shadow: 0 14px 24px rgba(0, 12, 28, 0.18);
}

.classroom-window {
  border-radius: 14px;
  height: 92px;
  left: 18px;
  top: 26px;
  width: 120px;
}

.classroom-window::before,
.classroom-extension::before {
  background: var(--brand-soft);
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 14px;
  position: absolute;
  right: 34px;
  top: 14px;
}

.classroom-window::after {
  background:
    linear-gradient(90deg, var(--accent) 0 36%, transparent 36% 44%, rgba(0, 33, 68, 0.72) 44% 66%, transparent 66% 74%, var(--accent) 74%);
  border-radius: 999px;
  bottom: 18px;
  content: "";
  height: 28px;
  left: 14px;
  position: absolute;
  right: 14px;
}

.classroom-extension {
  border-radius: 12px;
  height: 102px;
  right: 18px;
  top: 18px;
  width: 82px;
}

.classroom-extension::after {
  background:
    linear-gradient(180deg, var(--brand) 0 24%, transparent 24% 38%, rgba(0, 33, 68, 0.18) 38% 62%, transparent 62% 76%, var(--accent) 76%);
  border-radius: 8px;
  bottom: 14px;
  content: "";
  left: 14px;
  position: absolute;
  right: 14px;
  top: 34px;
}

.classroom-route {
  animation: classroomRoute 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  height: 4px;
  left: 126px;
  opacity: 0;
  top: 62px;
  transform-origin: left center;
  width: 78px;
}

.classroom-route-two {
  animation-delay: 0.7s;
  top: 86px;
}

.classroom-check {
  animation: classroomCheck 4.8s ease-in-out infinite;
  background: var(--accent);
  border-radius: 999px;
  bottom: 14px;
  box-shadow: 0 10px 22px rgba(248, 102, 35, 0.22);
  height: 34px;
  right: 76px;
  width: 34px;
}

.classroom-check::before {
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  content: "";
  height: 8px;
  left: 9px;
  position: absolute;
  top: 10px;
  transform: rotate(-45deg);
  width: 15px;
}

.classroom-readiness {
  background: rgba(255, 254, 253, 0.9);
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 33, 68, 0.08);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  margin-bottom: 16px;
  padding: 16px;
}

.readiness-copy {
  align-content: center;
  display: grid;
  gap: 8px;
}

.readiness-copy h3 {
  color: var(--ink-1);
  font-size: 20px;
  line-height: 1.18;
  margin: 0;
}

.readiness-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.readiness-item {
  background: rgba(0, 33, 68, 0.04);
  border: 1px solid rgba(0, 33, 68, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 12px;
}

.readiness-item.ready {
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 102, 35, 0.13), transparent 45%),
    rgba(255, 254, 253, 0.98);
  border-color: rgba(248, 102, 35, 0.34);
}

.readiness-state {
  background: rgba(0, 33, 68, 0.08);
  border-radius: 999px;
  color: rgba(0, 33, 68, 0.68);
  font-size: 10px;
  font-weight: 950;
  justify-self: start;
  padding: 5px 8px;
  text-transform: uppercase;
}

.readiness-item.ready .readiness-state {
  background: rgba(248, 102, 35, 0.16);
  color: var(--accent);
}

.readiness-item strong {
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 950;
}

.readiness-item small {
  color: rgba(0, 33, 68, 0.62);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
}

.playbook-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.playbook-main {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.playbook-card,
.troubleshooting-panel {
  background: rgba(255, 254, 253, 0.92);
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 33, 68, 0.08);
  display: grid;
  gap: 12px;
  padding: 16px;
}

.playbook-card.primary {
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 102, 35, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 254, 253, 0.98), rgba(247, 243, 238, 0.96));
  border-color: rgba(248, 102, 35, 0.28);
  grid-column: 1 / -1;
}

.playbook-kicker {
  background: rgba(248, 102, 35, 0.12);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  justify-self: start;
  padding: 6px 10px;
  text-transform: uppercase;
}

.playbook-card h3,
.troubleshooting-panel h3 {
  color: var(--ink-1);
  font-size: 20px;
  line-height: 1.18;
  margin: 0;
}

.playbook-card p,
.playbook-card li,
.troubleshooting-panel p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.playbook-card p,
.playbook-card ol,
.troubleshooting-panel p {
  margin: 0;
}

.playbook-card ol {
  display: grid;
  gap: 6px;
  padding-left: 20px;
}

.playbook-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.playbook-actions button + button {
  background: rgba(0, 33, 68, 0.06);
  border: 1px solid rgba(0, 33, 68, 0.12);
  color: var(--ink-1);
}

.troubleshooting-panel {
  align-content: start;
  position: sticky;
  top: 18px;
}

.troubleshooting-panel details {
  border-top: 1px solid rgba(0, 33, 68, 0.1);
  padding-top: 10px;
}

.troubleshooting-panel summary {
  color: var(--ink-1);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
}

.troubleshooting-panel p {
  margin-top: 8px;
}

.onboarding-modal {
  align-items: center;
  background: rgba(16, 33, 59, 0.58);
  display: flex;
  bottom: 0;
  justify-content: center;
  left: 274px;
  padding: 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

body.portal-onboarding-stage {
  height: 100dvh;
  overflow: hidden;
}

body.portal-onboarding-stage .app-view {
  display: block;
  height: 100dvh;
  overflow: hidden;
  padding: 0;
}

body.portal-onboarding-stage .portal-sidebar,
body.portal-onboarding-stage .portal-main {
  display: none;
}

body.portal-onboarding-stage .onboarding-modal {
  background:
    radial-gradient(circle at 12% 12%, rgba(248, 102, 35, 0.22), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255, 254, 253, 0.1), transparent 24%),
    linear-gradient(135deg, #00152d 0%, #002144 58%, #191919 100%);
  left: 0;
}

body.portal-onboarding-stage .onboarding-dialog {
  box-shadow: 0 34px 92px rgba(0, 12, 28, 0.38);
  max-width: 1080px;
  width: min(1080px, calc(100vw - 36px));
}

.onboarding-dialog {
  background:
    radial-gradient(circle at 94% 10%, rgba(248, 102, 35, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.99), rgba(247, 243, 238, 0.98));
  border: 1px solid rgba(255, 254, 253, 0.28);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(8, 28, 58, 0.28);
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  height: min(720px, calc(100dvh - 36px));
  max-height: calc(100dvh - 36px);
  max-width: 1080px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  width: min(1080px, 100%);
}

.onboarding-dialog::before {
  background:
    repeating-linear-gradient(90deg, rgba(0, 33, 68, 0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(0, 33, 68, 0.03) 0 1px, transparent 1px 38px);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.onboarding-dialog > * {
  position: relative;
  z-index: 1;
}

.onboarding-brandbar {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 33, 68, 0.96), rgba(0, 21, 45, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(248, 102, 35, 0.22), transparent 26%);
  border: 1px solid rgba(0, 33, 68, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 33, 68, 0.16);
  display: flex;
  gap: 12px;
  min-height: 66px;
  padding: 12px 16px;
}

.onboarding-brand-mark {
  background: url("/assets/brand/logo-symbol-white.png") center / 112% auto no-repeat;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 254, 253, 0.12),
    0 0 0 8px rgba(255, 254, 253, 0.045);
  flex: 0 0 auto;
  height: 36px;
  width: 36px;
}

.onboarding-brand-copy {
  display: grid;
  gap: 1px;
}

.onboarding-brand-copy strong {
  color: #fffefd;
  font-size: 16px;
  font-weight: 950;
}

.onboarding-brand-copy small {
  color: rgba(255, 254, 253, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.onboarding-progress {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(130px, 1fr) auto;
}

.onboarding-progress-label,
.onboarding-progress-count {
  color: rgba(0, 33, 68, 0.62);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.onboarding-progress-track {
  background: rgba(0, 33, 68, 0.1);
  border-radius: 999px;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  height: 8px;
  overflow: hidden;
  padding: 2px;
}

.onboarding-progress-track span {
  background: rgba(0, 33, 68, 0.08);
  border-radius: inherit;
}

.onboarding-progress-track span.active {
  background: linear-gradient(90deg, #002144, #f86623);
}

.onboarding-stepper {
  counter-reset: onboarding-step;
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.onboarding-stepper span {
  background: rgba(255, 254, 253, 0.76);
  border: 1px solid rgba(0, 33, 68, 0.14);
  border-radius: 14px;
  color: rgba(0, 33, 68, 0.84);
  display: grid;
  font-size: 11px;
  font-weight: 950;
  gap: 1px;
  height: 42px;
  place-items: center;
}

.onboarding-stepper span::before {
  content: counter(onboarding-step);
  counter-increment: onboarding-step;
}

.onboarding-stepper span::after {
  color: rgba(0, 33, 68, 0.48);
  content: attr(data-step-label);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-stepper span.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(0, 33, 68, 0.18);
  color: #fffefd;
}

.onboarding-stepper span.active::after {
  color: rgba(255, 254, 253, 0.68);
}

.onboarding-panel {
  display: none;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.onboarding-panel.active {
  display: grid;
}

.onboarding-modal:not(.hidden) .onboarding-panel:not(.active) {
  display: none;
}

.onboarding-copy {
  align-content: center;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.onboarding-copy h2 {
  color: #002144;
  font-size: 32px;
  font-weight: 950;
  line-height: 1.04;
  margin: 0;
  max-width: 19ch;
}

.onboarding-copy p {
  color: rgba(0, 33, 68, 0.74);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 58ch;
}

.onboarding-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.onboarding-copy li {
  color: rgba(0, 33, 68, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.onboarding-task,
.onboarding-inline-form,
.onboarding-code-workflow {
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 33, 68, 0.08);
  display: grid;
  gap: 10px;
  padding: 14px;
}

.account-type-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.account-type-card {
  background: rgba(255, 254, 253, 0.86);
  border: 1px solid rgba(0, 33, 68, 0.14);
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-type-card:has(input:checked) {
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 102, 35, 0.12), transparent 42%),
    rgba(255, 254, 253, 0.94);
  border-color: rgba(248, 102, 35, 0.58);
  box-shadow: 0 18px 38px rgba(0, 33, 68, 0.14);
  transform: translateY(-1px);
}

.account-type-card input {
  accent-color: var(--accent);
  height: 18px;
  margin: 0;
  width: 18px;
}

.account-type-card strong {
  color: var(--ink-0);
  font-size: 14px;
  font-weight: 950;
}

.account-type-card span {
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1.45;
}

.workspace-setup-form {
  background: rgba(255, 254, 253, 0.9);
  border-color: rgba(0, 33, 68, 0.12);
  gap: 8px;
  padding: 10px 12px;
}

.workspace-setup-form input,
.workspace-setup-form button {
  min-height: 38px;
}

.onboarding-task {
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.onboarding-task span,
.setup-status {
  color: rgba(0, 33, 68, 0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.onboarding-task button,
.onboarding-inline-form button,
.onboarding-code-workflow button {
  background: linear-gradient(135deg, #002144, #00152d);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 33, 68, 0.18);
  color: #fffefd;
  font-size: 13px;
  font-weight: 950;
  min-height: 42px;
  padding: 0 14px;
}

.onboarding-task button + button,
.onboarding-code-workflow .setup-code-box button {
  background: #fffefd;
  border: 1px solid rgba(0, 33, 68, 0.16);
  box-shadow: none;
  color: var(--brand-strong);
}

.onboarding-inline-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.onboarding-inline-form label,
.onboarding-inline-form .setup-status {
  grid-column: 1 / -1;
}

.onboarding-inline-form input {
  min-height: 42px;
}

.setup-code-box {
  align-items: center;
  background: rgba(255, 254, 253, 0.96);
  border: 1px solid rgba(248, 102, 35, 0.34);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) max-content;
  padding: 10px;
}

.setup-code-box span {
  color: var(--ink-0);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.seller-operator-panel {
  background:
    radial-gradient(circle at top right, rgba(248, 102, 35, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.92));
  border: 1px solid rgba(0, 33, 68, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(16, 33, 59, 0.08);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.seller-operator-panel h3 {
  color: var(--ink-0);
  font-size: 22px;
  margin: 0;
}

.seller-operator-panel p {
  color: var(--ink-2);
  margin: 0;
}

.seller-operator-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seller-operator-metric {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 33, 68, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.seller-operator-metric span {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-operator-metric strong,
.seller-operator-metric code {
  color: var(--ink-0);
  font-size: 14px;
  font-weight: 950;
}

.seller-operator-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-operator-actions button {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .account-type-grid,
  .seller-operator-grid {
    grid-template-columns: 1fr;
  }
}

.onboarding-motion {
  align-self: stretch;
  background:
    radial-gradient(circle at 86% 12%, rgba(248, 102, 35, 0.2), transparent 28%),
    linear-gradient(145deg, #00152d, #002144 58%, #191919),
    repeating-linear-gradient(90deg, rgba(255, 254, 253, 0.05) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(0, 33, 68, 0.18);
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.onboarding-motion::before {
  background:
    url("/assets/brand/logo-symbol-white.png") center / contain no-repeat,
    radial-gradient(circle, rgba(255, 254, 253, 0.1), transparent 62%);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  opacity: 0.16;
  right: -58px;
  top: -56px;
  width: 220px;
}

.onboarding-actions {
  align-items: center;
  border-top: 1px solid rgba(0, 33, 68, 0.1);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 14px;
}

.onboarding-actions button {
  background: rgba(255, 254, 253, 0.86);
  border: 1px solid rgba(0, 33, 68, 0.14);
  color: #002144;
  min-height: 42px;
  padding-inline: 18px;
}

.onboarding-actions button[data-onboarding-action="next"],
.onboarding-actions button[data-onboarding-action="finish"] {
  background: linear-gradient(135deg, #f86623, #ff8e55);
  border-color: rgba(248, 102, 35, 0.54);
  box-shadow: 0 14px 28px rgba(248, 102, 35, 0.22);
  color: #fffefd;
}

.onboarding-actions button:disabled {
  background: rgba(0, 33, 68, 0.06);
  box-shadow: none;
  color: rgba(0, 33, 68, 0.38);
  cursor: not-allowed;
  opacity: 0.68;
}

.motion-node {
  animation: motionFloat 4.8s ease-in-out infinite;
  background: rgba(255, 254, 253, 0.94);
  border: 1px solid rgba(255, 254, 253, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
  height: 84px;
  width: 110px;
}

.motion-node::before {
  background: rgba(0, 33, 68, 0.16);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 14px;
  position: absolute;
  right: 26px;
  top: 16px;
}

.motion-node::after {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 999px;
  bottom: 18px;
  content: "";
  height: 28px;
  left: 14px;
  position: absolute;
  right: 14px;
}

.motion-node-portal {
  left: 24px;
  top: 52px;
}

.motion-node-extension {
  animation-delay: -1.2s;
  right: 28px;
  top: 116px;
}

.motion-node-market {
  animation-delay: -2.2s;
  bottom: 38px;
  left: 74px;
}

.motion-link {
  animation: motionRoute 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  height: 4px;
  opacity: 0;
  transform-origin: left center;
}

.motion-link-one {
  left: 126px;
  top: 108px;
  transform: rotate(18deg);
  width: 132px;
}

.motion-link-two {
  bottom: 108px;
  left: 156px;
  transform: rotate(-30deg);
  width: 112px;
}

.motion-dot {
  animation: motionDot 4.8s ease-in-out infinite;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(248, 102, 35, 0.42);
  height: 12px;
  opacity: 0;
  width: 12px;
}

.motion-dot-one {
  left: 150px;
  top: 104px;
}

.motion-dot-two {
  animation-delay: 0.9s;
  bottom: 106px;
  left: 170px;
}

.browser-frame,
.store-tile,
.vehicle-page,
.listing-card,
.facebook-card,
.chart-card {
  background: rgba(255, 254, 253, 0.94);
  border: 1px solid rgba(255, 254, 253, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
}

.browser-frame {
  height: 190px;
  left: 34px;
  right: 34px;
  top: 50px;
}

.browser-frame::before {
  background:
    radial-gradient(circle, var(--danger) 0 4px, transparent 5px),
    radial-gradient(circle at 20px 50%, var(--warning) 0 4px, transparent 5px),
    radial-gradient(circle at 36px 50%, var(--accent) 0 4px, transparent 5px);
  content: "";
  height: 20px;
  left: 14px;
  position: absolute;
  top: 12px;
  width: 48px;
}

.store-tile {
  animation: motionPop 4.8s ease-in-out infinite;
  height: 94px;
  left: 64px;
  top: 96px;
  width: 120px;
}

.install-button {
  animation: motionClick 4.8s ease-in-out infinite;
  background: var(--brand);
  border-radius: 999px;
  height: 34px;
  right: 62px;
  top: 126px;
  width: 96px;
}

.pin-icon {
  animation: pinDrop 4.8s ease-in-out infinite;
  background: var(--accent);
  border-radius: 999px 999px 999px 4px;
  height: 34px;
  right: 44px;
  top: 48px;
  transform: rotate(-45deg);
  width: 34px;
}

.download-line,
.post-beam,
.connect-line {
  animation: motionRoute 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  height: 4px;
  opacity: 0;
}

.download-line {
  left: 138px;
  right: 108px;
  top: 176px;
}

.operator-avatar {
  animation: motionFloat 4.8s ease-in-out infinite;
  background:
    radial-gradient(circle at 50% 28%, white 0 17px, transparent 18px),
    linear-gradient(180deg, var(--brand) 0 52%, var(--brand-soft) 52%);
  border-radius: 999px 999px 22px 22px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
  height: 108px;
  width: 82px;
}

.operator-avatar-one {
  left: 48px;
  top: 84px;
}

.operator-avatar-two {
  animation-delay: -1.1s;
  right: 48px;
  top: 102px;
}

.operator-form-card {
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.82);
  border-radius: 14px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
  height: 128px;
  left: 50%;
  top: 62px;
  transform: translateX(-50%);
  width: 118px;
}

.operator-form-card::before,
.operator-form-card::after,
.sidebar-input,
.activity-row {
  background: var(--brand-soft);
  border-radius: 999px;
  content: "";
}

.operator-form-card::before {
  height: 10px;
  left: 14px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.operator-form-card::after {
  height: 36px;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 52px;
}

.operator-plus,
.operator-check,
.connect-badge {
  animation: motionPop 4.8s ease-in-out infinite;
  border-radius: 999px;
  display: grid;
  height: 38px;
  place-items: center;
  width: 38px;
}

.operator-plus {
  background: var(--brand);
  color: white;
  left: 50%;
  margin-left: -19px;
  top: 206px;
}

.operator-plus::before,
.operator-plus::after {
  background: white;
  border-radius: 999px;
  content: "";
  height: 4px;
  position: absolute;
  width: 18px;
}

.operator-plus::after {
  transform: rotate(90deg);
}

.operator-check,
.connect-badge {
  background: var(--success);
  bottom: 44px;
  right: 62px;
}

.operator-check::before,
.connect-badge::before {
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  content: "";
  height: 8px;
  left: 10px;
  position: absolute;
  top: 11px;
  transform: rotate(-45deg);
  width: 16px;
}

.key-card {
  animation: motionFloat 4.8s ease-in-out infinite;
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.82);
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
  height: 148px;
  left: 48px;
  top: 84px;
  width: 212px;
}

.key-card::before {
  background: var(--brand-soft);
  border-radius: 999px;
  content: "";
  height: 12px;
  left: 18px;
  position: absolute;
  right: 42px;
  top: 22px;
}

.key-token {
  animation: tokenReveal 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, var(--brand-soft), white);
  border: 1px dashed rgba(0, 33, 68, 0.36);
  border-radius: 10px;
  height: 42px;
  left: 74px;
  top: 144px;
  width: 158px;
}

.key-copy {
  animation: motionClick 4.8s ease-in-out infinite;
  background: var(--brand);
  border-radius: 999px;
  height: 32px;
  left: 108px;
  top: 196px;
  width: 90px;
}

.key-lock {
  background: var(--accent);
  border-radius: 8px;
  height: 30px;
  right: 54px;
  top: 72px;
  width: 34px;
}

.key-lock::before {
  border: 4px solid var(--accent);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  height: 20px;
  left: 5px;
  position: absolute;
  top: -16px;
  width: 16px;
}

.key-spark {
  animation: classroomCheck 4.8s ease-in-out infinite;
  background: var(--success);
  border-radius: 999px;
  height: 18px;
  right: 98px;
  top: 116px;
  width: 18px;
}

.sidebar-panel {
  animation: motionFloat 4.8s ease-in-out infinite;
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.82);
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(43, 69, 102, 0.12);
  height: 210px;
  right: 46px;
  top: 50px;
  width: 136px;
}

.sidebar-panel::before {
  background: var(--brand);
  border-radius: 999px;
  content: "";
  height: 34px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 24px;
}

.sidebar-input {
  height: 36px;
  left: 22px;
  right: 22px;
  top: 86px;
}

.sidebar-button {
  animation: motionClick 4.8s ease-in-out infinite;
  background: var(--success);
  border-radius: 999px;
  height: 34px;
  left: 22px;
  right: 22px;
  top: 142px;
}

.connect-line {
  left: 70px;
  right: 170px;
  top: 154px;
}

.connect-badge {
  left: 54px;
  top: 136px;
}

.vehicle-page {
  height: 220px;
  left: 38px;
  right: 38px;
  top: 44px;
}

.vehicle-page::before {
  background: var(--brand-soft);
  border-radius: 999px;
  content: "";
  height: 12px;
  left: 18px;
  position: absolute;
  right: 90px;
  top: 18px;
}

.vehicle-photo {
  background:
    radial-gradient(circle at 68% 48%, rgba(248, 102, 35, 0.82) 0 13px, transparent 14px),
    linear-gradient(135deg, rgba(0, 33, 68, 0.18), rgba(31, 157, 102, 0.16));
  border-radius: 14px;
  height: 96px;
  left: 60px;
  right: 60px;
  top: 88px;
}

.scan-line {
  animation: scanVehicle 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  height: 4px;
  left: 54px;
  right: 54px;
  top: 82px;
}

.data-chip {
  animation: motionPop 4.8s ease-in-out infinite;
  background: white;
  border: 1px solid rgba(188, 205, 226, 0.82);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(43, 69, 102, 0.1);
  height: 30px;
  width: 86px;
}

.data-chip-one {
  bottom: 72px;
  left: 56px;
}

.data-chip-two {
  animation-delay: 0.35s;
  bottom: 42px;
  left: 126px;
}

.data-chip-three {
  animation-delay: 0.7s;
  bottom: 72px;
  right: 58px;
}

.listing-card,
.facebook-card {
  height: 170px;
  top: 76px;
  width: 130px;
}

.listing-card {
  animation: motionFloat 4.8s ease-in-out infinite;
  left: 36px;
}

.facebook-card {
  animation: motionFloat 4.8s ease-in-out infinite;
  animation-delay: -1s;
  right: 36px;
}

.listing-card::before,
.facebook-card::before {
  background: var(--brand-soft);
  border-radius: 12px;
  content: "";
  height: 68px;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 18px;
}

.listing-card::after,
.facebook-card::after {
  background: linear-gradient(180deg, var(--ink-2) 0 18%, transparent 18% 36%, var(--ink-2) 36% 54%, transparent 54% 72%, var(--brand) 72%);
  border-radius: 999px;
  bottom: 18px;
  content: "";
  left: 16px;
  opacity: 0.34;
  position: absolute;
  right: 16px;
  top: 104px;
}

.post-beam {
  left: 160px;
  right: 160px;
  top: 158px;
}

.post-packet {
  animation: postPacket 4.8s ease-in-out infinite;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(248, 102, 35, 0.42);
  height: 12px;
  left: 160px;
  top: 154px;
  width: 12px;
}

.post-status {
  animation: motionPop 4.8s ease-in-out infinite;
  background: var(--success);
  border-radius: 999px;
  bottom: 44px;
  height: 34px;
  left: 50%;
  margin-left: -56px;
  width: 112px;
}

.motion-track {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 245, 255, 0.8)),
    repeating-linear-gradient(0deg, rgba(0, 33, 68, 0.05) 0 1px, transparent 1px 32px);
}

.chart-card {
  height: 206px;
  left: 44px;
  right: 44px;
  top: 52px;
}

.chart-card::before {
  background: var(--brand-soft);
  border-radius: 999px;
  content: "";
  height: 12px;
  left: 20px;
  position: absolute;
  right: 118px;
  top: 18px;
}

.chart-bar {
  animation: barGrow 4.8s ease-in-out infinite;
  background: linear-gradient(180deg, var(--brand), var(--success));
  border-radius: 999px 999px 4px 4px;
  bottom: 96px;
  width: 34px;
}

.chart-bar-one {
  height: 74px;
  left: 92px;
}

.chart-bar-two {
  animation-delay: 0.2s;
  height: 104px;
  left: 146px;
}

.chart-bar-three {
  animation-delay: 0.4s;
  height: 58px;
  left: 200px;
}

.activity-row {
  animation: activitySlide 4.8s ease-in-out infinite;
  height: 14px;
  left: 76px;
  right: 76px;
}

.activity-row-one {
  bottom: 74px;
}

.activity-row-two {
  animation-delay: 0.35s;
  bottom: 48px;
}

.status-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
}

.status-pill.active {
  background: rgba(225, 244, 236, 0.94);
  color: #167f52;
}

.status-pill.at_risk {
  background: rgba(255, 243, 224, 0.98);
  color: #aa6b00;
}

.status-pill.inactive {
  background: rgba(255, 237, 239, 0.96);
  color: #b43a45;
}

.settings-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-grid article {
  border: 1px solid rgba(188, 205, 226, 0.7);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(43, 69, 102, 0.08);
  padding: 16px;
}

.settings-grid h3 {
  margin: 0 0 10px;
}

.settings-grid p {
  color: var(--ink-1);
  margin: 8px 0;
}

.settings-card-wide {
  grid-column: 1 / -1;
}

.settings-card-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.settings-card-head h3 {
  margin-bottom: 4px;
}

.settings-card-head p {
  margin: 0;
  max-width: 620px;
}

.settings-pill {
  background: rgba(0, 33, 68, 0.1);
  border: 1px solid rgba(0, 33, 68, 0.16);
  border-radius: 999px;
  color: var(--brand);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.settings-form {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
}

.settings-form button {
  align-self: end;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border-radius: 16px;
  color: white;
  font-weight: 950;
  min-height: 54px;
  padding: 0 18px;
  box-shadow: var(--shadow-sm);
}

.settings-check {
  align-items: center;
  background: rgba(231, 240, 255, 0.68);
  border: 1px solid rgba(0, 33, 68, 0.14);
  border-radius: 16px;
  display: flex;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
}

.settings-check input {
  box-shadow: none;
  min-height: 0;
  width: auto;
}

@keyframes classroomPulse {
  0%,
  100% {
    opacity: 0.54;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.06);
  }
}

@keyframes classroomRoute {
  0%,
  28% {
    opacity: 0;
    transform: scaleX(0.18);
  }

  44%,
  74% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes classroomCheck {
  0%,
  46% {
    opacity: 0;
    transform: translateY(8px) scale(0.82);
  }

  62%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes motionFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes motionRoute {
  0%,
  24% {
    opacity: 0;
    transform: scaleX(0.18);
  }

  42%,
  76% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes motionDot {
  0%,
  24% {
    opacity: 0;
    transform: translateX(0) scale(0.72);
  }

  42%,
  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(96px) scale(1);
  }
}

@keyframes motionPop {
  0%,
  38% {
    opacity: 0;
    transform: translateY(8px) scale(0.9);
  }

  56%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pinDrop {
  0%,
  34% {
    opacity: 0;
    transform: translateY(-14px) rotate(-45deg) scale(0.82);
  }

  56%,
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-45deg) scale(1);
  }
}

@keyframes tokenReveal {
  0%,
  32% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  52%,
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes scanVehicle {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  20%,
  74% {
    opacity: 1;
  }

  82% {
    opacity: 0;
    transform: translateY(108px);
  }
}

@keyframes postPacket {
  0%,
  34% {
    opacity: 0;
    transform: translateX(0) scale(0.78);
  }

  48%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120px) scale(1);
  }
}

@keyframes barGrow {
  0%,
  100% {
    transform: scaleY(0.72);
    transform-origin: bottom center;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom center;
  }
}

@keyframes activitySlide {
  0%,
  24% {
    opacity: 0;
    transform: translateX(-12px);
  }

  42%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bannerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(5deg);
  }
}

@keyframes bannerSweep {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(34px) scale(1.08);
  }
}

@keyframes bannerPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.16);
  }
}

@keyframes sidebarAurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes loginDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(28px, -18px, 0) scale(1.06);
  }
}

@keyframes loginMarkFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes loginOrangeAura {
  0%,
  100% {
    transform: translate3d(-22px, -18px, 0) scale(0.84);
  }

  45% {
    transform: translate3d(18px, 10px, 0) scale(0.98);
  }

  72% {
    transform: translate3d(-4px, 22px, 0) scale(0.9);
  }
}

@keyframes brandLoaderMark {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.015);
  }
}

@keyframes brandLoaderLine {
  0% {
    transform: translateX(-70%) scaleX(0.42);
  }

  52% {
    transform: translateX(30%) scaleX(0.72);
  }

  100% {
    transform: translateX(135%) scaleX(0.42);
  }
}

@keyframes brandLoaderOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -16px, 0) scale(1.05);
  }
}

@keyframes sceneGarage {
  0%,
  32.9% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}

@keyframes sceneAutomation {
  0%,
  32.9% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  33%,
  65.9% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  66%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}

@keyframes sceneSold {
  0%,
  65.9% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  66%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timerSegmentOne {
  0% {
    transform: scaleX(0);
  }

  31%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes timerSegmentTwo {
  0%,
  33% {
    transform: scaleX(0);
  }

  64%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes timerSegmentThree {
  0%,
  66% {
    transform: scaleX(0);
  }

  97%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes garageCarPulse {
  0%,
  100% {
    filter: saturate(0.75);
    transform: translateX(-50%) translateY(0);
  }

  50% {
    filter: saturate(0.55);
    transform: translateX(-50%) translateY(3px);
  }
}

@keyframes garageLightFlicker {
  0%,
  100% {
    opacity: 0.72;
  }

  48% {
    opacity: 1;
  }

  56% {
    opacity: 0.58;
  }
}

@keyframes dealerWorry {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(2px) rotate(1deg);
  }
}

@keyframes worryPop {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(0.92);
  }

  45% {
    opacity: 1;
    transform: translateY(-3px) scale(1.08);
  }
}

@keyframes moneyDrop {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(118px) scale(0.72) rotate(-18deg);
  }
}

@keyframes appActivate {
  0%,
  100% {
    transform: translateX(0) scale(0.96);
  }

  42%,
  76% {
    transform: translateX(8px) scale(1);
  }
}

@keyframes fbPublish {
  0%,
  35% {
    opacity: 0.55;
    transform: translateX(10px) scale(0.94);
  }

  62%,
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes buttonPress {
  0%,
  35%,
  100% {
    transform: scale(1);
  }

  48% {
    transform: scale(0.92);
  }

  62% {
    transform: scale(1.04);
  }
}

@keyframes automationBeam {
  0%,
  36% {
    opacity: 0;
    transform: scaleX(0.2);
  }

  50%,
  72% {
    opacity: 1;
    transform: scaleX(1);
  }

  88%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes automationGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }

  54% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes automationCardIn {
  0%,
  26% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }

  48%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes automationPacket {
  0%,
  34% {
    opacity: 0;
    transform: translateX(0) scale(0.72);
  }

  46%,
  68% {
    opacity: 1;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateX(66px) scale(1);
  }
}

@keyframes dealCardIn {
  0%,
  24% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.9);
  }

  48%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes checkPulse {
  0%,
  100% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.08);
  }
}

@keyframes premiumGlow {
  0%,
  100% {
    opacity: 0.62;
    transform: translateX(-50%) scale(0.94);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes premiumSlideLeft {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-12px);
  }

  42%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes premiumSlideRight {
  0%,
  22% {
    opacity: 0;
    transform: translateX(12px);
  }

  46%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes receiptFloat {
  0%,
  22% {
    opacity: 0;
    transform: translateY(10px) rotate(3deg);
  }

  48%,
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes confettiPop {
  0%,
  28% {
    opacity: 0;
    transform: translateY(18px) rotate(0deg) scale(0.7);
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-88px) rotate(160deg) scale(1);
  }
}

@keyframes personNod {
  0%,
  100% {
    transform: translateY(0);
  }

  54% {
    transform: translateY(-4px);
  }
}

@keyframes handshakePulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scaleX(0.86);
  }

  52% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes moneyRise {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.86);
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-130px) scale(1.12) rotate(12deg);
  }
}

@keyframes motionCarDrive {
  0%,
  16% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  42%,
  58% {
    transform: translate3d(152px, -18px, 0) scale(0.9);
  }

  78%,
  100% {
    transform: translate3d(238px, -2px, 0) scale(0.82);
  }
}

@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes motionCardPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-4px);
  }
}

@keyframes motionPathOne {
  15%,
  24% {
    opacity: 0;
    transform: scaleX(0.2);
  }

  34%,
  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  62%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes motionPathTwo {
  0%,
  46% {
    opacity: 0;
    transform: scaleX(0.2);
  }

  58%,
  76% {
    opacity: 1;
    transform: scaleX(1);
  }

  88%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes motionClick {
  0%,
  48%,
  100% {
    transform: translateY(0) scale(1);
  }

  58% {
    transform: translateY(1px) scale(0.92);
  }

  68% {
    transform: translateY(-2px) scale(1.04);
  }
}

@keyframes motionSold {
  0%,
  58% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }

  72%,
  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes authFormIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reviewHintFloat {
  0%,
  100% {
    opacity: 0.94;
    transform: translateY(0);
  }

  48% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@keyframes reviewHintArrow {
  0%,
  100% {
    opacity: 0.94;
    transform: translateY(0) rotate(45deg);
  }

  48% {
    opacity: 1;
    transform: translateY(-5px) rotate(45deg);
  }
}

@keyframes reviewStarPulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .login-view {
    gap: 16px;
    grid-auto-rows: minmax(0, calc(100dvh - 36px));
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 400px);
    padding: 18px;
  }

  .login-product-panel {
    padding: 24px;
  }

  .product-panel-copy h2 {
    font-size: 30px;
    max-width: 18ch;
  }

  .product-panel-copy p {
    font-size: 14px;
    line-height: 1.45;
  }

  .motion-stage {
    min-height: 220px;
  }

  .motion-card {
    width: 132px;
  }

  .login-panel {
    max-height: calc(100dvh - 36px);
  }

  .auth-card-main {
    gap: 14px;
    padding: 26px 24px 24px;
  }

  .auth-card-footer {
    min-height: 72px;
    padding: 14px 18px;
  }

  .portal-mark {
    border-width: 7px;
    height: 62px;
    width: 62px;
  }

  .portal-logo-motion {
    height: 78px;
    width: 310px;
  }

  .portal-wordmark {
    font-size: 32px;
  }

  input {
    min-height: 48px;
  }

  #login-form,
  #register-form,
  #reset-form,
  #new-password-form,
  .operator-form {
    gap: 10px;
  }

  #login-form button[type="submit"],
  #register-form button[type="submit"],
  #reset-form button[type="submit"],
  #new-password-form button[type="submit"],
  .operator-form button {
    min-height: 50px;
  }

  .app-view {
    grid-template-columns: 1fr;
    height: 100vh;
    overflow: hidden;
    padding: 14px;
  }

  .admin-view {
    grid-template-columns: 1fr;
    height: 100vh;
    overflow: hidden;
    padding: 14px;
  }

  .seller-mode .app-view {
    grid-template-rows: auto minmax(0, 1fr);
    padding: 12px;
  }

  .seller-navbar {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }

  .seller-navbar-brand {
    min-width: 170px;
  }

  .seller-nav-tabs {
    flex-basis: 100%;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .seller-navbar-status {
    margin-left: auto;
  }

  .portal-sidebar {
    border-radius: 18px 18px 0 0;
    gap: 14px;
    height: auto;
    max-height: 34vh;
    position: relative;
    top: auto;
  }

  .admin-sidebar {
    border-radius: 18px 18px 0 0;
    gap: 14px;
    height: auto;
    max-height: 34vh;
    position: relative;
    top: auto;
  }

  .portal-main {
    border-left: 1px solid rgba(188, 205, 226, 0.72);
    border-radius: 0 0 18px 18px;
    border-top: 0;
    height: auto;
    min-height: 0;
  }

  .admin-main {
    border-left: 1px solid rgba(188, 205, 226, 0.72);
    border-radius: 0 0 18px 18px;
    border-top: 0;
    height: auto;
    min-height: 0;
  }

  .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-indicator {
    display: none;
  }

  .tab {
    text-align: center;
  }

  .sidebar-status-card {
    margin-top: 0;
  }

  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-kpis,
  .admin-dashboard-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-form-grid,
  .admin-toggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-token-row {
    grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.8fr);
  }

  .admin-token-row .admin-action-row {
    grid-column: 1 / -1;
  }

  .classroom-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .seller-flow {
    grid-template-columns: 1fr;
  }

  .readiness-grid,
  .playbook-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .onboarding-panel {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  }

  .onboarding-copy h2 {
    font-size: 26px;
  }
}

@media (max-height: 720px) {
  .login-view {
    grid-auto-rows: minmax(0, calc(100dvh - 28px));
    padding: 14px;
  }

  .login-panel {
    max-height: calc(100dvh - 28px);
  }

  .auth-card-main {
    gap: 12px;
    padding: 22px 20px 20px;
  }

  .login-copy h1 {
    font-size: 20px;
  }

  #login-form,
  #register-form,
  #reset-form,
  #new-password-form,
  .operator-form {
    gap: 10px;
  }

  input {
    min-height: 46px;
  }

  #login-form button[type="submit"],
  #register-form button[type="submit"],
  #reset-form button[type="submit"],
  #new-password-form button[type="submit"],
  .operator-form button {
    min-height: 50px;
  }
}

@media (max-height: 620px) {
  .auth-card-main {
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .auth-card-footer {
    min-height: 62px;
    padding: 12px 16px;
  }

  .auth-progress {
    display: none;
  }

  input {
    border-radius: 12px;
    min-height: 40px;
  }

  #login-form button[type="submit"],
  #register-form button[type="submit"],
  #reset-form button[type="submit"],
  #new-password-form button[type="submit"],
  .operator-form button {
    min-height: 46px;
  }
}

@media (max-width: 760px) {
  .portal-toast-container {
    left: 12px;
    max-width: none;
    right: 12px;
    top: 12px;
  }

  .login-view {
    grid-auto-rows: auto;
    grid-template-columns: minmax(0, 420px);
    padding: 12px;
  }

  .login-product-panel {
    display: none;
  }

  .login-panel {
    max-height: calc(100dvh - 24px);
  }

  .auth-card-main {
    padding: 22px 18px 20px;
  }

  .portal-wordmark {
    font-size: 30px;
  }

  .portal-mark {
    height: 56px;
    width: 56px;
  }

  .portal-logo-motion {
    height: 70px;
    width: min(300px, 100%);
  }

  .topbar,
  .section-head,
  .operator-card {
    align-items: stretch;
    flex-direction: column;
  }

  .app-view {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 8px;
  }

  .admin-view {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 8px;
  }

  .seller-mode .app-view {
    min-height: 100vh;
    overflow: visible;
    padding: 8px;
  }

  .seller-navbar {
    border-radius: 16px;
    padding: 10px;
  }

  .seller-navbar-brand {
    min-width: 0;
  }

  .seller-navbar-status {
    border-radius: 14px;
    flex: 1 1 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .seller-nav-tabs {
    border-radius: 14px;
    flex-basis: 100%;
  }

  .seller-nav-link {
    min-height: 40px;
    padding: 0 12px;
  }

  .portal-sidebar {
    border-radius: 16px 16px 0 0;
    gap: 10px;
    max-height: none;
    overflow: hidden;
    padding: 14px;
  }

  .admin-sidebar {
    border-radius: 16px 16px 0 0;
    gap: 10px;
    max-height: none;
    overflow: hidden;
    padding: 14px;
  }

  .workspace-brand {
    justify-content: center;
  }

  .tabs {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab {
    font-size: 13px;
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
  }

  .sidebar-status-card,
  .sidebar-foot {
    display: none;
  }

  .portal-main {
    height: auto;
    overflow: visible;
    padding: 14px;
  }

  .admin-main {
    height: auto;
    overflow: visible;
    padding: 14px;
  }

  .seller-mode .portal-main {
    border-radius: 16px;
  }

  .topbar {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .topbar h1 {
    font-size: 24px;
  }

  .extension-store-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .store-banner-orbit {
    height: 46px;
    width: 46px;
  }

  .store-banner-copy strong {
    font-size: 18px;
  }

  .store-banner-actions {
    justify-content: stretch;
  }

  .store-banner-action {
    flex: 1 1 180px;
    text-align: center;
    white-space: normal;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-kpis,
  .admin-dashboard-columns {
    grid-template-columns: 1fr;
  }

  .admin-form-grid,
  .admin-toggle-grid,
  .admin-token-row {
    grid-template-columns: 1fr;
  }

  .admin-table-row,
  .admin-subscription-row,
  .admin-audit-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .insight-grid,
  .operator-layout,
  .settings-grid,
  .classroom-readiness,
  .playbook-layout,
  .playbook-main,
  .onboarding-panel,
  .classroom-hero {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .insight-panel {
    min-height: auto;
    padding: 14px;
  }

  .metrics span {
    font-size: 26px;
  }

  .filters label {
    min-width: 100%;
  }

  .filters button {
    width: 100%;
  }

  .settings-key-row {
    grid-template-columns: 1fr;
  }

  .settings-key-status {
    justify-content: flex-start;
  }

  .table-wrap {
    max-width: 100%;
  }

  .classroom-head {
    align-items: stretch;
    flex-direction: column;
  }

  .classroom-head button {
    width: 100%;
  }

  .classroom-hero {
    min-height: auto;
    padding: 16px;
  }

  .seller-flow {
    padding: 14px;
  }

  .seller-flow-copy h2 {
    font-size: 21px;
  }

  .seller-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-flow-steps article::after {
    display: none;
  }

  .floating-extension-download {
    bottom: 12px;
    font-size: 12px;
    min-height: 48px;
    right: 12px;
  }

  .floating-extension-review {
    bottom: 72px;
    font-size: 12px;
    min-height: 44px;
    right: 12px;
  }

  .classroom-hero-motion {
    height: 118px;
  }

  .playbook-card,
  .troubleshooting-panel {
    min-height: auto;
  }

  .troubleshooting-panel {
    position: static;
  }

  .onboarding-modal {
    align-items: stretch;
    left: 0;
    padding: 8px;
  }

  .onboarding-dialog {
    align-self: center;
    gap: 10px;
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
    padding: 12px;
  }

  .onboarding-progress {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .onboarding-stepper {
    gap: 5px;
  }

  .onboarding-stepper span {
    height: 26px;
  }

  .onboarding-panel {
    gap: 12px;
    min-height: 0;
  }

  .onboarding-copy {
    gap: 9px;
  }

  .onboarding-copy h2 {
    font-size: 23px;
    max-width: none;
  }

  .onboarding-copy p {
    font-size: 14px;
  }

  .onboarding-motion {
    min-height: 210px;
  }

  .onboarding-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) and (max-height: 620px) {
  .login-view {
    padding: 8px;
  }

  .login-panel {
    max-height: calc(100dvh - 16px);
  }

  .auth-card-main {
    gap: 8px;
    padding: 12px;
  }

  .auth-card-footer {
    min-height: 50px;
    padding: 10px 12px;
  }

  .portal-logo {
    gap: 5px;
  }

  .portal-logo-motion {
    height: 54px;
    width: min(240px, 100%);
  }

  .portal-mark {
    border-width: 5px;
    height: 42px;
    width: 42px;
  }

  .portal-mark::before {
    height: 18px;
    width: 7px;
  }

  .portal-mark::after {
    height: 7px;
    width: 18px;
  }

  .portal-wordmark {
    font-size: 24px;
  }

  .login-copy {
    gap: 2px;
  }

  .login-copy h1 {
    font-size: 19px;
  }

  .login-copy p {
    display: none;
  }

  .product-panel-copy {
    gap: 8px;
  }

  .product-panel-copy h2 {
    font-size: 25px;
  }

  .product-panel-copy p {
    display: none;
  }

  .motion-stage {
    min-height: 170px;
  }

  .motion-source,
  .motion-ai {
    top: 10px;
  }

  .motion-source {
    left: 10px;
  }

  .motion-card {
    padding: 8px 9px;
    width: 118px;
  }

  .motion-card strong,
  .motion-sold,
  .motion-click {
    font-size: 10px;
  }

  .motion-card span {
    display: none;
  }

  .auth-progress {
    display: none;
  }

  .auth-tabs {
    gap: 6px;
  }

  .auth-tab {
    font-size: 11px;
    min-height: 30px;
    padding: 0 4px;
  }

  .field-link {
    min-height: 0;
    padding: 0;
  }

  label {
    gap: 4px;
    font-size: 12px;
  }

  input {
    border-radius: 12px;
    min-height: 38px;
    padding: 0 12px;
  }

  #login-form,
  #register-form,
  #reset-form,
  #new-password-form,
  .operator-form {
    gap: 6px;
  }

  #login-form button[type="submit"],
  #register-form button[type="submit"],
  #reset-form button[type="submit"],
  #new-password-form button[type="submit"],
  .operator-form button {
    min-height: 40px;
  }

  .onboarding-preview {
    gap: 2px;
    padding: 9px;
  }

  .onboarding-preview strong {
    font-size: 13px;
  }

  .onboarding-preview span {
    display: none;
  }

  .status {
    display: -webkit-box;
    font-size: 11px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 28px;
    min-height: 26px;
    overflow: hidden;
    padding: 5px 8px;
  }

  .status:empty {
    display: none;
  }
}
