/* CompresLM portal — light, strict SaaS (LiteLLM-adjacent). Keep UI sparse. */
:root {
  --ink: #0b1220;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --paper-2: #f8fafc;
  --paper-3: #f1f5f9;
  --accent: #4f46e5;
  --accent-deep: #3730a3;
  --ok: #059669;
  --warn: #d97706;
  --danger: #dc2626;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --brand-font: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--sans);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; }
.wrap-narrow { width: min(720px, calc(100% - 2rem)); margin: 0 auto; }

/* Nav is full-bleed (spans the whole viewport) with a centered inner row,
   so the border/blur background never looks clipped on wide screens. */
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  position: relative;
}
.nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.nav .brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; flex-shrink: 0; line-height: 0; align-self: center; }
.brand-mark svg { display: block; }
.brand-word {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}
.nav .brand span { color: var(--accent); }
.nav-links { display: flex; gap: 1.15rem; align-items: center; flex-wrap: wrap; }
.nav-links a:not(.btn) { color: var(--ink-soft); font-size: 0.92rem; text-decoration: none; white-space: nowrap; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a.btn { font-size: 0.92rem; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.75rem 1rem 1.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.55rem 0.25rem; border-radius: 6px; }
  .nav-links a.btn {
    justify-content: flex-start;
    padding: 0.6rem 0.75rem;
    margin-top: 0.4rem;
  }
  /* Extra breathing room between stacked action buttons (e.g. Log in /
     Start free) — the parent's small text-link gap reads as "stuck
     together" once applied to solid buttons. */
  .nav-links a.btn + a.btn { margin-top: 0.55rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-3); }
.btn-danger { background: #fff; color: var(--danger); border-color: #fecaca; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.hero {
  padding: 3.25rem 0 2.5rem;
  text-align: left;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-copy, .hero-visual { min-width: 0; }
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
  max-width: 17ch;
  overflow-wrap: break-word;
}
.hero p.lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 42ch;
  margin: 0 0 0.85rem;
}
.live-ticker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem 0.5rem 0.7rem;
  margin: 0 0 1.5rem;
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.live-ticker .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}
.live-ticker span#typewriter {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 auto;
}
.live-ticker .cursor { display: inline-block; width: 1px; height: 0.9em; background: var(--accent-deep); margin-left: 1px; animation: blink 0.9s steps(1) infinite; flex-shrink: 0; }
@keyframes blink { 50% { opacity: 0; } }
@media (max-width: 480px) {
  .live-ticker span#typewriter { font-size: 0.76rem; }
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Hero visual: animated price / savings card + live calculator */
.price-card {
  background: linear-gradient(155deg, #111827 0%, #1e1b4b 60%, #312e81 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(30, 27, 75, 0.32);
  position: relative;
  overflow: hidden;
  animation: cardIn 0.6s ease-out;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.price-card .badge {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #a5f3c0;
}
.price-card .price-head { padding-bottom: 1.1rem; border-bottom: 1px dashed rgba(255,255,255,0.16); }
.price-card .price-row { margin-top: 0.9rem; }
.price-card .old { text-decoration: line-through; opacity: 0.55; font-size: 1.05rem; }
.price-card .new { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin: 0.1rem 0 0; line-height: 1; }
.price-card .unit { font-size: 0.8rem; opacity: 0.65; font-weight: 500; }

.price-card .calc-label {
  margin: 1.1rem 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.price-card .calc {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1.2rem;
}
.price-card .calc-field { margin-bottom: 0.9rem; }
.price-card .calc-field:last-of-type { margin-bottom: 1rem; }
.price-card .calc label { display: block; color: rgba(255,255,255,0.68); font-size: 0.76rem; margin-bottom: 0.35rem; }
.price-card .calc select,
.price-card .calc input[type="number"] {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: border-color 0.12s, background 0.12s;
}
.price-card .calc select:focus,
.price-card .calc input[type="number"]:focus {
  outline: none;
  border-color: #a5b4fc;
  background: rgba(255,255,255,0.14);
}
.price-card .calc select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a5b4fc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 15px;
}
.price-card .calc select option { color: #0b1220; }
.price-card .calc input[type="number"] {
  appearance: none;
  -moz-appearance: textfield;
}
.price-card .calc input[type="number"]::-webkit-inner-spin-button,
.price-card .calc input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Cross-browser custom range slider. Track height/fill lives on the
   ::-webkit-slider-runnable-track / ::-moz-range-track pseudo-elements
   (never on the bare <input>) — that's what keeps the thumb's hit area
   and drag tracking accurate across Chrome/Safari/Firefox. */
.price-card .calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 18px;
  background: transparent;
  margin: 0.35rem 0 0;
  display: block;
  cursor: pointer;
}
.price-card .calc input[type="range"]:focus { outline: none; }
.price-card .calc input[type="range"]:focus::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(165, 180, 252, 0.35); }
.price-card .calc input[type="range"]:focus::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(165, 180, 252, 0.35); }

.price-card .calc input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, #818cf8 var(--range-pct, 70%), rgba(255,255,255,0.18) var(--range-pct, 70%));
}
.price-card .calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent-deep);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: box-shadow 0.12s;
}

.price-card .calc input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.price-card .calc input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #818cf8;
}
.price-card .calc input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent-deep);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: box-shadow 0.12s;
}
.price-card .calc-results {
  margin-top: 0.3rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.price-card .calc-out {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  padding: 0.38rem 0;
}
.price-card .calc-out strong { color: #fff; font-weight: 700; }
.price-card .calc-out.save {
  margin-top: 0.15rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255,255,255,0.14);
  color: #a5f3c0;
  font-size: 0.88rem;
}
.price-card .calc-out.save strong { color: #a5f3c0; }

.section { padding: 2.5rem 0; }
.section h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  overflow-wrap: break-word;
}
.section p { color: var(--ink-soft); margin: 0 0 1rem; max-width: 60ch; }
.section ul { color: var(--ink-soft); margin: 0 0 1rem; max-width: 62ch; padding-left: 1.2rem; }
.section ul li { margin: 0 0 0.4rem; }

.whatsnew {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: 0 0 1.4rem;
  max-width: 62ch;
}
.whatsnew .tag {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.whatsnew p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* Request-flow diagram: who sends what, to whom, and what comes back */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1 1 180px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.flow-step .flow-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.flow-step h4 { margin: 0 0 0.3rem; font-size: 0.88rem; letter-spacing: -0.01em; }
.flow-step p { margin: 0; font-size: 0.82rem; color: var(--muted); }
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line-strong, var(--line));
  font-size: 1.1rem;
  flex: 0 0 auto;
  padding: 0 0.1rem;
}
@media (max-width: 800px) {
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); padding: 0.1rem 0; }
}

.kv-table-wrap { overflow-x: auto; margin: 0 0 1rem; border: 1px solid var(--line); border-radius: 10px; }
.kv-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 0.86rem; margin: 0; }
.kv-table th, .kv-table td { text-align: left; padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.kv-table th { color: var(--muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }
.kv-table tr:last-child td { border-bottom: none; }
.kv-table td.mono { white-space: nowrap; }
.kv-table .req { color: var(--accent); font-weight: 600; font-size: 0.76rem; }
.kv-table .opt { color: var(--muted); font-weight: 600; font-size: 0.76rem; }

/* Proof section: three distinct, single-purpose charts instead of one mixed-scale chart */
.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}
@media (max-width: 920px) {
  .proof-grid { grid-template-columns: 1fr; }
}
.chart-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.chart-card h4 { margin: 0 0 0.15rem; font-size: 0.94rem; letter-spacing: -0.01em; }
.chart-card .sub { color: var(--muted); font-size: 0.78rem; margin: 0 0 0.85rem; }
.chart-canvas-wrap { position: relative; height: 190px; width: 100%; }
.chart-canvas-wrap--tall { height: 230px; }
.chart-note { color: var(--muted); font-size: 0.78rem; margin: 0.7rem 0 0; line-height: 1.45; }
.legend-dot { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 0.35rem; vertical-align: -1px; }

.ring-row { display: flex; gap: 1.5rem; align-items: center; justify-content: center; flex: 1; padding: 0.5rem 0 1.5rem; }
.ring {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--paper);
}
.ring .val { position: relative; font-weight: 700; font-size: 1rem; }
.ring .lbl { position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.74rem; color: var(--muted); white-space: nowrap; }

.cmp-table-wrap { overflow-x: auto; margin-top: 0.85rem; border: 1px solid var(--line); border-radius: 10px; }
.cmp-table { width: 100%; min-width: 420px; border-collapse: collapse; font-size: 0.88rem; }
.cmp-table th, .cmp-table td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
.cmp-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--paper-3);
}
.cmp-table td + td, .cmp-table th + th { border-left: 1px solid var(--line); }
.cmp-table td strong { color: var(--ok); }
.cmp-table tbody tr:last-child td { border-bottom: none; color: var(--muted); font-size: 0.85rem; }
.cmp-table tbody tr:nth-child(even) td { background: var(--paper-2); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.stat .n {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat .l { color: var(--muted); font-size: 0.82rem; margin-top: 0.15rem; }

.chart-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.chart-box canvas { width: 100% !important; max-height: 260px; }

.code {
  background: var(--ink);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  overflow-x: auto;
  line-height: 1.5;
}
.code .c { color: #94a3b8; }

.pricing {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  .pricing { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

footer.site {
  margin-top: 3rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
footer.site .robot-toggle {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Forms */
label { display: block; font-size: 0.85rem; font-weight: 600; margin: 0 0 0.35rem; color: var(--ink-soft); }
input, textarea, select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(79, 70, 229, 0.25);
  border-color: var(--accent);
}
.field { margin-bottom: 0.9rem; }
.form-card { max-width: 420px; margin: 2rem auto; }
.hint { color: var(--muted); font-size: 0.82rem; margin-top: 0.35rem; }
.err { color: var(--danger); font-size: 0.88rem; margin: 0.5rem 0; }
.okmsg { color: var(--ok); font-size: 0.88rem; margin: 0.5rem 0; }

.progress {
  height: 8px;
  background: var(--paper-3);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.progress.warn > span { background: var(--warn); }
.progress.danger > span { background: var(--danger); }

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  max-width: 420px;
  width: 100%;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.modal h3 { margin: 0 0 0.5rem; }
.modal p { color: var(--muted); font-size: 0.92rem; }
.modal .actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }

.hidden { display: none !important; }
.mono { font-family: var(--mono); font-size: 0.85rem; }
.row { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.space-between { justify-content: space-between; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
