:root {
  --bg: #0c0a14;
  --surface: rgba(18, 16, 28, 0.96);
  --surface-strong: #141120;
  --line: rgba(161, 132, 255, 0.14);
  --text: #f4f2ff;
  --muted: #aea7c8;
  --brand: #7c6cff;
  --brand-deep: #6e5cff;
  --accent: #7c6cff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #0c0a14;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(161, 132, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 132, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
  pointer-events: none;
}

.auth-shell {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-shell.hidden {
  display: none;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 21, 0.45);
  backdrop-filter: blur(14px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #141120;
  box-shadow: 0 30px 80px rgba(17, 34, 27, 0.25);
}

.auth-copy,
.login-form {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(161, 132, 255, 0.1);
}

.auth-copy h2 {
  margin: 8px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  max-width: 10ch;
}

.auth-copy p {
  max-width: 56ch;
  line-height: 1.75;
  color: var(--muted);
}

.auth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.auth-points span,
.session-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.08);
  border: 1px solid rgba(161, 132, 255, 0.12);
}

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

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.session-pill {
  display: grid;
  gap: 2px;
  min-width: 180px;
}

.session-pill span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.session-pill strong {
  font-size: 0.95rem;
}

.app-hidden {
  display: none;
}

body.public-mode .sidebar,
body.public-mode #section-admin,
body.public-mode #section-crm,
body.public-mode #section-service,
body.public-mode #load-demo,
body.public-mode #open-preview,
body.public-mode #print-report,
body.public-mode #logout-button {
  display: none !important;
}

body.public-mode .app-shell {
  grid-template-columns: 1fr;
}

body.public-mode .topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
}

body.admin-mode #section-overview,
body.admin-mode #section-modules,
body.admin-mode #open-auth-button {
  display: none !important;
}

.customer-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.customer-toolbar a {
  text-decoration: none;
}

.page-shell {
  width: min(1380px, calc(100vw - 40px));
  margin: 24px auto 40px;
}

.topbar,
.panel,
.report-card {
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 16, 28, 0.96);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  background: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-kicker,
.eyebrow,
.report-kicker,
.block-title,
.review-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.brand h1,
.intro-copy h2,
.section-heading h3,
.report-top h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.brand h1 {
  font-size: 1.2rem;
}

.brand-kicker,
.eyebrow,
.report-description,
.review-list,
.topbar-actions button,
label span,
label input,
label select,
label textarea,
.clean-list,
.info-strip span,
.qr-box p,
.price-band span {
  color: var(--muted);
}

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

button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button:hover {
  transform: translateY(-1px);
}

.primary-button,
.ghost-button {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-family: inherit;
}

.primary-button {
  color: white;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(124, 108, 255, 0.24);
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.layout {
  display: grid;
  gap: 20px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  padding: 24px;
}

.intro-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  max-width: 12ch;
  margin-top: 10px;
}

.intro-copy p {
  max-width: 70ch;
  line-height: 1.7;
}

.review-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.review-list {
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.crm-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}

.admin-panel,
.crm-panel {
  padding: 24px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card,
.table-card,
.plate-result {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-card {
  padding: 18px;
}

.stat-card span,
.table-head span,
.plate-result p,
.row-item small {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  font-family: "Sora", sans-serif;
}

.mini-form {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.table-card {
  padding: 18px;
}

.table-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.table-head p,
.plate-result-title {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.table-list {
  display: grid;
  gap: 12px;
}

.row-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.role-card {
  margin-top: 18px;
}

.role-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.row-item strong,
.plate-summary strong {
  display: block;
  margin-bottom: 4px;
}

.search-box {
  margin-bottom: 18px;
}

.plate-result {
  margin-top: 18px;
  padding: 18px;
}

.plate-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.plate-summary div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.features-panel {
  padding: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.feature-name {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.form-panel,
.preview-panel {
  padding: 24px;
}

.vehicle-intake-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.license-actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

.ocr-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.license-preview-wrap {
  display: grid;
}

.license-preview {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(161, 132, 255, 0.18);
}

.license-preview img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h3 {
  font-size: 1.55rem;
  margin-top: 6px;
}

form {
  display: grid;
  gap: 16px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 108, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

textarea {
  resize: vertical;
}

.report-card {
  padding: 24px;
  border-radius: 24px;
  background: #141120;
  border: 1px solid var(--line);
}

.report-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22, 34, 24, 0.08);
}

.report-top h4 {
  margin-top: 6px;
  font-size: 1.8rem;
}

.report-description {
  max-width: 58ch;
  line-height: 1.7;
}

.share-link-box {
  display: inline-grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.share-link-box span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.share-link-box a {
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
  word-break: break-all;
}

.qr-box {
  min-width: 168px;
  padding: 14px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

#qrcode {
  display: grid;
  place-items: center;
  min-height: 136px;
}

#qrcode img,
#qrcode canvas {
  max-width: 100%;
  height: auto;
}

#qrcode.qr-flash {
  border-radius: 18px;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.14);
}

.info-strip,
.price-band,
.account-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.info-strip div,
.price-band div,
.account-band div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.info-strip strong,
.price-band strong,
.account-band strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

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

.report-grid section {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.block-title {
  color: var(--brand-deep);
  font-weight: 800;
  margin: 0 0 10px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.priced-parts-table {
  display: grid;
  gap: 10px;
}

.priced-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) 88px 110px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.priced-row strong:last-child {
  text-align: right;
}

@media (max-width: 1080px) {
  .page-shell {
    width: min(100vw - 16px, 100%);
    margin: 8px auto;
  }

  .intro-panel,
  .auth-card,
  .crm-layout,
  .workspace,
  .feature-grid,
  .admin-overview,
  .grid.two,
  .grid.three,
  .grid.four,
  .report-grid,
  .info-strip,
  .price-band,
  .account-band {
    grid-template-columns: 1fr;
  }

  .priced-row {
    grid-template-columns: 1fr;
  }

  .row-item,
  .role-row,
  .plate-summary {
    grid-template-columns: 1fr;
  }

  .report-top,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions,
  .form-actions-inline,
  .admin-actions {
    width: 100%;
  }

  .topbar-actions button,
  .form-actions-inline button,
  .admin-actions button {
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-actions button {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .app-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sidebar {
    padding: 12px;
  }

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

  .nav-item {
    font-size: 0.92rem;
    padding: 11px 12px;
  }

  .topbar {
    padding: 14px;
  }

  .panel,
  .form-panel,
  .preview-panel,
  .admin-panel,
  .crm-panel,
  .features-panel,
  .intro-panel {
    padding: 16px;
  }

  .brand h1,
  .topbar-heading h2 {
    font-size: 1.05rem;
  }

  .intro-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 100%;
  }

  .preview-panel {
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    width: auto;
    padding: 16px;
  }

  .table-head,
  .report-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  body {
    background: white;
  }

  body::before,
  .topbar,
  .intro-panel,
  .form-panel {
    display: none !important;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .preview-panel,
  .panel,
  .report-card {
    border: 0;
    box-shadow: none;
    background: white;
    padding: 0;
  }
}

body {
  background:
    radial-gradient(circle at top left, rgba(108, 124, 255, 0.14), transparent 20%),
    radial-gradient(circle at top right, rgba(69, 196, 161, 0.08), transparent 18%),
    linear-gradient(180deg, #0c0e12 0%, #090b0e 100%);
  color: #eef2f7;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.page-shell {
  width: min(1600px, calc(100vw - 24px));
  margin: 12px auto;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px;
  min-height: calc(100vh - 24px);
}

.dashboard-shell {
  min-width: 0;
}

.sidebar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 18px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 16, 20, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.nav-item {
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: #94a0b0;
  font-weight: 700;
}

.nav-item.active,
.nav-item:hover {
  color: #eef2f7;
  background: rgba(108, 124, 255, 0.12);
  border-color: rgba(108, 124, 255, 0.25);
}

.session-card,
.session-pill,
.auth-points span {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.topbar,
.panel,
.report-card {
  background: rgba(18, 22, 27, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.topbar {
  margin-bottom: 14px;
}

.topbar-heading h2 {
  margin: 4px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

body.public-mode .topbar-heading h2::after {
  content: " • Tanitim";
  color: #95a0af;
  font-weight: 500;
}

body.admin-mode .topbar-heading h2::after {
  content: " • Admin";
  color: #95a0af;
  font-weight: 500;
}

.brand-mark {
  background: linear-gradient(135deg, #6877ff, #4959e6);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #eef2f7;
}

.primary-button {
  background: linear-gradient(135deg, #6877ff, #7e8bff);
  box-shadow: 0 12px 30px rgba(108, 124, 255, 0.22);
}

.brand-kicker,
.eyebrow,
.report-description,
.review-list,
.topbar-actions button,
label span,
label input,
label select,
label textarea,
.clean-list,
.info-strip span,
.qr-box p,
.price-band span,
.account-band span,
.table-head span,
.ocr-status,
.login-note,
.stat-card span,
.plate-result p,
.row-item small {
  color: #95a0af;
}

.review-card,
.feature-card,
.vehicle-intake-card,
.stat-card,
.table-card,
.plate-result,
.share-link-box,
.qr-box,
.info-strip div,
.price-band div,
.account-band div,
.report-grid section,
.priced-row,
.plate-summary div,
.license-preview {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.review-card {
  background:
    linear-gradient(155deg, rgba(108, 124, 255, 0.12), rgba(69, 196, 161, 0.06)),
    rgba(255, 255, 255, 0.03);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #eef2f7;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(108, 124, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(108, 124, 255, 0.14);
}

.report-card {
  background:
    linear-gradient(180deg, rgba(24, 28, 34, 0.98), rgba(16, 19, 24, 0.98)),
    #11151a;
}

.share-link-box a {
  color: #c7d0ff;
}

.block-title {
  color: #c7d0ff;
}

.row-item,
.plate-summary div,
.info-strip div,
.price-band div,
.account-band div,
.report-grid section,
.priced-row {
  background: rgba(255, 255, 255, 0.025);
}

.form-actions-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.module-screen {
  display: none;
}

.module-screen.is-active {
  display: grid;
}

.table-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.preview-panel {
  position: fixed;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(720px, calc(100vw - 32px));
  z-index: 30;
  overflow: auto;
  transform: translateX(110%);
  transition: transform 220ms ease;
}

body.preview-open .preview-panel {
  transform: translateX(0);
}

.preview-panel::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
}

.preview-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.auth-backdrop {
  background: rgba(3, 6, 11, 0.58);
}

.auth-card,
.auth-copy,
.login-form {
  background:
    linear-gradient(145deg, rgba(20, 24, 30, 0.96), rgba(12, 16, 20, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.auth-copy h2,
.brand h1,
.section-heading h3,
.report-top h4,
.table-head p,
.plate-result-title,
.feature-name {
  color: #eef2f7;
}

@media (max-width: 1080px) {
  .app-shell,
  .crm-layout,
  .workspace,
  .intro-panel,
  .feature-grid,
  .admin-overview,
  .auth-card {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    left: 12px;
    width: auto;
  }

  .sidebar {
    grid-template-rows: auto auto auto;
  }
}

@media print {
  .sidebar,
  .topbar,
  .form-panel,
  .preview-toolbar {
    display: none !important;
  }

  .preview-panel {
    position: static;
    transform: none !important;
    width: 100%;
  }
}

body {
  background: #0c0a14;
  color: #f4f2ff;
}

body::before {
  background-image: none;
  background: rgba(124, 108, 255, 0.04);
  mask-image: none;
}

.page-shell {
  width: min(1680px, calc(100vw - 24px));
  margin: 12px auto;
}

.sidebar {
  background: #11101b;
}

.sidebar-brand {
  padding: 10px 8px 14px;
  text-decoration: none;
  color: inherit;
}

.sidebar-brand h1 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.topbar,
.panel,
.report-card,
.auth-card,
.auth-copy,
.login-form,
.table-card,
.stat-card,
.feature-card,
.review-card,
.vehicle-intake-card,
.plate-result,
.preview-panel,
.invoice-dialog,
.qr-box,
.share-link-box,
.row-item,
input,
select,
textarea,
.nav-item,
.primary-button,
.ghost-button {
  border-radius: 12px !important;
}

.topbar,
.panel,
.report-card,
.auth-card,
.auth-copy,
.login-form {
  background: #141320;
}

.review-card,
.feature-card,
.vehicle-intake-card,
.stat-card,
.table-card,
.plate-result,
.share-link-box,
.qr-box,
.info-strip div,
.price-band div,
.account-band div,
.report-grid section,
.priced-row,
.plate-summary div,
.license-preview {
  background: #191728;
}

.primary-button {
  background: #7c6cff;
  box-shadow: 0 12px 30px rgba(124, 108, 255, 0.22);
}

.ghost-button {
  background: #1a1830;
}

.review-card {
  background: #1a1830;
}

.crm-layout {
  grid-template-columns: minmax(0, 1fr);
}

.admin-overview,
.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.overview-analytics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.overview-finance {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.chart-card {
  padding: 18px;
}

.chart-stack {
  display: grid;
  gap: 12px;
}

.chart-row {
  display: grid;
  gap: 8px;
}

.chart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chart-meta span {
  color: var(--muted);
}

.chart-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.chart-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.chart-fill.violet {
  background: linear-gradient(90deg, #7c6cff, #b09dff);
}

.chart-fill.cyan {
  background: linear-gradient(90deg, #2fa8c9, #7be6ff);
}

.finance-chip {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #191728;
}

.finance-chip span {
  font-size: 0.8rem;
  color: var(--muted);
}

.finance-chip strong {
  font-size: 1.08rem;
  font-family: "Sora", sans-serif;
}

.finance-chip.violet strong {
  color: #9f8cff;
}

.finance-chip.cyan strong {
  color: #6ee2ff;
}

.finance-chip.green strong {
  color: #74df9a;
}

.row-item {
  grid-template-columns: minmax(170px, 1.1fr) minmax(220px, 1.4fr) minmax(150px, 0.9fr) minmax(130px, 0.8fr) auto;
  align-items: center;
}

.employee-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.employee-row .row-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.vehicle-row {
  padding: 12px 14px;
}

.service-vehicle-row {
  grid-template-columns: minmax(160px, 0.85fr) minmax(220px, 1.35fr) minmax(170px, 0.9fr) auto;
}

.row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.row-actions .ghost-button,
.row-actions .primary-button {
  min-width: 104px;
  padding: 10px 12px;
  border-radius: 12px;
}

.plate-result {
  margin-top: 18px;
  padding: 20px;
}

.plate-result.hidden {
  display: none;
}

.plate-result-title {
  margin-bottom: 8px;
}

.vehicle-detail-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(161, 132, 255, 0.16);
  border-radius: 18px;
  background: #151425;
}

.vehicle-detail-qr {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
}

.vehicle-detail-meta {
  display: grid;
  align-content: center;
  gap: 6px;
}

.vehicle-detail-meta strong {
  font-family: "Sora", sans-serif;
}

.vehicle-detail-meta small {
  color: var(--muted);
  line-height: 1.6;
}

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

.payroll-overview .stat-card {
  background: #18162a;
}

.vehicle-dialog {
  width: min(920px, 100%);
}

.mini-form .table-card {
  padding: 18px;
}

.invoice-modal.hidden {
  display: none;
}

.invoice-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.invoice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 11, 0.72);
  backdrop-filter: blur(10px);
}

.invoice-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(161, 132, 255, 0.16);
  background: #141320;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.invoice-preview-card {
  margin-top: 16px;
}

.invoice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.invoice-grid section {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #191728;
}

.invoice-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.search-box {
  max-width: 420px;
}

.table-card .table-list {
  gap: 10px;
}

body.public-mode #section-settings {
  display: none !important;
}

@media (max-width: 1200px) {
  .overview-stats,
  .admin-overview,
  .settings-grid,
  .overview-analytics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .row-item,
  .role-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .row-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100vw - 12px, 100%);
    margin: 6px auto;
  }

  .app-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sidebar {
    padding: 14px;
  }

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

  .overview-stats,
  .admin-overview,
  .settings-grid,
  .overview-analytics,
  .invoice-grid,
  .plate-summary,
  .report-grid,
  .info-strip,
  .price-band,
  .account-band,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .row-item,
  .role-row,
  .vehicle-detail-card,
  .service-vehicle-row {
    grid-template-columns: 1fr;
  }

  .topbar,
  .report-top,
  .table-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions,
  .admin-actions,
  .form-actions-inline,
  .invoice-actions {
    width: 100%;
  }

  .topbar-actions button,
  .admin-actions button,
  .form-actions-inline button,
  .invoice-actions button,
  .row-actions .ghost-button,
  .row-actions .primary-button {
    width: 100%;
  }

  .preview-panel {
    inset: 8px;
    width: auto;
  }

  .invoice-dialog {
    padding: 16px;
    width: min(100%, 100%);
  }
}

.public-header,
.public-actions {
  display: none;
}

body.public-mode {
  background: #fafafa;
  color: #111827;
}

body.public-mode::before {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.03), transparent 22%);
  background-image: none;
  mask-image: none;
}

body.public-mode .page-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto 56px;
}

body.public-mode .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 0 0 32px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
}

body.public-mode .admin-heading,
body.public-mode .admin-actions-bar,
body.public-mode .sidebar,
body.public-mode #section-admin,
body.public-mode #section-crm,
body.public-mode #section-service,
body.public-mode #section-settings,
body.public-mode #section-modules {
  display: none !important;
}

body.public-mode .public-header,
body.public-mode .public-actions {
  display: flex;
}

body.public-mode .public-header {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}

body.public-mode .public-logo {
  text-decoration: none;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.public-mode .public-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.public-mode .public-nav a,
body.public-mode .marketing-footer a {
  color: #4b5563;
  text-decoration: none;
}

body.public-mode .public-nav a:hover,
body.public-mode .marketing-footer a:hover {
  color: #111827;
}

body.public-mode .public-actions {
  align-items: center;
  gap: 12px;
}

body.public-mode .primary-button {
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.16);
}

body.public-mode .ghost-button {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

body.public-mode .intro-panel {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.public-mode .marketing-page {
  display: grid;
  gap: 28px;
  width: 100%;
}

body.public-mode .marketing-hero,
body.public-mode .marketing-section,
body.public-mode .marketing-cta {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

body.public-mode .marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: center;
  padding: 56px;
}

body.public-mode .marketing-section .table-card,
body.admin-mode .settings-grid .table-card {
  padding: 22px;
}

body.admin-mode .settings-grid .mini-form {
  margin-top: 12px;
}

body.admin-mode .settings-grid {
  align-items: start;
}

body.public-mode .hero-copy h2,
body.public-mode .section-copy h3,
body.public-mode .marketing-cta h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

body.public-mode .section-copy h3,
body.public-mode .marketing-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

body.public-mode .hero-copy p,
body.public-mode .section-copy p,
body.public-mode .marketing-cta p {
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
}

body.public-mode .hero-copy,
body.public-mode .section-copy {
  display: grid;
  gap: 18px;
}

body.public-mode .eyebrow,
body.public-mode .brand-kicker {
  color: #6366f1;
  font-weight: 700;
}

body.public-mode .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.public-mode .product-mockup {
  display: grid;
  place-items: center;
}

body.public-mode .mockup-window {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

body.public-mode .mockup-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

body.public-mode .mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d5db;
}

body.public-mode .mockup-body {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
}

body.public-mode .mockup-sidebar,
body.public-mode .mockup-main,
body.public-mode .mockup-grid {
  display: grid;
  gap: 12px;
}

body.public-mode .mockup-pill,
body.public-mode .mockup-card {
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

body.public-mode .mockup-pill {
  color: #475569;
  font-size: 0.92rem;
}

body.public-mode .mockup-pill.active {
  border-color: rgba(79, 70, 229, 0.16);
  background: #eef2ff;
  color: #3730a3;
}

body.public-mode .mockup-card strong {
  display: block;
  color: #111827;
  margin-bottom: 6px;
}

body.public-mode .mockup-card small {
  color: #6b7280;
}

body.public-mode .mockup-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.public-mode .mockup-card.wide {
  grid-column: 1 / -1;
}

body.public-mode .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.public-mode .trust-strip article {
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

body.public-mode .marketing-section,
body.public-mode .marketing-cta {
  padding: 36px;
}

body.public-mode .marketing-feature-grid,
body.public-mode .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

body.public-mode .marketing-feature-card,
body.public-mode .step-card,
body.public-mode .testimonial-card {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

body.public-mode .marketing-feature-card h4,
body.public-mode .step-card h4 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1.08rem;
}

body.public-mode .marketing-feature-card p,
body.public-mode .step-card p,
body.public-mode .testimonial-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

body.public-mode .feature-icon,
body.public-mode .step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 700;
}

body.public-mode .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

body.public-mode .section-copy.centered {
  text-align: center;
  justify-items: center;
}

body.public-mode .trust-section {
  display: grid;
  gap: 24px;
}

body.public-mode .logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.public-mode .logo-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  color: #6b7280;
  font-weight: 700;
  background: #fcfcfd;
}

body.public-mode .testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.public-mode .testimonial-card strong,
body.public-mode .marketing-footer strong {
  display: block;
  margin-top: 14px;
  color: #111827;
}

body.public-mode .marketing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.public-mode .marketing-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 4px 2px 24px;
}

body.public-mode .marketing-footer p {
  color: #6b7280;
  line-height: 1.7;
}

body.public-mode .marketing-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

@media (max-width: 1080px) {
  body.public-mode .marketing-hero,
  body.public-mode .trust-strip,
  body.public-mode .marketing-feature-grid,
  body.public-mode .steps-grid,
  body.public-mode .logo-strip,
  body.public-mode .marketing-footer {
    grid-template-columns: 1fr;
  }

  body.public-mode .mockup-body,
  body.public-mode .mockup-grid,
  body.public-mode .testimonial-grid {
    grid-template-columns: 1fr;
  }

  body.public-mode .public-nav {
    display: none;
  }

  body.public-mode .marketing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body.public-mode .page-shell {
    width: min(100vw - 16px, 100%);
  }

  body.public-mode .topbar {
    padding: 14px 0;
  }

  body.public-mode .public-header {
    gap: 12px;
  }

  body.public-mode .public-actions,
  body.public-mode .hero-actions {
    width: 100%;
  }

  body.public-mode .public-actions > *,
  body.public-mode .hero-actions > * {
    width: 100%;
    text-align: center;
  }

  body.public-mode .marketing-hero,
  body.public-mode .marketing-section,
  body.public-mode .marketing-cta {
    padding: 24px;
  }
}

body.admin-mode {
  background: #f4f7fb;
  color: #0f172a;
}

body.admin-mode::before {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.03), transparent 28%);
  background-image: none;
  mask-image: none;
}

body.admin-mode .page-shell {
  width: min(1500px, calc(100vw - 28px));
  margin: 14px auto 32px;
}

body.admin-mode .sidebar {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

body.admin-mode .sidebar-brand,
body.admin-mode .sidebar-brand h1,
body.admin-mode .topbar-heading h2,
body.admin-mode .table-head p,
body.admin-mode .section-heading h3,
body.admin-mode .feature-name,
body.admin-mode .vehicle-detail-meta strong {
  color: #0f172a;
}

body.admin-mode .brand-kicker,
body.admin-mode .eyebrow,
body.admin-mode .table-head span,
body.admin-mode .login-note,
body.admin-mode .row-item small,
body.admin-mode .stat-card span,
body.admin-mode .plate-result p,
body.admin-mode .session-pill span,
body.admin-mode .vehicle-detail-meta small {
  color: #64748b;
}

body.admin-mode .nav-item {
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
}

body.admin-mode .nav-item.active,
body.admin-mode .nav-item:hover {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.12);
}

body.admin-mode .topbar,
body.admin-mode .panel,
body.admin-mode .report-card,
body.admin-mode .auth-card,
body.admin-mode .auth-copy,
body.admin-mode .login-form,
body.admin-mode .table-card,
body.admin-mode .stat-card,
body.admin-mode .review-card,
body.admin-mode .feature-card,
body.admin-mode .vehicle-intake-card,
body.admin-mode .plate-result,
body.admin-mode .preview-panel,
body.admin-mode .invoice-dialog,
body.admin-mode .share-link-box,
body.admin-mode .qr-box,
body.admin-mode .priced-row,
body.admin-mode .report-grid section,
body.admin-mode .info-strip div,
body.admin-mode .price-band div,
body.admin-mode .account-band div,
body.admin-mode .plate-summary div,
body.admin-mode .license-preview,
body.admin-mode .finance-chip,
body.admin-mode .quick-card,
body.admin-mode .workflow-step,
body.admin-mode .queue-row,
body.admin-mode .module-map div {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

body.admin-mode .topbar {
  background: #ffffff;
}

body.admin-mode input,
body.admin-mode select,
body.admin-mode textarea {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

body.admin-mode input:focus,
body.admin-mode select:focus,
body.admin-mode textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  background: #ffffff;
}

body.admin-mode .ghost-button {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

body.admin-mode .primary-button {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

body.admin-mode .session-pill,
body.admin-mode .auth-points span {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

body.admin-mode #section-overview.module-screen.is-active {
  display: block !important;
}

body.admin-mode #section-modules,
body.admin-mode .marketing-page {
  display: none !important;
}

body.public-mode .admin-overview-page,
body.admin-mode .public-header,
body.admin-mode .public-actions {
  display: none !important;
}

body.admin-mode .admin-overview-page {
  display: grid;
  gap: 18px;
}

body.admin-mode .admin-overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

body.admin-mode .admin-quick-actions {
  display: grid;
  gap: 12px;
}

body.admin-mode .quick-card {
  padding: 18px;
}

body.admin-mode .quick-card strong,
body.admin-mode .workflow-step strong,
body.admin-mode .queue-row strong,
body.admin-mode .module-map strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

body.admin-mode .quick-card small,
body.admin-mode .workflow-step small,
body.admin-mode .queue-row small,
body.admin-mode .module-map small {
  color: #64748b;
  line-height: 1.6;
}

body.admin-mode .workflow-list,
body.admin-mode .queue-list,
body.admin-mode .module-map {
  display: grid;
  gap: 12px;
}

body.admin-mode .workflow-step,
body.admin-mode .queue-row,
body.admin-mode .module-map div {
  padding: 16px;
}

body.admin-mode .module-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.admin-mode .chart-track {
  background: #e2e8f0;
}

body.admin-mode .chart-meta span {
  color: #64748b;
}

body.admin-mode .payroll-overview .stat-card {
  background: #ffffff;
}

@media (max-width: 1100px) {
  body.admin-mode .admin-overview-hero,
  body.admin-mode .module-map {
    grid-template-columns: 1fr;
  }
}

:root {
  --radius-lg: 0px;
  --radius-md: 0px;
}

.topbar,
.panel,
.report-card,
.auth-card,
.auth-copy,
.login-form,
.table-card,
.stat-card,
.feature-card,
.review-card,
.vehicle-intake-card,
.plate-result,
.preview-panel,
.invoice-dialog,
.qr-box,
.share-link-box,
.row-item,
.vehicle-detail-card,
.vehicle-detail-qr,
.finance-chip,
.marketing-hero,
.marketing-section,
.marketing-cta,
.marketing-feature-card,
.step-card,
.testimonial-card,
.mockup-window,
.mockup-pill,
.mockup-card,
.trust-strip article,
.logo-strip span,
input,
select,
textarea,
.nav-item,
.primary-button,
.ghost-button,
.feature-icon,
.step-number,
.chart-track,
.chart-fill,
.session-pill,
.auth-points span {
  border-radius: 0 !important;
}
