:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-white: #ffffff;
  --color-bg-muted: #f5f6f2;
  --color-bg-subtle: #fafaf7;
  --color-admin-bg: #f1f2ef;
  --color-surface: #ffffff;
  --color-surface-alt: #f3f3f3;
  --color-text: #111111;
  --color-text-muted: #5f5f5f;
  --color-text-soft: #767676;
  --color-border: #e5e5e5;
  --color-border-strong: #d4d4d4;
  --color-dark: #111111;
  --color-dark-hover: #2a2a2a;
  --color-dark-muted: #a3a3a3;
  --color-dark-border: #2c2c2c;
  --color-accent: #173f31;
  --color-accent-hover: #0f3025;
  --color-accent-soft: #edf5ef;
  --color-accent-border: #b9d4c4;
  --color-active-bg: #9cf3b5;
  --color-active-text: #0b3b2a;
  --color-focus: #173f31;
  --color-thumbnail-start: #eeeeee;
  --color-thumbnail-end: #fafafa;
  --color-thumbnail-line: #cfcfcf;
  --color-thumbnail-fill: #f6f6f6;
  --color-thumbnail-red: #af2333;
  --color-thumbnail-gold: #d59b2b;
  --container: 1240px;
  --container-narrow: 820px;
  --space-section: clamp(58px, 7vw, 96px);
  --space-section-tight: clamp(42px, 5vw, 72px);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 18px 55px rgba(17, 17, 17, 0.09);
  --shadow-subtle: 0 1px 2px rgba(17, 17, 17, 0.06);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body,
.site-header,
main,
section,
footer {
  max-width: 100%;
}

main,
section {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  padding: 8px 12px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100vw - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 720;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-nav {
  height: 46px;
}

.brand-logo-footer {
  height: 62px;
}

.footer-brand .wordmark {
  width: 174px;
  overflow: hidden;
}

.footer-brand .brand-logo-footer {
  max-width: none;
}

.desktop-nav,
.nav-actions,
.mobile-nav {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 30px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.desktop-nav a,
.mobile-nav a:not(.button) {
  position: relative;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:not(.button):hover {
  color: var(--color-accent);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  opacity: 0;
  transform: scaleX(0.55);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  gap: 18px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--color-accent);
  color: var(--color-white);
}

.button-dark:hover {
  background: var(--color-accent-hover);
}

.button-light {
  border-color: var(--color-border-strong);
  background: var(--color-bg);
  color: var(--color-text);
}

.button-light:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.button-small {
  min-height: 36px;
  padding-inline: 14px;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
}

.menu-button span:not(.sr-only) + span {
  margin-left: -15px;
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
}

.section,
.section-tight {
  padding-block: var(--space-section);
}

.section-tight {
  padding-top: var(--space-section-tight);
}

.section-muted {
  background: var(--color-bg-muted);
}

.section-compact {
  padding-block: clamp(44px, 6vw, 76px);
}

.hero {
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(to bottom, var(--color-bg) 0, var(--color-bg) 72%, var(--color-bg-muted) 72%, var(--color-bg-muted) 100%);
}

.hero-inner,
.centered-copy,
.section-heading {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
}

.product-logo {
  display: block;
  width: min(360px, 82vw);
  height: auto;
  margin: 0 auto 22px;
  border-radius: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--color-dark-muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 5.4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy,
.centered-copy p,
.section-heading p,
.section-copy p {
  color: var(--color-text-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-copy {
  max-width: 690px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.supporting-line {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 15px;
}

.hero-preview {
  margin-top: 42px;
}

.app-frame {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: var(--color-admin-bg);
  box-shadow: var(--shadow-soft);
}

.product-ui {
  min-width: 980px;
  padding: 26px;
}

.product-ui-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.ui-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.ui-heading h2,
.ui-heading h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.ui-heading p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 15px;
}

.interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px !important;
  color: var(--color-accent) !important;
  font-size: 13px !important;
  font-weight: 720;
}

.interaction-hint span {
  position: relative;
  width: 3px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-accent);
  animation: arrow-nudge 1400ms ease-in-out infinite;
}

.interaction-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  transform: translateX(-50%) rotate(45deg);
}

.view-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
}

.view-tabs {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.view-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.view-tabs button {
  border-radius: var(--radius-md);
  padding: 8px 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 690;
}

.view-tabs .active {
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  padding: 8px 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.toolbar-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 230px;
  gap: 14px;
  margin-bottom: 12px;
}

.toolbar-secondary {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.search-field,
.select-control,
.tool-button {
  min-height: 42px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 15px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
}

.search-field span {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-text-soft);
  border-radius: 50%;
}

.search-field span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text-soft);
  transform: rotate(45deg);
}

.select-control,
.tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-weight: 690;
}

.select-control {
  justify-content: space-between;
  gap: 10px;
}

.select-control span {
  color: var(--color-text-soft);
  font-weight: 620;
}

.select-control strong {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.15;
}

.select-control::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-soft);
  border-bottom: 2px solid var(--color-text-soft);
  transform: rotate(45deg) translateY(-2px);
}

.save-view {
  min-width: 150px;
}

.result-count {
  margin: 24px 0 12px;
  color: var(--color-text);
  font-size: 15px;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: 15px;
}

.product-table th,
.product-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
}

.product-table th {
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 690;
}

.product-table tr:last-child td {
  border-bottom: 0;
}

.product-cell {
  display: flex;
  min-width: 300px;
  align-items: center;
  gap: 12px;
}

.thumb {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 46px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, var(--color-thumbnail-start), var(--color-thumbnail-end));
}

.thumb::before,
.thumb::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border: 0;
  border-radius: 999px;
  background: var(--color-dark);
}

.thumb::before {
  left: 14px;
  box-shadow:
    inset 0 10px 0 var(--color-thumbnail-red),
    inset 0 20px 0 var(--color-thumbnail-fill),
    inset 0 30px 0 var(--color-accent);
}

.thumb::after {
  right: 14px;
  box-shadow:
    inset 0 12px 0 var(--color-thumbnail-fill),
    inset 0 22px 0 var(--color-thumbnail-gold),
    inset 0 32px 0 var(--color-dark);
}

.product-cell strong {
  display: block;
  font-weight: 650;
}

.product-cell span {
  display: block;
  color: var(--color-text-soft);
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-bg-muted);
  padding: 3px 8px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 620;
}

.status:not(.status-draft) {
  background: var(--color-active-bg);
  color: var(--color-active-text);
}

.status-draft {
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
}

.metric-strong {
  font-weight: 700;
}

.integration-strip {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  padding-block: 22px;
}

.integration-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.integration-inner p {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 660;
}

.integration-inner ul,
.field-grid,
.comparison-table {
  margin: 0;
  padding: 0;
}

.integration-inner ul,
.field-grid {
  list-style: none;
}

.integration-inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.integration-inner li {
  border: 1px solid var(--color-accent-border);
  border-radius: 999px;
  background: var(--color-accent-soft);
  padding: 8px 12px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 650;
}

.need-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.need-layout > * {
  min-width: 0;
}

.need-intro {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 720;
}

.need-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.need-checklist li {
  position: relative;
  min-height: 62px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 16px 16px 16px 42px;
  color: var(--color-text);
  font-weight: 650;
  line-height: 1.35;
  box-shadow: var(--shadow-subtle);
}

.need-checklist li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.field-grid li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.split-section > * {
  min-width: 0;
}

.section-copy {
  max-width: 520px;
}

.comparison-table,
.mini-panel,
.pricing-card,
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-subtle);
}

.comparison-table {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.comparison-head {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
}

.comparison-head strong,
.comparison-row span {
  padding: 14px 16px;
  overflow-wrap: anywhere;
}

.comparison-head strong {
  color: var(--color-text);
  font-size: 14px;
  text-transform: uppercase;
}

.comparison-head strong:last-child,
.comparison-row span:last-child {
  border-left: 1px solid var(--color-border);
}

.comparison-head strong:last-child {
  color: var(--color-accent);
}

.comparison-row {
  border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span:first-child {
  color: var(--color-text-muted);
}

.comparison-row span:last-child {
  color: var(--color-text);
  font-weight: 650;
}

.comparison-row span {
  font-size: 16px;
}

.column-showcase {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}

.column-showcase > * {
  min-width: 0;
}

.column-showcase .product-ui {
  min-width: 0;
  padding: 22px;
}

.column-showcase .ui-heading {
  margin-bottom: 18px;
}

.column-showcase .view-actions {
  gap: 20px;
}

.column-showcase .toolbar-card {
  padding: 18px;
}

.column-showcase .toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 220px);
  gap: 12px;
}

.column-showcase .select-control span,
.column-showcase .select-control strong {
  white-space: nowrap;
}

.column-showcase .product-table {
  table-layout: fixed;
  font-size: 14px;
}

.column-showcase .product-table th,
.column-showcase .product-table td {
  padding: 12px 14px;
}

.column-showcase .product-table th:first-child,
.column-showcase .product-table td:first-child {
  width: 34%;
}

.column-showcase .product-cell {
  min-width: 0;
  gap: 10px;
}

.column-showcase .product-cell > span:last-child {
  min-width: 0;
}

.column-showcase .product-cell strong,
.column-showcase .product-cell > span:last-child > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-panel {
  overflow-x: auto;
  padding: 16px;
}

.mini-panel h3 {
  font-size: 16px;
}

.column-list {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.column-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--color-text);
  font-size: 13px;
}

.column-list li > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.column-list strong {
  color: var(--color-text-muted);
  font-size: 13px;
}

.column-list .selected {
  color: var(--color-text);
  font-weight: 650;
}

.checkmark,
.empty-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-dark);
  font-size: 11px;
  font-weight: 750;
}

.empty-check {
  background: var(--color-bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 34px;
}

.feature-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
  min-width: 0;
  overflow: hidden;
}

.feature-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-accent);
  font-size: 38px;
  line-height: 0.95;
  font-weight: 760;
}

.feature-card > p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.workflow-card {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
}

.workflow-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid var(--color-accent-border);
  border-radius: 999px;
  background: var(--color-accent-soft);
  padding: 6px 10px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 760;
}

.workflow-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.mini-panel .product-table {
  min-width: 620px;
}

.dark-section {
  background: var(--color-accent);
  color: var(--color-white);
  padding-block: clamp(58px, 7vw, 86px);
}

.dark-section-compact {
  padding-block: clamp(42px, 5vw, 64px);
}

.dark-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 48px;
}

.dark-inner h2 {
  margin-bottom: 18px;
}

.dark-inner p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.field-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.field-grid li {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 650;
}

.dark-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.dark-check-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--color-active-bg);
}

.page-hero {
  background: var(--color-bg-muted);
  padding-block: clamp(64px, 8vw, 112px);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero h1 {
  margin-inline: 0;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.about-card,
.contact-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-subtle);
}

.about-card {
  display: grid;
  gap: 18px;
}

.about-card strong {
  color: var(--color-accent);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-bg);
  padding: 0 18px 0 22px;
  color: var(--color-text);
  font-weight: 720;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(30, 57, 50, 0.1);
}

.contact-link span {
  color: var(--color-text-soft);
  font-size: 14px;
  font-weight: 650;
}

.legal-hero {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-muted);
  padding-block: clamp(54px, 7vw, 88px);
}

.legal-hero-inner {
  max-width: var(--container-narrow);
}

.legal-hero h1 {
  margin: 0 0 18px;
}

.legal-hero .legal-summary {
  max-width: 720px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.legal-meta {
  margin: 22px 0 0;
  color: var(--color-text-soft);
  font-size: 14px;
}

.legal-page {
  padding-block: clamp(48px, 7vw, 84px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(36px, 7vw, 88px);
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 2px;
  border-left: 1px solid var(--color-border-strong);
  padding-left: 16px;
}

.legal-toc strong {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-toc a {
  padding-block: 5px;
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.legal-toc a:hover {
  color: var(--color-accent);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 104px;
  padding-bottom: 34px;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--color-border);
  padding-top: 34px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(23px, 3vw, 30px);
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0;
  padding-left: 22px;
}

.legal-section a,
.support-detail a {
  color: var(--color-accent);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-note {
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  padding: 18px 20px;
}

.legal-note p {
  color: var(--color-accent);
}

.legal-note p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.support-section {
  padding-block: var(--space-section);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.support-card {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
}

.support-card .support-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 760;
}

.support-card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.support-card p,
.support-detail p,
.support-detail li {
  color: var(--color-text-muted);
}

.support-card p {
  margin: 0;
}

.support-detail {
  max-width: 820px;
}

.support-detail h2 {
  margin-top: 0;
}

.support-detail ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: 34px;
}

.pricing-card p,
.pricing-card li,
.faq-content p {
  color: var(--color-text-muted);
  font-size: 16px;
}

.pricing-grid {
  max-width: 980px;
  margin-inline: auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.pricing-card.featured {
  border-color: var(--color-accent);
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.price strong {
  font-size: 38px;
  line-height: 1;
}

.price span {
  color: var(--color-text-muted);
}

.plan-trial {
  margin: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.plan-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-price-block {
  display: grid;
  gap: 10px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
}

.pricing-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pricing-card .button {
  width: 100%;
}

.plan-action {
  margin-top: auto;
}

.refund-line {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 4px auto 0;
  color: var(--color-text-muted);
  font-size: 16px;
  text-align: center;
}

.faq-wrap {
  max-width: 1060px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  margin-top: 34px;
}

.faq-item {
  align-self: start;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--color-text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 670;
  text-align: left;
}

.faq-trigger span {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
}

.faq-trigger span::before {
  content: "+";
  font-size: 20px;
  line-height: 18px;
}

.faq-trigger[aria-expanded="true"] span::before {
  content: "-";
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.faq-content > div {
  overflow: hidden;
}

.faq-content p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  padding-block: 46px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, max-content));
  justify-content: center;
  justify-items: center;
  gap: 42px;
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-x {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--color-dark);
  padding: 0 16px;
  color: var(--color-white) !important;
  font-size: 13px !important;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-x::before {
  content: "X";
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.social-x:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(30, 57, 50, 0.14);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 14px;
}

.site-footer nav {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.site-footer a,
.footer-bottom {
  color: var(--color-text-muted);
  font-size: 15px;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes arrow-nudge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 65px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    padding: 12px 20px 18px;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    border-radius: var(--radius-sm);
    padding: 12px;
    color: var(--color-text-muted);
  }

  .mobile-nav .button {
    margin-top: 4px;
    color: var(--color-white);
  }

  .integration-inner,
  .need-layout,
  .split-section,
  .dark-inner {
    grid-template-columns: 1fr;
  }

  .integration-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .integration-inner ul {
    justify-content: flex-start;
  }

  .column-showcase {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card > p {
    min-height: 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(calc(100vw - 28px), var(--container));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-logo-nav {
    height: 38px;
  }

  .brand-logo-footer {
    height: 54px;
  }

  .footer-brand .wordmark {
    width: 152px;
  }

  .section,
  .section-tight {
    padding-block: 54px;
  }

  .hero.section-tight {
    padding-top: 42px;
  }

  .hero {
    background:
      linear-gradient(to bottom, var(--color-bg) 0, var(--color-bg) 61%, var(--color-bg-muted) 61%, var(--color-bg-muted) 100%);
  }

  .hero-inner,
  .centered-copy,
  .section-heading {
    text-align: left !important;
  }

  .product-logo {
    width: min(270px, 74vw);
    margin: 0 0 18px;
    border-radius: 12px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    margin-left: 0 !important;
    margin-right: auto !important;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-inner,
  .hero-copy,
  .centered-copy,
  .section-heading {
    max-width: 100%;
  }

  .hero-copy {
    overflow-wrap: break-word;
    margin-left: 0 !important;
    margin-right: auto !important;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-copy,
  .centered-copy p,
  .section-heading p,
  .section-copy p,
  .need-checklist li,
  .integration-inner p {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
  }

  .comparison-head strong,
  .comparison-row span {
    padding: 10px;
  }

  .comparison-head strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .comparison-row span {
    font-size: 13px;
    line-height: 1.35;
  }

  .feature-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .feature-card {
    padding: 16px;
  }

  .feature-card span {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .feature-card h3 {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .feature-card > p {
    font-size: 14px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .workflow-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .workflow-card {
    padding: 16px;
  }

  .workflow-card h3 {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .workflow-card p {
    font-size: 14px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    max-width: 100%;
    gap: 8px;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding-inline: 12px;
  }

  .supporting-line {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-preview {
    width: 100%;
    margin-top: 28px;
    margin-inline: auto;
  }

  .app-frame {
    border-radius: 14px;
  }

  .product-ui {
    width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .ui-heading {
    margin-bottom: 14px;
  }

  .ui-heading h2,
  .ui-heading h3 {
    font-size: 19px;
  }

  .ui-heading p {
    font-size: 14px;
  }

  .interaction-hint {
    font-size: 12px !important;
  }

  .interaction-hint span {
    height: 22px;
  }

  .view-actions {
    gap: 14px;
    margin-bottom: 16px;
  }

  .view-tabs {
    gap: 14px;
  }

  .view-tabs button {
    font-size: 14px;
  }

  .view-tabs .active {
    padding-inline: 12px;
  }

  .save-view {
    min-width: 136px;
  }

  .toolbar-card {
    padding: 16px;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .search-field,
  .select-control,
  .tool-button {
    min-height: 38px;
    font-size: 14px;
  }

  .result-count {
    margin-top: 18px;
    font-size: 14px;
  }

  .product-table {
    min-width: 620px;
    font-size: 14px;
  }

  [data-product-table] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-table th,
  .product-table td {
    padding: 11px 12px;
  }

  .integration-strip {
    padding-block: 18px;
  }

  .integration-inner {
    gap: 14px;
  }

  .integration-inner p {
    font-size: 16px;
  }

  .integration-inner ul {
    width: 100%;
    gap: 8px;
  }

  .integration-inner li {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 13px;
    white-space: normal;
  }

  .need-checklist {
    grid-template-columns: 1fr;
  }

  .need-checklist li {
    min-height: 0;
    padding: 14px 14px 14px 38px;
    font-size: 15px;
  }

  .need-checklist li::before {
    top: 19px;
    left: 16px;
  }

  .column-showcase {
    margin-top: 28px;
  }

  .column-showcase .product-ui {
    padding: 16px;
  }

  .mini-panel {
    padding: 14px;
  }

  .dark-section {
    padding-block: 50px;
  }

  .page-hero {
    padding-block: 54px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-inner,
  .page-hero-copy,
  .contact-card,
  .support-grid,
  .support-card,
  .support-detail {
    min-width: 0;
    width: 100%;
  }

  .page-hero h1,
  .page-hero p,
  .support-card h2,
  .support-card p,
  .support-detail h2,
  .support-detail p,
  .support-detail li {
    overflow-wrap: anywhere;
  }

  .page-hero p {
    font-size: 17px;
  }

  .about-card,
  .contact-card {
    padding: 22px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 0 0 22px;
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
    border-radius: 18px;
    gap: 4px;
    padding-block: 12px;
  }

  .dark-check-list {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .plan-body {
    padding: 22px 22px 0;
  }

  .plan-action {
    padding: 22px;
  }

  .plan-header {
    height: auto;
    padding: 22px;
  }

  .pricing-card p,
  .pricing-card li,
  .faq-content p {
    font-size: 15px;
  }

  .pricing-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price strong {
    font-size: 34px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .nav-actions > .button {
    display: none;
  }

  .nav-shell {
    min-height: 62px;
    gap: 16px;
  }

  .brand-logo-nav {
    height: 34px;
  }

  .product-logo {
    width: min(245px, 76vw);
    margin-bottom: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
  }

  .hero-inner,
  .hero-copy,
  .hero-actions {
    max-width: 100%;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-ui {
    min-width: 0;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 8px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-card {
    padding: 14px;
  }

  .feature-card span {
    font-size: 28px;
  }

  .brand-logo-footer {
    height: 48px;
  }

  .footer-brand .wordmark {
    width: 136px;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* Starbucks-inspired styling experiment. Remove this block to revert the visual direction. */
:root {
  --color-bg: #ffffff;
  --color-bg-muted: #f7f5f0;
  --color-bg-subtle: #f2f0eb;
  --color-admin-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #f9f7f2;
  --color-text: rgba(0, 0, 0, 0.87);
  --color-text-muted: rgba(0, 0, 0, 0.62);
  --color-text-soft: rgba(0, 0, 0, 0.48);
  --color-border: rgba(30, 57, 50, 0.14);
  --color-border-strong: rgba(30, 57, 50, 0.22);
  --color-accent: #006241;
  --color-accent-hover: #004c34;
  --color-accent-soft: #d4e9e2;
  --color-accent-border: rgba(0, 98, 65, 0.24);
  --color-active-bg: #c8f1d3;
  --color-active-text: #1e3932;
  --color-gold: #cba258;
  --radius-sm: 999px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 2px 2px rgba(0, 0, 0, 0.06), 0 12px 28px rgba(30, 57, 50, 0.12);
  --shadow-subtle: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.14);
}

body {
  letter-spacing: -0.01em;
}

.site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 2px 2px rgba(0, 0, 0, 0.06),
    0 0 2px rgba(0, 0, 0, 0.07);
}

.wordmark {
  color: var(--color-accent);
  font-weight: 780;
}

.button {
  min-height: 46px;
  border-radius: 999px;
  padding-inline: 22px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(30, 57, 50, 0.12);
}

.button:active {
  transform: scale(0.96);
}

.button-small {
  min-height: 38px;
  padding-inline: 18px;
}

.button-light {
  border-color: var(--color-accent);
  background: transparent;
  color: var(--color-accent);
}

.hero {
  border-bottom: 0;
  background: var(--color-bg-muted);
}

.hero .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--color-gold);
}

.hero-copy {
  color: rgba(0, 0, 0, 0.66);
}

.app-frame,
.comparison-table,
.mini-panel,
.feature-card,
.workflow-card,
.pricing-card,
.faq-item {
  border-color: rgba(30, 57, 50, 0.14);
  border-radius: 12px;
  box-shadow:
    0 0 0.5px rgba(0, 0, 0, 0.14),
    0 1px 1px rgba(0, 0, 0, 0.14);
}

.app-frame {
  background: var(--color-surface);
  box-shadow:
    0 0 0.5px rgba(0, 0, 0, 0.14),
    0 18px 45px rgba(30, 57, 50, 0.15);
}

.product-ui {
  background: var(--color-surface);
}

.toolbar-card,
.search-field,
.select-control,
.tool-button {
  border-radius: 999px;
}

.toolbar-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.view-tabs .active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.integration-strip {
  background: var(--color-bg);
}

.integration-inner li {
  background: var(--color-accent-soft);
  color: var(--color-active-text);
}

.section-muted {
  background: var(--color-bg-muted);
}

#about,
.feature-summary,
#workflows,
#pricing {
  background: var(--color-bg);
}

.comparison-head {
  background: var(--color-bg-subtle);
}

.comparison-row span:last-child {
  background: rgba(212, 233, 226, 0.42);
}

.feature-card span,
.price strong {
  color: var(--color-accent);
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(212, 233, 226, 0.42), rgba(255, 255, 255, 0) 42px),
    var(--color-surface);
}

.need-checklist li,
.workflow-card {
  border-color: rgba(30, 57, 50, 0.14);
}

.workflow-card span {
  background: var(--color-accent-soft);
  color: var(--color-active-text);
}

.dark-section {
  background: #1e3932;
}

.field-grid li {
  background: #111111;
  color: #ffffff;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 1px rgba(0, 98, 65, 0.16),
    0 12px 28px rgba(30, 57, 50, 0.12);
}

.plan-trial {
  color: var(--color-accent);
}

.pricing-card {
  overflow: hidden;
  padding: 0;
}

.plan-header {
  margin: 0;
  background: #111111;
  height: 124px;
  padding: 26px 28px 24px;
  color: var(--color-white);
}

.plan-header h3 {
  margin: 0 0 8px;
  color: var(--color-white);
}

.plan-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.plan-body {
  padding: 28px 28px 0;
}

.plan-action {
  padding: 28px;
}

.pricing-card .button {
  margin: 0;
}

@media (max-width: 720px) {
  .hero .eyebrow::after {
    margin-inline: 0;
  }
}

/* Shared mobile spacing polish for every page. */
@media (max-width: 720px) {
  .container {
    width: min(calc(100vw - 40px), var(--container));
  }

  .section,
  .section-tight,
  .support-section {
    padding-block: 64px;
  }

  .hero.section-tight {
    padding-top: 50px;
  }

  .page-hero {
    padding-block: 60px;
  }

  .page-hero-inner {
    gap: 32px;
  }

  .about-card,
  .contact-card {
    padding: 26px;
  }

  .contact-card {
    gap: 16px;
  }

  .contact-link {
    padding: 14px 20px;
  }

  .support-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .support-card {
    padding: 24px 22px;
  }

  .support-card .support-number {
    margin-bottom: 20px;
  }

  .support-detail ul {
    gap: 12px;
    margin-block: 22px;
    padding-left: 24px;
  }

  .legal-hero {
    padding-block: 56px;
  }

  .legal-hero h1 {
    margin-bottom: 20px;
  }

  .legal-meta {
    margin-top: 24px;
  }

  .legal-page {
    padding-block: 48px 64px;
  }

  .legal-layout {
    gap: 36px;
  }

  .legal-toc {
    gap: 4px 18px;
    padding-bottom: 28px;
  }

  .legal-toc a {
    padding-block: 7px;
  }

  .legal-section {
    padding-bottom: 38px;
  }

  .legal-section + .legal-section {
    padding-top: 38px;
  }

  .legal-section h2 {
    margin-bottom: 18px;
  }

  .legal-section h3 {
    margin-top: 28px;
    margin-bottom: 10px;
  }

  .legal-section p {
    margin-bottom: 18px;
  }

  .legal-section ul {
    gap: 12px;
    margin-block: 18px;
    padding-left: 24px;
  }

  .legal-note {
    margin-block: 22px;
    padding: 22px;
  }

  .feature-card,
  .workflow-card {
    padding: 20px;
  }

  .need-checklist {
    gap: 12px;
  }

  .need-checklist li {
    padding-block: 17px;
  }

  .column-showcase,
  .feature-grid,
  .workflow-grid,
  .pricing-grid,
  .faq-list {
    margin-top: 30px;
  }

  .site-footer {
    padding-block: 58px 32px;
  }

  .footer-grid {
    gap: 36px;
  }

  .site-footer nav {
    gap: 11px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 26px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100vw - 32px), var(--container));
  }

  .about-card,
  .contact-card,
  .support-card,
  .legal-note {
    padding-inline: 20px;
  }
}
