:root {
  --ink: #132238;
  --muted: #5d6c80;
  --line: #d6e0e9;
  --line-strong: #b9c8d6;
  --surface: #ffffff;
  --surface-soft: #f3f5f6;
  --surface-teal: #edf8f6;
  --teal: #0c766f;
  --teal-dark: #075852;
  --blue: #1769aa;
  --blue-soft: #eaf4fb;
  --gold: #a86d08;
  --gold-soft: #fff5dc;
  --danger: #b4232a;
  --danger-soft: #fff0f1;
  --success: #16784b;
  --success-soft: #eaf8f0;
  --navy: #18283d;
  --shadow: 0 10px 28px rgba(18, 40, 61, 0.08);
  --radius: 6px;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f6f8f8;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(23, 105, 170, 0.28);
  outline-offset: 2px;
}

a {
  color: var(--blue);
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-180%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  background: var(--surface);
}

.boot-screen img {
  width: 180px;
  height: 52px;
  object-fit: contain;
}

.boot-screen p {
  margin: 0;
  color: var(--muted);
}

.boot-line {
  width: 190px;
  height: 4px;
  overflow: hidden;
  background: var(--line);
  border-radius: 4px;
}

.boot-line::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--teal);
  animation: boot 1.1s ease-in-out infinite;
}

@keyframes boot {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(340%); }
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #d9e2e7;
  border-radius: 5px;
  background-color: #fff;
  background-image: url("/assets/biqora-logo.png");
  background-position: center -8px;
  background-repeat: no-repeat;
  background-size: 76px 76px;
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: #132238;
  font-size: 18px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mobile-nav-toggle {
  width: auto;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-glyph {
  display: grid;
  gap: 3px;
}

.menu-glyph i {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.menu-label {
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--teal);
  color: var(--teal-dark);
}

.nav-mobile-action {
  display: none;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-stamp {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #f0c66e;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #805000;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.page {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.page-wide {
  width: min(1460px, calc(100% - 28px));
}

.hero {
  min-height: auto;
  padding: 44px 0 18px;
}

.hero-copy {
  max-width: 930px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker .eyebrow {
  margin: 0;
}

.step-index {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 58px);
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-proof {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span::before {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 14px;
  display: inline-block;
  vertical-align: middle;
  background: var(--line-strong);
}

.hero-proof span:first-child::before {
  display: none;
}

.problem-panel {
  max-width: 1040px;
  margin-top: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.panel-heading {
  padding: 20px 22px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  margin-top: 5px;
  font-size: 27px;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
}

.form-step {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.problem-list {
  margin: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
  border: 0;
}

.problem-option {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 0;
  cursor: pointer;
}

.problem-option:hover {
  background: var(--surface-soft);
}

.problem-option:has(input:checked) {
  border-color: #8fd0ca;
  border-radius: 4px;
  background: var(--surface-teal);
}

.problem-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--teal);
}

.problem-option span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.panel-actions {
  padding: 16px 20px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.button-primary {
  background: var(--teal);
  color: white;
}

.button-primary:hover:not(:disabled) {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover:not(:disabled) {
  background: var(--surface-soft);
}

.button-dark {
  background: var(--navy);
  color: white;
}

.button-danger {
  border-color: #f0b7bb;
  background: var(--danger-soft);
  color: var(--danger);
}

.button-small {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
}

.text-button {
  min-height: 36px;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.section-band {
  margin-top: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head p {
  margin: 9px 0 0;
  color: var(--muted);
}

.value-grid,
.solution-grid,
.package-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.value-item,
.solution-item,
.package-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.value-item {
  min-height: 156px;
  padding: 22px;
}

.value-number {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
}

.value-item p,
.solution-item p,
.package-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-item {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-top-width: 3px;
}

.solution-item[data-module="harmonizer"] { border-top-color: var(--teal); }
.solution-item[data-module="dashboard"] { border-top-color: var(--blue); }
.solution-item[data-module="visit"] { border-top-color: var(--gold); }
.solution-item[data-module="pos"] { border-top-color: var(--danger); }

.solution-item .button {
  margin-top: auto;
  align-self: flex-start;
}

.package-item {
  padding: 20px;
}

.package-flow {
  margin-top: 14px;
  padding: 12px;
  border-left: 3px solid var(--teal);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.page-header p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
}

.portal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.portal-sidebar {
  position: sticky;
  top: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.portal-summary {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.portal-summary strong,
.portal-summary span {
  display: block;
}

.portal-summary span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--line);
}

.progress-fill {
  height: 100%;
  background: var(--teal);
  transition: width 180ms ease;
}

.side-nav {
  padding: 8px;
}

.side-link {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.side-link:hover,
.side-link.active {
  border-left-color: var(--teal);
  background: var(--surface-teal);
  color: var(--teal-dark);
}

.side-link.locked {
  cursor: not-allowed;
  opacity: 0.55;
}

.side-link small {
  color: inherit;
  font-weight: 700;
}

.portal-content {
  min-width: 0;
}

.demo-banner {
  margin-bottom: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f0c66e;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: #694200;
  font-size: 13px;
  font-weight: 750;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(18, 40, 61, 0.05);
}

.content-panel + .content-panel {
  margin-top: 16px;
}

.content-panel-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.content-panel-head p {
  margin: 7px 0 0;
  color: var(--muted);
}

.content-panel-body {
  padding: 22px;
}

.step-status {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.step-dots {
  display: flex;
  gap: 6px;
}

.step-dot {
  width: 28px;
  height: 6px;
  border-radius: 4px;
  background: var(--line);
}

.step-dot.done { background: var(--success); }
.step-dot.current { background: var(--teal); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.compare-arrow {
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.mini-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #edf2f6;
  color: #3c4d62;
  font-size: 12px;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr[data-clickable="true"] {
  cursor: pointer;
}

tbody tr[data-clickable="true"]:hover {
  background: var(--surface-teal);
}

.file-list {
  display: grid;
  gap: 8px;
}

.file-choice {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.file-choice:hover,
.file-choice.selected {
  border-color: #83c9c2;
  background: var(--surface-teal);
}

.file-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.file-meta {
  color: var(--muted);
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.status-success {
  background: var(--success-soft);
  color: var(--success);
}

.status-warning {
  background: var(--gold-soft);
  color: #865600;
}

.status-danger {
  background: var(--danger-soft);
  color: var(--danger);
}

.status-neutral {
  background: #edf1f4;
  color: var(--muted);
}

.mapping-list {
  display: grid;
  gap: 8px;
}

.mapping-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 36px minmax(190px, 1fr) 118px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--line-strong);
  border-radius: 4px;
}

.mapping-row.matched { border-left-color: var(--success); }
.mapping-row.confirm { border-left-color: var(--gold); }
.mapping-row.unused { border-left-color: #909cac; }
.mapping-row.missing { border-left-color: var(--danger); }

.mapping-source strong,
.mapping-target strong {
  display: block;
}

.mapping-source small,
.mapping-target small {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 8px;
}

.process-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
}

.process-item.active {
  border-color: #8fcfc9;
  background: var(--surface-teal);
  color: var(--teal-dark);
  font-weight: 800;
}

.process-item.done {
  color: var(--success);
}

.process-bullet {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  min-height: 104px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.metric:last-child {
  border-right: 0;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.08;
}

.metric-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.metric.negative .metric-value { color: var(--danger); }
.metric.positive .metric-value { color: var(--success); }

.chart {
  min-height: 300px;
  padding: 20px 14px 8px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 2px solid var(--line-strong);
}

.chart-column {
  min-width: 38px;
  flex: 1 1 0;
  display: grid;
  grid-template-rows: 28px 210px 38px;
  align-items: end;
  text-align: center;
}

.chart-column strong {
  color: var(--ink);
  font-size: 11px;
}

.chart-bar-wrap {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.chart-bar {
  width: min(54px, 78%);
  min-height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
}

.chart-column.low .chart-bar {
  background: var(--danger);
}

.chart-column span {
  align-self: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.visit-frame,
.pos-frame {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.phone-sim {
  max-width: 390px;
  min-height: 540px;
  margin: 0 auto;
  overflow: hidden;
  border: 9px solid var(--navy);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone-top {
  min-height: 52px;
  padding: 14px 16px;
  background: var(--teal);
  color: white;
  font-weight: 850;
}

.phone-body {
  padding: 16px;
}

.sim-photo {
  min-height: 180px;
  display: grid;
  place-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(19, 34, 56, 0.05), rgba(19, 34, 56, 0.05)),
    #dfe9ee;
  color: var(--muted);
  text-align: center;
}

.sim-photo strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.sim-photo.has-image {
  padding: 0;
  overflow: hidden;
  background: #eef3f6;
}

.sim-photo img,
.visit-proof img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 320px;
  object-fit: cover;
}

.visit-photo-control {
  min-width: min(100%, 320px);
  display: grid;
  gap: 6px;
}

.visit-photo-control .button {
  width: 100%;
}

.visit-photo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.visit-photo-stamp {
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #bfd9d5;
  background: #eff8f6;
  color: var(--teal-dark);
  font-size: 12px;
}

.visit-photo-stamp span {
  text-align: right;
}

.visit-ho-dashboard {
  scroll-margin-top: 96px;
}

.visit-ho-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.visit-metric-name {
  font-size: 18px;
}

.visit-ho-detail {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 16px;
  align-items: start;
}

.visit-proof {
  display: grid;
  gap: 8px;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  min-height: 62px;
  padding: 10px 10px 10px 34px;
  border-left: 2px solid var(--line);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -7px;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--line-strong);
}

.timeline-item.done {
  border-left-color: var(--success);
}

.timeline-item.done::before {
  background: var(--success);
}

.timeline-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-choice {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
  border: 1px solid var(--line);
  border-top: 22px solid var(--teal);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
}

.product-choice:nth-child(2) { border-top-color: var(--gold); }
.product-choice:nth-child(3) { border-top-color: var(--danger); }
.product-choice:hover { background: var(--surface-soft); }
.product-choice small { color: var(--muted); }

.cart-list {
  display: grid;
  gap: 8px;
}

.cart-row {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.mission-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.mission-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.mission-check {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.mission-item.done {
  color: var(--success);
  font-weight: 800;
}

.mission-item.done .mission-check {
  border-color: var(--success);
  background: var(--success);
  color: white;
}

.help-button {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 24px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 850;
}

.help-menu {
  position: fixed;
  z-index: 71;
  right: 20px;
  bottom: 78px;
  width: min(330px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.help-menu-head {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.help-menu button,
.help-menu a {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.help-menu button:hover,
.help-menu a:hover {
  background: var(--surface-soft);
}

.tour-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(8, 22, 38, 0.7);
}

.tour-highlight {
  position: fixed;
  z-index: 1001;
  border: 3px solid #72dfd4;
  border-radius: 6px;
  box-shadow: 0 0 0 9999px rgba(8, 22, 38, 0.7);
  pointer-events: none;
  transition: inset 150ms ease, width 150ms ease, height 150ms ease;
}

.tour-popover {
  position: fixed;
  z-index: 1002;
  width: min(360px, calc(100% - 24px));
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.tour-popover p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tour-actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.modal-backdrop {
  position: fixed;
  z-index: 900;
  inset: 0;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(8, 22, 38, 0.68);
}

.modal {
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-head {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.modal-body {
  padding: 20px;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #35465b;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: white;
  color: var(--ink);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
}

.check-chip:has(input:checked) {
  border-color: #79c9c1;
  background: var(--surface-teal);
  color: var(--teal-dark);
}

.admin-tabs {
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.admin-tab {
  min-height: 44px;
  padding: 9px 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.admin-tab.active {
  border-bottom-color: var(--teal);
  color: var(--teal-dark);
}

.admin-table {
  max-height: 560px;
  overflow: auto;
}

.admin-table th {
  top: 0;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.analytics-grid .metric {
  border: 1px solid var(--line);
}

.visitor-gate {
  width: min(860px, 100%);
  margin: 32px auto;
}

.visitor-gate .content-panel-head h1 {
  max-width: 700px;
  font-size: clamp(30px, 4vw, 44px);
}

.visitor-gate-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visitor-consent {
  min-height: 58px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  cursor: pointer;
}

.visitor-consent:has(input:checked) {
  border-color: #79c9c1;
  background: var(--surface-teal);
}

.visitor-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.visitor-consent strong,
.visitor-consent small {
  display: block;
}

.visitor-consent small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.field-optional {
  color: var(--muted);
  font-weight: 500;
}

.session-status {
  min-width: 82px;
}

.session-location {
  display: grid;
  gap: 3px;
  min-width: 150px;
}

.session-location a {
  color: var(--blue);
  font-weight: 800;
}

.session-device {
  min-width: 170px;
  color: var(--muted);
  font-size: 12px;
}

.login-panel {
  width: min(620px, 100%);
  margin: 54px auto;
}

.admin-access-note {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
}

.admin-access-note span,
.admin-access-note strong {
  display: block;
}

.admin-access-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-access-note strong {
  margin-top: 3px;
  font-size: 17px;
}

.admin-access-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-reset-link {
  margin-left: 8px;
}

.request-receipt {
  text-align: center;
}

.request-receipt-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.request-reference {
  margin: 8px 0 14px;
  display: block;
  color: var(--teal-dark);
  font-size: clamp(24px, 5vw, 34px);
}

.request-receipt p {
  max-width: 520px;
  margin: 8px auto;
  color: var(--muted);
}

.request-receipt-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.notice {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.notice-success {
  border-color: #9ed8b9;
  background: var(--success-soft);
  color: #0c613b;
}

.notice-warning {
  border-color: #edcb82;
  background: var(--gold-soft);
  color: #6e4800;
}

.notice-danger {
  border-color: #efb8bd;
  background: var(--danger-soft);
  color: var(--danger);
}

.completion {
  padding: 42px;
  text-align: center;
}

.completion-badge {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 3px solid var(--success);
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 34px;
  font-weight: 900;
}

.completion p {
  max-width: 700px;
  margin: 10px auto 0;
  color: var(--muted);
}

.completion-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.toast-root {
  position: fixed;
  z-index: 1200;
  top: 80px;
  right: 18px;
  width: min(380px, calc(100% - 36px));
  display: grid;
  gap: 8px;
}

.toast {
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
  animation: toast-in 180ms ease-out;
}

@keyframes toast-in {
  from { transform: translateY(-8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.footer {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hidden {
  display: none !important;
}

@media (max-width: 1050px) {
  .topbar-inner {
    position: relative;
    gap: 12px;
  }

  .main-nav {
    display: none;
    position: absolute;
    z-index: 2;
    top: 70px;
    left: 0;
    right: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .nav-link {
    border-bottom-width: 0;
    border-left: 3px solid transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    border-left-color: var(--teal);
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-mobile-action {
    display: flex;
  }

  .topbar-actions {
    margin-left: 0;
  }

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

  .portal-layout {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-sidebar,
  .portal-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .portal-sidebar {
    position: static;
    overflow: hidden;
  }

  .side-nav {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .side-link {
    width: auto;
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .side-link:hover,
  .side-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--teal);
  }

  .metric-strip,
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    padding-bottom: 74px;
  }

  .topbar-inner,
  .page,
  .footer-inner {
    width: min(100% - 20px, var(--content));
  }

  .topbar,
  .topbar-inner {
    min-height: 66px;
  }

  .brand-link {
    gap: 8px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    background-position: center -7px;
    background-size: 70px 70px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .mobile-nav-toggle {
    height: 42px;
    padding: 0 10px;
  }

  .main-nav {
    top: 60px;
    padding: 7px;
  }

  .nav-link {
    min-height: 48px;
    padding: 11px 12px;
    font-size: 15px;
  }

  .topbar-actions .button {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding-bottom: 22px;
  }

  h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span::before,
  .hero-proof span:first-child::before {
    content: "";
    width: 7px;
    height: 7px;
    margin: 0 9px 1px 0;
    display: inline-block;
    border-radius: 50%;
    background: var(--teal);
  }

  .problem-panel {
    margin-top: 22px;
  }

  .panel-heading {
    padding: 17px 16px 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .panel-heading h2 {
    font-size: 23px;
  }

  .problem-list {
    padding: 6px 12px;
  }

  .problem-option {
    min-height: 52px;
    padding: 10px 4px;
  }

  .problem-option span {
    font-size: 15px;
  }

  .problem-list,
  .value-grid,
  .solution-grid,
  .package-grid,
  .demo-grid,
  .visit-frame,
  .pos-frame,
  .form-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .visit-ho-detail {
    grid-template-columns: 1fr;
  }

  .visit-ho-head {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-ho-head .button {
    width: 100%;
  }

  .visit-photo-actions {
    grid-template-columns: 1fr;
  }

  .visit-photo-stamp,
  .visitor-gate-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visitor-gate-actions .button {
    width: 100%;
  }

  .portal-content .solution-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .portal-content .solution-item {
    min-width: 0;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .panel-actions,
  .page-header,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-actions .button {
    width: 100%;
  }

  .panel-actions {
    padding: 14px 16px 16px;
  }

  .panel-actions .text-button {
    width: 100%;
  }

  .section-band {
    margin-top: 28px;
    padding: 28px 0;
  }

  .value-item,
  .solution-item,
  .package-item {
    min-height: auto;
    padding: 17px;
  }

  .page {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .content-panel-head,
  .content-panel-body,
  .modal-body {
    padding: 16px;
  }

  .login-panel {
    margin: 18px auto;
  }

  .admin-reset-link {
    width: 100%;
    margin: 8px 0 0;
  }

  .request-receipt-actions,
  .completion-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .request-receipt-actions .button,
  .completion-actions .button {
    width: 100%;
  }

  .help-button {
    right: 10px;
    bottom: 10px;
    min-height: 46px;
    padding: 9px 13px;
    border-radius: 5px;
    font-size: 13px;
  }

  .help-menu {
    right: 10px;
    bottom: 66px;
    width: calc(100% - 20px);
  }

  .metric-strip,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

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

  .mapping-row .compare-arrow {
    justify-self: start;
  }

  .chart {
    min-height: 250px;
    gap: 5px;
    overflow-x: auto;
  }

  .chart-column {
    min-width: 48px;
  }

  .completion {
    padding: 30px 18px;
  }

  .footer {
    padding: 22px 0;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   SIMULATION CLARITY LAYER
   Menegaskan bahwa Guided Demo bukan batas kemampuan BIQORA.
   ============================================================ */

.demo-stamp-critical {
  gap: 6px;
  border-color: #fb923c;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.demo-stamp-critical b {
  font-size: inherit;
  font-weight: 900;
}

.demo-stamp-critical span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #c2410c;
  color: #fff;
  font-size: 12px;
}

.simulation-alert {
  position: relative;
  display: grid;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  border: 2px solid #ea580c;
  border-left-width: 8px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(251, 146, 60, 0.18), transparent 34%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 70%);
  color: #7c2d12;
  box-shadow: 0 12px 30px rgba(154, 52, 18, 0.12);
}

.simulation-alert::after {
  content: "SIMULATION";
  position: absolute;
  right: -10px;
  bottom: -24px;
  color: rgba(194, 65, 12, 0.05);
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 950;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.simulation-alert-prominent {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  margin: 0 0 24px;
  padding: 22px 24px;
}

.simulation-alert-compact {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  margin-bottom: 12px;
  padding: 14px 16px;
}

.simulation-alert-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 50%;
  background: #c2410c;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(234, 88, 12, 0.12);
  font-size: 30px;
  font-weight: 950;
}

.simulation-alert-compact .simulation-alert-icon {
  width: 38px;
  height: 38px;
  box-shadow: 0 0 0 5px rgba(234, 88, 12, 0.11);
  font-size: 22px;
}

.simulation-alert-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.simulation-alert-label {
  display: block;
  margin-bottom: 5px;
  color: #c2410c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.simulation-alert h2,
.simulation-alert strong {
  display: block;
  margin: 0;
  color: #7c2d12;
}

.simulation-alert h2 {
  max-width: 860px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.18;
}

.simulation-alert-compact strong {
  font-size: 16px;
  line-height: 1.35;
}

.simulation-alert p {
  max-width: 980px;
  margin: 8px 0 0;
  color: #854d2b;
  line-height: 1.55;
}

.simulation-alert-compact p {
  margin-top: 4px;
  font-size: 13px;
}

.simulation-alert-points {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.simulation-alert-points span {
  padding: 6px 9px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #9a3412;
  font-size: 12px;
}

.button-simulation {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #9a3412;
  border-radius: 6px;
  background: #9a3412;
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
}

.button-simulation:hover {
  background: #7c2d12;
}

.demo-data-note {
  margin: -2px 0 14px;
  padding: 8px 12px;
  border-left: 3px solid #d97706;
  background: #fffbeb;
  color: #713f12;
  font-size: 12px;
  font-weight: 700;
}

.scope-modal-intro {
  padding: 14px 16px;
  border-left: 5px solid #c2410c;
  background: #fff7ed;
}

.scope-modal-intro strong {
  color: #7c2d12;
  font-size: 17px;
}

.scope-modal-intro p {
  margin: 6px 0 0;
  color: #854d2b;
}

.scope-modal-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.scope-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.scope-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 17px;
}

.scope-card p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.scope-card ul {
  margin: 0;
  padding-left: 18px;
  color: #35465b;
  font-size: 13px;
}

.scope-card li + li {
  margin-top: 5px;
}

.scope-comparison {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.scope-comparison > div:not(.scope-comparison-arrow) {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
}

.scope-comparison > div:last-child {
  border-color: #79c9c1;
  background: var(--surface-teal);
}

.scope-comparison span,
.scope-comparison strong,
.scope-comparison p {
  display: block;
}

.scope-comparison span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-comparison strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
}

.scope-comparison p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.scope-comparison-arrow {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 28px;
  font-weight: 950;
}

.visitor-consent-important {
  border: 2px solid #ea580c;
  background: #fff7ed;
}

.visitor-consent-important:has(input:checked) {
  border-color: #0c766f;
  background: var(--surface-teal);
}

.completion-scope-note {
  max-width: 880px;
  margin: 18px auto 0;
  text-align: left;
}

.footer-disclaimer {
  max-width: 620px;
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px !important;
  opacity: 0.9;
}

@media (max-width: 980px) {
  .simulation-alert-prominent,
  .simulation-alert-compact {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .simulation-alert .button,
  .simulation-alert .button-simulation {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .simulation-alert-prominent,
  .simulation-alert-compact {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .simulation-alert-icon,
  .simulation-alert-compact .simulation-alert-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .simulation-alert .button,
  .simulation-alert .button-simulation {
    grid-column: 1;
    width: 100%;
  }

  .simulation-alert-label {
    font-size: 11px;
  }

  .demo-stamp-critical b {
    font-size: 0;
  }

  .demo-stamp-critical b::after {
    content: "SIMULASI";
    font-size: 11px;
  }

  .scope-modal-grid,
  .scope-comparison {
    grid-template-columns: 1fr;
  }

  .scope-comparison-arrow {
    transform: rotate(90deg);
    min-height: 28px;
  }
}
