:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5b6860;
  --paper: #f6f7f2;
  --white: #ffffff;
  --line: #d8e0d9;
  --green: #27724b;
  --green-dark: #1c5638;
  --red: #b83238;
  --gold: #d5a426;
  --soft-green: #e8f0ea;
  --soft-red: #faecec;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(246, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 174px; max-width: 44vw; }
.site-header-label {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 18px);
  font-size: 15px;
  font-weight: 800;
}
.site-nav a, .footer-links a { text-decoration: none; }
.site-nav a:hover, .footer-links a:hover { color: var(--green); }
.site-nav a.is-active { color: var(--green); }
.site-nav .nav-cta {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: linear-gradient(120deg, rgba(39, 114, 75, 0.13), transparent 44%), linear-gradient(24deg, rgba(184, 50, 56, 0.09), transparent 48%), var(--white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p, li { overflow-wrap: anywhere; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
}
h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}
h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.18; }
.lead, .hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--green);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}
.button.primary { color: var(--white); background: var(--green); }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { color: var(--green); background: transparent; }
.button-small {
  min-height: 38px;
  padding: 8px 12px;
}
.product-shot {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--gold);
  overflow: hidden;
}
.product-shot img { display: block; width: 100%; }
.shot-caption {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.image-grid.two-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.screenshot-list .card { min-height: 128px; }
.gallery-group {
  margin-top: 34px;
}
.gallery-group h3 {
  margin-bottom: 16px;
}
.image-grid .product-shot {
  box-shadow: none;
}
.feature-row .product-shot {
  max-width: 520px;
  margin: 18px 0 0;
  box-shadow: none;
}
.feature-row .product-shot + .product-shot {
  margin-top: 14px;
}
.image-grid .product-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.feature-list {
  margin: 12px 0 0;
  padding-left: 20px;
}
.feature-list li {
  color: var(--muted);
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.gallery-trigger img {
  display: block;
  width: 100%;
}
.image-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(23, 33, 28, 0.78);
}
.image-overlay.is-open {
  display: flex;
}
.image-overlay__inner {
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}
.image-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.image-overlay__close {
  min-width: 44px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.image-overlay img {
  display: block;
  width: 100%;
  height: auto;
}
.section { padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px); }
.section.white { background: var(--white); }
.section.green { background: var(--soft-green); }
.section-header { max-width: 820px; margin-bottom: 34px; }
.section-header h2 { max-width: 760px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid > *, .admin-grid > *, .form-wrap > * { min-width: 0; }
.card {
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.card.tint { background: var(--paper); }
.card p, .text-page p, .text-page li { color: var(--muted); }
.legal-content {
  max-width: none;
}
.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  max-width: 1120px;
}
.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(120deg, #ffffff, #f4f8f2);
}
.workflow-rail::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 41px;
  height: 2px;
  background: var(--line);
}
.workflow-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.workflow-rail span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}
.workflow-rail h3 {
  margin-bottom: 6px;
}
.workflow-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.page-hero {
  padding: clamp(46px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}
.page-hero .lead { margin-bottom: 0; }
.feature-showcase {
  display: grid;
  gap: 8px;
}
.tabs-list { display: grid; gap: 18px; }
.feature-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.faq-showcase {
  max-width: 1160px;
}
.faq-row {
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
}
.faq-question-list {
  display: grid;
  gap: 14px;
}
.faq-question-item {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.faq-question-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.faq-question-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
}
.faq-question-item p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}
.timeline { display: grid; gap: 18px; max-width: 880px; }
.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.compact-timeline article {
  padding: 18px;
}
.compact-timeline h2,
.faq-grid h2 {
  font-size: 20px;
}
.timeline time { display: inline-block; margin-bottom: 8px; color: var(--red); font-weight: 900; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1020px;
}
.faq-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}
.faq-start-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1160px;
  margin-bottom: 42px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f7f0 100%);
  box-shadow: 0 16px 42px rgba(23, 33, 28, 0.07);
}
.faq-start-panel h2 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 46px);
}
.faq-start-panel p {
  color: var(--muted);
}
.faq-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.faq-path article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}
.faq-path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}
.faq-path strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}
.faq-path p {
  margin-bottom: 0;
  font-size: 14px;
}
.faq-board {
  display: grid;
  gap: 38px;
  max-width: 1160px;
}
.faq-topic {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  border-top: 2px solid var(--line);
}
.faq-topic:first-child {
  padding-top: 0;
  border-top: 0;
}
.faq-topic-copy {
  position: sticky;
  top: 104px;
}
.faq-topic-copy .badge {
  display: inline-flex;
  margin-bottom: 16px;
}
.faq-topic-copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}
.faq-topic-copy p {
  color: var(--muted);
}
.faq-answer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-answer {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 33, 28, 0.05);
}
.faq-answer::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: var(--red);
}
.faq-answer h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}
.license-overview-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.license-card,
.price-card,
.mini-price-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.license-card .badge,
.price-card .badge {
  display: inline-flex;
  margin-bottom: 16px;
}
.license-card h3,
.price-card h3 {
  margin-top: 2px;
}
.price-card.is-featured {
  border-color: #b6d7c2;
  background: #fbfffc;
}
.price {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}
.plus-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.plus-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mini-price-card {
  min-height: 0;
}
.mini-price-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}
.image-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 18px;
  border: 1px dashed #9eaaa2;
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}
.image-placeholder-large {
  min-height: 320px;
}
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.value-strip article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.value-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}
.value-strip p {
  margin: 0;
  color: var(--muted);
}
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}
.form-wrap > form:only-child {
  grid-column: 1 / -1;
}
form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.portal-nav form,
.card form {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
input, textarea, select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bcc9c0;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}
.checkbox-row input {
  width: auto;
  margin: 0;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft-red);
  border: 1px solid #ecc4c4;
  color: #64272a;
}
.legal-placeholder {
  padding: 18px;
  border-left: 5px solid var(--gold);
  background: #fff8df;
}
.flash {
  margin: 0;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.flash-success {
  background: var(--soft-green);
  color: var(--green-dark);
}
.flash-error {
  background: var(--soft-red);
  color: #64272a;
}
.plain-list {
  margin: 8px 0 0;
  padding-left: 20px;
}
.portal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.portal-subnav {
  margin-top: -6px;
}
.portal-nav a, .text-link, .link-button {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}
.button.danger {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}
.badge-success {
  border-color: #b6d7c2;
  color: var(--green-dark);
  background: var(--soft-green);
}
.badge-warning {
  border-color: #ead48b;
  color: #5a4610;
  background: #fff8df;
}
.badge-muted {
  color: var(--muted);
  background: #eef1ee;
}
.filter-bar {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(5, minmax(130px, 1fr)) auto auto;
  align-items: end;
}
.live-filter-bar {
  grid-template-columns: minmax(180px, 1.5fr) repeat(3, minmax(130px, 1fr)) auto auto;
}
.live-mobile-list {
  display: none;
}
.live-mobile-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.live-mobile-card h2 {
  margin: 0 0 4px;
  font-size: 22px;
}
.live-mobile-card p {
  margin: 0;
  color: var(--muted);
}
.live-mobile-card dl {
  margin: 0;
}
.live-mobile-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.live-mobile-card dt {
  color: var(--muted);
  font-weight: 800;
}
.live-mobile-card dd {
  margin: 0;
  text-align: right;
}
.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.admin-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.admin-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.table-card {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  background: var(--paper);
  font-size: 14px;
}
.data-table tr:last-child td {
  border-bottom: 0;
}
.table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.data-table .user-actions-column {
  min-width: 280px;
}
.table-actions.compact {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 4px;
}
.table-actions.compact .button {
  min-height: 28px;
  padding: 4px 7px;
  border-width: 1px;
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}
.table-actions.compact form {
  display: inline-flex;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 0;
}
@media (max-width: 860px) {
  .data-table .user-actions-column {
    min-width: 220px;
  }
  .table-actions.compact {
    flex-wrap: wrap;
  }
}
.code-block {
  max-height: 420px;
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  font: 13px/1.45 Consolas, Monaco, monospace;
  white-space: pre-wrap;
}
.license-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--paper);
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 800; }
@media (max-width: 900px) {
  .site-header, .site-footer { align-items: flex-start; grid-template-columns: 1fr; flex-direction: column; }
  .site-header { position: static; }
  .brand-wrap { flex-wrap: wrap; }
  .site-header-label {
    padding-left: 0;
    border-left: 0;
    font-size: 22px;
    white-space: normal;
  }
  .site-nav { width: 100%; flex-wrap: wrap; }
  .hero, .split, .form-wrap, .feature-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .section, .page-hero, .hero { padding-left: 18px; padding-right: 18px; }
  .page-hero h1 { font-size: clamp(31px, 10vw, 46px); }
  .lead, .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .feature-row {
    gap: 12px;
    padding: 20px 0;
  }
  .faq-row {
    gap: 10px;
  }
  .faq-question-list {
    gap: 10px;
  }
  .faq-question-item {
    padding-bottom: 12px;
  }
  .faq-question-item h3 {
    font-size: 18px;
  }
  .grid, .grid.two, .image-grid, .faq-grid, .faq-start-panel, .faq-path, .faq-topic, .faq-answer-list, .license-overview-grid, .price-grid, .plus-price-panel, .plus-price-list, .value-strip, .workflow-rail { grid-template-columns: 1fr; }
  .faq-topic-copy { position: static; }
  .workflow-rail::before {
    top: 24px;
    bottom: 24px;
    left: 42px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .admin-row, .portal-nav { flex-direction: column; align-items: flex-start; }
  .admin-grid { grid-template-columns: 1fr; }
  .filter-bar, .live-filter-bar { grid-template-columns: 1fr; }
  .data-table { min-width: 760px; }
  .license-flags { flex-direction: column; gap: 10px; }
}
@media (max-width: 700px) {
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .actions .button {
    width: 100%;
  }
  .live-index-section {
    padding-top: 34px;
  }
  .live-index-heading {
    margin-bottom: 18px;
  }
  .live-filter-bar {
    gap: 10px;
  }
  .live-filter-bar input,
  .live-filter-bar select,
  .live-filter-bar .button {
    width: 100%;
  }
  .live-desktop-table {
    display: none;
  }
  .live-mobile-list {
    display: grid;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }
  .brand img {
    width: 150px;
    max-width: 58vw;
  }
  .site-header-label {
    font-size: 20px;
  }
  .site-nav {
    gap: 8px;
    font-size: 14px;
  }
  .site-nav a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .site-nav .nav-cta {
    padding: 8px 10px;
  }
  h1 {
    font-size: clamp(32px, 11vw, 44px);
  }
  h2 {
    font-size: clamp(23px, 8vw, 31px);
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .page-hero {
    padding-top: 40px;
    padding-bottom: 42px;
  }
  .card,
  .license-card,
  .price-card,
  .mini-price-card {
    padding: 18px;
  }
  .workflow-rail {
    padding: 18px;
  }
  .product-shot {
    box-shadow: none;
  }
  .site-footer {
    padding: 24px 16px;
  }
  .footer-links {
    gap: 10px 14px;
  }
}
