:root {
  --st-yellow: #f7c948;
  --st-ink: #18181b;
  --st-muted: #71717a;
  --st-border: #e4e4e7;
  --tblr-primary: #e6a700;
  --tblr-primary-rgb: 230, 167, 0;
  --tblr-font-sans-serif: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
  letter-spacing: 0;
}

.st-brand-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--st-border);
  border-radius: .5rem;
  background: #fff7d1;
  color: var(--st-ink);
  font-weight: 700;
}

.st-brand-mark svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.st-hero {
  padding: 6rem 0 4.5rem;
}

.st-section {
  padding: 4.5rem 0;
}

.st-section-tight {
  padding: 3rem 0;
}

.st-kicker {
  color: #9a6700;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.st-copy-lg {
  color: var(--st-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.st-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--st-border);
  border-radius: .5rem;
  background: var(--st-border);
}

.st-decision-grid > div {
  min-height: 10rem;
  padding: 1.25rem;
  background: #fff;
}

.st-report-preview {
  border: 1px solid var(--st-border);
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(24, 24, 27, .06);
}

.st-pricing-anchor,
.st-pricing-card-featured {
  border-color: rgba(var(--tblr-primary-rgb), .55);
  box-shadow: 0 1rem 2.5rem rgba(24, 24, 27, .08);
}

.st-pricing-card {
  border-radius: .5rem;
}

.st-pricing-card li + li {
  margin-top: .35rem;
}

.st-billing-toggle .badge {
  vertical-align: middle;
}

.st-pricing-table-featured {
  background: #fff8d6;
}

.st-waitlist-proof {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--st-border);
  border-radius: .5rem;
  background: #fff;
}

.st-rule {
  height: 1px;
  background: var(--st-border);
}

.st-muted {
  color: var(--st-muted);
}

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

.st-sidebar {
  border-right: 1px solid var(--st-border);
  background: #fff;
}

.st-app-main {
  background: #fafafa;
}

.st-sidebar-subnav {
  margin: -.25rem 0 .35rem 1.25rem;
  padding-left: .75rem;
  border-left: 1px solid var(--st-border);
}

.st-sidebar-subnav .nav-link {
  min-height: 1.75rem;
  padding-top: .125rem;
  padding-bottom: .125rem;
  color: var(--st-muted);
  font-size: .875rem;
}

.st-sidebar-subnav .nav-link.active {
  color: var(--st-ink);
  font-weight: 700;
}

.page-body .page-header {
  margin-bottom: 1.5rem;
}

.st-status-dot {
  display: inline-block;
  width: .625rem;
  height: .625rem;
  border-radius: 999px;
  background: var(--tblr-primary);
}

.st-prewrap {
  white-space: pre-wrap;
}

.st-report-content {
  color: var(--st-ink);
  line-height: 1.75;
}

.st-report-content h2:first-child,
.st-report-content h3:first-child {
  margin-top: 0 !important;
}

.st-report-content p:last-child,
.st-report-content ul:last-child {
  margin-bottom: 0;
}

.st-table-fixed {
  table-layout: fixed;
}

.st-table-fixed td,
.st-table-fixed th {
  overflow-wrap: anywhere;
}

.st-sortable-table th {
  white-space: nowrap;
}

.st-sort-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.st-sort-button[data-sort-direction="asc"]::after {
  content: " asc";
  color: var(--st-muted);
  font-size: .75rem;
  font-weight: 400;
}

.st-sort-button[data-sort-direction="desc"]::after {
  content: " desc";
  color: var(--st-muted);
  font-size: .75rem;
  font-weight: 400;
}

.st-table-summary {
  max-width: 46rem;
}

.st-performance-card .card-header {
  min-height: 4.25rem;
}

.st-performance-summary {
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--st-border);
}

.st-performance-chart {
  min-height: 360px;
  margin: .5rem -.5rem 0;
}

.st-performance-chart .apexcharts-legend-series {
  margin-right: 1rem !important;
}

@media (max-width: 575.98px) {
  .st-performance-card .card-header {
    gap: 1rem;
  }

  .st-performance-card .btn-group {
    width: 100%;
    margin-left: 0 !important;
  }

  .st-performance-card .btn-group .btn {
    flex: 1 1 0;
  }

  .st-performance-chart {
    min-height: 320px;
  }
}

@media (max-width: 991.98px) {
  .st-hero {
    padding: 4rem 0 3rem;
  }

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

@media (max-width: 575.98px) {
  .st-decision-grid {
    grid-template-columns: 1fr;
  }
}
