:root {
  --bg: #0f172a;
  --card: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #14b8a6;
  --accent-dark: #0d9488;
  --danger: #f87171;
  --max: 960px;
  --input-bg: #0f172a;
  --input-border: #475569;
}
[data-theme="light"] {
  --bg: #f9fafb;
  --card: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --input-bg: #ffffff;
  --input-border: #d1d5db;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #334155;
  flex-wrap: wrap;
  gap: 0.75rem;
}
header nav {
  margin-left: auto;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header:not(.site-header--landing) .logo > img {
  height: 28px;
  width: auto;
  max-width: 44px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.95rem; }
nav a:hover { color: var(--accent); }
main { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0 0 1rem; font-weight: 700; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 36rem; margin: 0 auto 1.5rem; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--accent);
  color: #0f172a;
}
.btn-primary:hover { background: var(--accent-dark); color: #0f172a; text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #475569;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 1.35rem;
  border: 1px solid #334155;
}
.card h2 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
footer.site-footer {
  margin-top: 2.5rem;
  padding: 2.25rem 1.25rem 1rem;
  border-top: 1px solid #334155;
  background: rgba(15, 23, 42, 0.35);
}
[data-theme="light"] footer.site-footer {
  border-top-color: #e2e8f0;
  background: var(--card);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.75rem 2rem;
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  text-align: left;
}
.site-footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.site-footer-muted {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.site-footer-address {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.site-footer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.site-footer-line {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer-links li {
  margin-bottom: 0.4rem;
}
.site-footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
}
.site-footer-links a:hover {
  color: var(--accent);
}
.site-footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid #334155;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
[data-theme="light"] .site-footer-bar {
  border-top-color: #e2e8f0;
}
.site-footer-bar-sep {
  margin: 0 0.45rem;
  opacity: 0.6;
}
.site-footer-bar a {
  color: var(--muted);
}
.site-footer-bar a:hover {
  color: var(--accent);
}

footer:not(.site-footer) {
  border-top: 1px solid #334155;
  padding: 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 420px;
  padding: 0.55rem 0.65rem;
  border-radius: 0.4rem;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.85;
}
.form-group select {
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
.error { color: var(--danger); font-size: 0.9rem; margin-top: 0.5rem; }
.success { color: var(--accent); font-size: 0.9rem; margin-top: 0.5rem; }
.pricing-tier h2 { margin-top: 0; }
.badge { font-size: 0.75rem; background: #334155; padding: 0.2rem 0.5rem; border-radius: 0.25rem; color: var(--muted); }

.portal-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}
.portal-spinner {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border: 2px solid #334155;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: portal-spin 0.65s linear infinite;
}
@keyframes portal-spin {
  to { transform: rotate(360deg); }
}
.portal-notice {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 0.5rem;
  border: 1px solid #334155;
  margin-top: 1rem;
}

/* Floating chat widget — dark chrome uses explicit light text (not body --text) so light page theme cannot wash it out */
.ps-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
}
.ps-chat-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  background: var(--accent);
  color: #0f172a;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
[data-theme="light"] .ps-chat-fab {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}
.ps-chat-fab:hover { background: var(--accent-dark); }
.ps-chat-panel {
  width: min(360px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 2rem));
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid #334155;
  border-radius: 0.85rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.ps-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid #334155;
  background: rgba(30, 41, 59, 0.92);
}
.ps-chat-title {
  font-weight: 800;
  color: #f8fafc;
  font-size: 0.95rem;
}
.ps-chat-close {
  border: 1px solid #64748b;
  background: transparent;
  color: #cbd5e1;
  border-radius: 0.5rem;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.ps-chat-close:hover {
  border-color: var(--accent);
  color: #f8fafc;
}
.ps-chat-body {
  padding: 0.9rem;
  height: calc(100% - 56px - 64px - 42px);
  overflow: auto;
}
.ps-chat-msg {
  max-width: 92%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  margin: 0 0 0.6rem;
  border: 1px solid #475569;
  font-size: 0.95rem;
  white-space: pre-wrap;
}
.ps-chat-msg--bot {
  background: rgba(51, 65, 85, 0.95);
  color: #f1f5f9;
}
.ps-chat-msg--user {
  background: rgba(20, 184, 166, 0.22);
  border-color: rgba(45, 212, 191, 0.45);
  color: #ecfdf5;
  margin-left: auto;
}
.ps-chat-msg a {
  color: #5eead4;
  font-weight: 600;
}
.ps-chat-msg a:hover {
  color: #99f6e4;
}
.ps-chat-cta {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.ps-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0 0.75rem;
}
.ps-chat-chip {
  border: 1px solid #64748b;
  background: rgba(15, 23, 42, 0.4);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.85rem;
}
.ps-chat-chip:hover {
  border-color: var(--accent);
  color: #f8fafc;
}
.ps-chat-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid #334155;
  background: rgba(30, 41, 59, 0.65);
}
.ps-chat-input input {
  flex: 1;
  padding: 0.55rem 0.65rem;
  border-radius: 0.4rem;
  border: 1px solid #475569;
  background: #0f172a;
  color: #f8fafc;
}
.ps-chat-input input::placeholder {
  color: #94a3b8;
}
.ps-chat-input input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}
.ps-chat-footer {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.55rem 0.9rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.85rem;
}
.ps-chat-link {
  color: #cbd5e1;
}
.ps-chat-link:hover {
  color: #5eead4;
}
.ps-chat-dot {
  opacity: 0.7;
}

/* Light page theme: chat panel matches page surfaces */
[data-theme="light"] .ps-chat-panel {
  background: var(--card);
  border-color: #cbd5e1;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}
[data-theme="light"] .ps-chat-header {
  background: #e2e8f0;
  border-color: #cbd5e1;
}
[data-theme="light"] .ps-chat-title {
  color: var(--text);
}
[data-theme="light"] .ps-chat-close {
  border-color: #94a3b8;
  color: var(--muted);
}
[data-theme="light"] .ps-chat-close:hover {
  border-color: var(--accent-dark);
  color: var(--text);
}
[data-theme="light"] .ps-chat-msg--bot {
  background: #ffffff;
  border-color: #e2e8f0;
  color: var(--text);
}
[data-theme="light"] .ps-chat-msg--user {
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--text);
}
[data-theme="light"] .ps-chat-msg a {
  color: #0d9488;
}
[data-theme="light"] .ps-chat-msg a:hover {
  color: #0f766e;
}
[data-theme="light"] .ps-chat-chip {
  border-color: #94a3b8;
  background: #f8fafc;
  color: var(--muted);
}
[data-theme="light"] .ps-chat-chip:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
[data-theme="light"] .ps-chat-input {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
[data-theme="light"] .ps-chat-input input {
  background: #ffffff;
  border-color: #cbd5e1;
  color: var(--text);
}
[data-theme="light"] .ps-chat-input input::placeholder {
  color: var(--muted);
}
[data-theme="light"] .ps-chat-footer {
  border-color: #cbd5e1;
  color: var(--muted);
}
[data-theme="light"] .ps-chat-link {
  color: var(--muted);
}
[data-theme="light"] .ps-chat-link:hover {
  color: var(--accent-dark);
}

[data-theme="light"] .btn-primary {
  background: #0d9488;
  color: #ffffff;
}
[data-theme="light"] .btn-primary:hover {
  background: #0f766e;
  color: #ffffff;
}

/* ---------------------------------------------------------------------------
   Landing page (index.html) — split hero + abstract efficiency illustration
   --------------------------------------------------------------------------- */
body.marketing-home {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html[data-theme="light"] body.marketing-home {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 42%, #f3f4f6 100%);
}

.site-header--landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .site-header--landing {
  border-bottom-color: #334155;
  background: rgba(15, 23, 42, 0.92);
}

.site-nav-landing {
  margin-left: auto;
  gap: 1.5rem;
  align-items: center;
}

.site-nav-landing a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--muted);
  text-decoration: none;
}

.site-nav-landing a:hover {
  color: #0d9488;
  text-decoration: none;
}

.nav-cta {
  font-weight: 600 !important;
  color: #111827 !important;
}

html[data-theme="dark"] .nav-cta {
  color: var(--text) !important;
}

.logo-wordmark .logo-text {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-pharma {
  font-weight: 800;
  color: #111827;
}

.logo-sight {
  font-weight: 600;
  color: #374151;
}

.sightops-wordmark .sightops-w-sight,
.sightops-footer-wordmark .sightops-w-sight {
  font-weight: 800;
  color: #0f172a;
}
.sightops-wordmark .sightops-w-ops,
.sightops-footer-wordmark .sightops-w-ops {
  font-weight: 800;
  color: #15803d;
}
html[data-theme="dark"] .sightops-wordmark .sightops-w-sight,
html[data-theme="dark"] .sightops-footer-wordmark .sightops-w-sight {
  color: var(--text);
}
html[data-theme="dark"] .sightops-wordmark .sightops-w-ops,
html[data-theme="dark"] .sightops-footer-wordmark .sightops-w-ops {
  color: var(--accent);
}

.marketing-section-spaced {
  margin-top: 3rem;
}
.marketing-section-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}

html[data-theme="dark"] .logo-pharma,
html[data-theme="dark"] .logo-sight {
  color: var(--text);
}

.logo-img {
  height: 34px;
  width: auto;
  max-width: 52px;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.theme-toggle-btn {
  margin-left: 0.5rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

html[data-theme="dark"] .theme-toggle-btn {
  border-color: #475569;
  background: #1e293b;
}

.main-landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: center;
  text-align: left;
  padding: 1rem 0 3.5rem;
}

.hero-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-analytics-art {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-analytics-art[hidden] {
  display: none !important;
}

.hero-analytics-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

html[data-theme="dark"] .hero-analytics-art img {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(51, 65, 85, 0.55);
}

.hero-cms-photo {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: min(440px, 85vw);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.07);
}

html[data-theme="dark"] .hero-cms-photo {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(51, 65, 85, 0.55);
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

html[data-theme="dark"] .hero-badge {
  background: rgba(30, 41, 59, 0.85);
  border-color: #334155;
  color: #cbd5e1;
}

.hero-badge-icon {
  color: #0d9488;
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  color: #111827;
}

html[data-theme="dark"] .hero-title {
  color: var(--text);
}

.hero-accent {
  color: #0d9488;
}

.hero-lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

html[data-theme="dark"] .hero-lede {
  color: var(--muted);
}

.hero-cta {
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-pill {
  border-radius: 10px;
  padding: 0.7rem 1.35rem;
  font-size: 0.9375rem;
}

html[data-theme="light"] .btn-outline-dark {
  border-color: #d1d5db;
  color: #111827;
  background: #ffffff;
}

html[data-theme="light"] .btn-outline-dark:hover {
  border-color: #0d9488;
  color: #0d9488;
  background: #ffffff;
}

html[data-theme="dark"] .btn-outline-dark {
  border-color: #475569;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

html[data-theme="dark"] .hero-features li {
  color: #e5e7eb;
}

.hero-feature-icon {
  display: flex;
  color: #0d9488;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hero--split {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero--split .hero-visual {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    min-height: 220px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-secondary-links {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
}

body.marketing-home .grid-3 {
  margin-top: 2rem;
}

html[data-theme="light"] body.marketing-home .card {
  border-color: #e5e7eb;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
}

html[data-theme="light"] .use-case-item {
  background: #ffffff;
  border-color: #e5e7eb;
}

body.marketing-home section h2 {
  letter-spacing: -0.02em;
}

/* Landing V2 — calmer below-the-fold */
.hero-secondary-links {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.hero-secondary-sep {
  opacity: 0.55;
  user-select: none;
}
.hero-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-link-btn:hover {
  color: var(--accent-dark);
}

.marketing-use-cases {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}
.marketing-lede-wide {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 46rem;
  line-height: 1.6;
  font-size: 1.02rem;
}
.use-case-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.use-case-item {
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.use-case-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.use-case-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.workflow-block {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.25);
}
html[data-theme="light"] .workflow-block {
  background: #f8fafc;
  border-color: #e5e7eb;
}
.marketing-subhead {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.workflow-ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.workflow-ol li {
  margin: 0.35rem 0;
}
@media (max-width: 900px) {
  .use-case-strip {
    grid-template-columns: 1fr;
  }
}
