:root {
  color-scheme: light;
  --canvas: #f6f4ef;
  --canvas-deep: #efece3;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-green: #e4efe9;
  --ink: #211f1b;
  --ink-soft: #4f4b43;
  --ink-faint: #6b675e;
  --brand: #1e6b4f;
  --brand-strong: #175540;
  --brand-soft: #e4efe9;
  --accent: #8a5d15;
  --accent-soft: #f5edda;
  --border: #e3dfd5;
  --border-strong: #d4cec0;
  --danger: #b3362b;
  --danger-soft: #f7e7e4;
  --shadow: 0 0.75rem 2rem rgba(33, 31, 27, 0.14);
  --shadow-soft: none;
  --radius-small: 0.625rem;
  --radius-medium: 0.75rem;
  --radius-large: 0.75rem;
  --header-height: 4.25rem;
  --max-width: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.site-menu-open,
html.site-menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--canvas);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-strong);
  text-underline-offset: 0.16em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

button,
summary {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 8vw, 4.75rem);
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
}

h3 {
  font-size: 1.25rem;
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 0.125rem solid #ffffff;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.3rem var(--brand-strong);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--brand-strong);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(0.75rem);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  flex: 0 0 auto;
}

.site-menu {
  position: relative;
  z-index: 2;
  justify-self: end;
}

.site-menu summary {
  min-width: 5.5rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface-strong);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.05rem;
  height: 0.125rem;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-icon {
  position: relative;
  background: transparent;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -0.22rem;
}

.menu-icon::after {
  top: 0.22rem;
}

.site-menu[open] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-menu[open] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-menu-backdrop {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: calc(100dvh - var(--header-height));
  display: block;
  content: "";
  background: rgba(33, 31, 27, 0.42);
  backdrop-filter: blur(0.15rem);
  cursor: pointer;
}

.primary-navigation {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 1;
  width: min(20rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.primary-navigation a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.75rem;
  color: var(--ink-soft);
  border-radius: var(--radius-small);
  font-weight: 680;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"] {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.desktop-navigation {
  display: none;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.header-login {
  display: none;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 740;
  text-decoration-thickness: 0.08em;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button:hover {
  border-color: var(--brand-strong);
}

.button-primary {
  color: #fff;
  background: var(--brand);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface-strong);
  border-color: var(--border-strong);
}

.button-soft {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: clamp(2.75rem, 7vw, 5.25rem) 0 clamp(3.25rem, 8vw, 5.5rem);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy .lead {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-list li::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 999px;
  background: var(--brand);
}

.product-preview {
  width: 100%;
  max-width: 30rem;
  margin-block: 0;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.preview-shell {
  overflow: hidden;
  border-radius: inherit;
  background: var(--surface-strong);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
}

.preview-context {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-topbar strong {
  display: block;
  letter-spacing: -0.03em;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0.55rem;
  color: var(--brand-strong);
  border-radius: 0.375rem;
  background: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.preview-status::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--brand);
}

.preview-body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.balance-card,
.preview-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.balance-card {
  padding: 1.15rem;
}

.balance-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 680;
}

.balance-card strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.preview-list {
  overflow: hidden;
  margin: 0;
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
}

.preview-row + .preview-row {
  border-top: 1px solid var(--border);
}

.preview-row dt,
.preview-row dd {
  margin: 0;
  font-size: 0.88rem;
}

.preview-row dt {
  color: var(--ink-soft);
  font-weight: 600;
}

.preview-row dd {
  color: var(--ink);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.preview-row-positive dd {
  color: var(--brand);
}

.preview-row-total {
  border-top: 0.125rem solid var(--ink) !important;
}

.preview-row-total dt,
.preview-row-total dd {
  color: var(--ink);
  font-weight: 800;
}

.preview-note {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.74rem;
  text-align: center;
}

.cash-check-section {
  scroll-margin-top: var(--header-height);
}

.cash-check-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cash-check-layout .section-heading {
  margin-bottom: 0;
}

.cash-check-receipt {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.cash-check-receipt-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.cash-check-receipt-header span {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cash-check-receipt-header strong {
  font-size: 1.05rem;
}

.cash-check-list {
  margin: 0;
}

.cash-check-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.75rem 0.25rem;
}

.cash-check-row + .cash-check-row {
  border-top: 1px solid var(--border);
}

.cash-check-row dt,
.cash-check-row dd {
  margin: 0;
}

.cash-check-row dt {
  color: var(--ink-soft);
  font-weight: 650;
}

.cash-check-row dd {
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.cash-check-row-total {
  border-top: 0.125rem solid var(--ink) !important;
}

.cash-check-row-total dt,
.cash-check-row-total dd {
  color: var(--ink);
  font-weight: 820;
}

.cash-check-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  color: var(--brand-strong);
  font-weight: 800;
}

.cash-check-status span {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-muted {
  border-block: 1px solid var(--border);
  background: var(--canvas-deep);
}

.section-green {
  background: var(--brand-strong);
}

.section-green,
.section-green h2,
.section-green h3,
.section-green .eyebrow {
  color: #fff;
}

.section-green p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading::after {
  width: 4.5rem;
  height: 0.125rem;
  display: block;
  margin-top: 1.25rem;
  content: "";
  background: var(--ink);
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.card-grid,
.steps-grid,
.pricing-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

.card,
.step-card,
.support-card {
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.card p,
.step-card p,
.support-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.card-kicker {
  display: block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--brand-strong);
  border-radius: 0.375rem;
  background: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 820;
}

.feature-list,
.check-list,
.plain-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-top: 1px solid var(--border);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.68rem;
  left: 0.15rem;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.split-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.callout {
  padding: clamp(1.4rem, 4vw, 2.25rem);
  color: var(--ink);
  border: 1px solid #dfcfac;
  border-radius: var(--radius-large);
  background: var(--accent-soft);
}

.callout p {
  color: #5f451c;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 3rem;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.page-hero .lead {
  max-width: 46rem;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface-strong);
}

.pricing-card-featured {
  border: 0.125rem solid var(--brand);
}

.pricing-label {
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  color: var(--brand-strong);
  border-radius: 0.375rem;
  background: var(--brand-soft);
  font-size: 0.75rem;
  font-weight: 820;
}

.pricing-price {
  margin: 0.8rem 0 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 830;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.pricing-price-secondary {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.pricing-card .button {
  margin-top: 1.4rem;
}

.availability-status {
  margin-top: 1.4rem;
  padding: 0.85rem 0.95rem;
  color: var(--brand-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--brand-soft);
}

.pricing-note,
.notice {
  padding: 1rem 1.1rem;
  border: 1px solid #dfcfac;
  border-radius: var(--radius-small);
  background: var(--accent-soft);
  color: #5f451c;
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.comparison-hint {
  margin: -0.75rem 0 1rem;
  color: var(--ink-faint);
  font-size: 0.875rem;
}

.pricing-footnote {
  margin: 0.8rem 0 0;
  color: var(--ink-faint);
  font-size: 0.875rem;
}

.comparison-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--canvas-deep);
}

.comparison-table tbody th {
  font-weight: 760;
}

.comparison-table tr:last-child td,
.comparison-table tr:last-child th {
  border-bottom: 0;
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
  width: 31%;
}

.comparison-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}

.prose-layout {
  display: grid;
  gap: 2rem;
}

.prose-navigation {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface-strong);
}

.prose-navigation h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.prose-navigation nav {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.prose-navigation a {
  padding: 0.45rem 0.55rem;
  color: var(--ink-soft);
  border-radius: 0.5rem;
  text-decoration: none;
}

.prose-navigation a:hover {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.prose {
  min-width: 0;
}

.prose section {
  scroll-margin-top: 6rem;
}

.prose section + section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.prose h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.prose h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose a {
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface-strong);
}

.faq-list summary {
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 1.1rem 1rem;
  color: var(--ink-soft);
}

.support-card a {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 760;
}

.trust-strip {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: var(--surface-strong);
}

.trust-strip p {
  margin: 0;
  color: var(--ink-soft);
}

.trust-strip a {
  font-weight: 740;
}

.error-layout {
  min-height: calc(100vh - 18rem);
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.error-card {
  max-width: 44rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface-strong);
}

.error-code {
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.error-card h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.error-card > p:not(.error-code) {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-footer {
  padding: 2.75rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  background: #173e30;
}

.site-footer .brand,
.site-footer h2,
.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1rem;
}

.footer-brand {
  grid-column: 1 / -1;
  max-width: 24rem;
}

.footer-brand p {
  margin-top: 0.9rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.site-footer nav h2 {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.site-footer nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .card-grid,
  .steps-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .comparison-hint {
    display: none;
  }

  .footer-grid {
    grid-template-columns: minmax(16rem, 1.5fr) 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 56rem) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
  }

  .site-menu {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .header-login {
    display: inline;
  }

  .desktop-navigation {
    justify-self: center;
    position: static;
    min-width: 0;
    display: flex;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .cash-check-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .prose-layout {
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .prose-navigation {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

@media (max-width: 24rem) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .header-actions .button {
    padding-inline: 0.65rem;
    font-size: 0.82rem;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-mark {
    width: 1.95rem;
    height: 1.95rem;
  }

  .site-menu summary {
    padding-inline: 0.65rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 32rem) {
  .product-preview {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
