/* NotchCommerce — v2 light editorial (Shopify merchant SaaS) */

:root {
  --bg: #f4f6f2;
  --bg-white: #ffffff;
  --bg-soft: #eef2eb;
  --ink: #0f172a;
  --ink-secondary: #334155;
  --ink-muted: #64748b;
  --brand: #0a6e56;
  --brand-hover: #085a47;
  --brand-soft: #e3f3ed;
  --brand-ring: rgba(10, 110, 86, 0.22);
  --shopify: #5e8e3e;
  --border: #dde4dc;
  --border-strong: #c5cfc3;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --max: 1140px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(3.5rem, 7vw, 5.5rem);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 15% -5%, rgba(94, 142, 62, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 10%, rgba(10, 110, 86, 0.08), transparent 50%),
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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

img {
  max-width: 100%;
  height: auto;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 242, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover,
.footer-logo:hover {
  text-decoration: none;
}

.logo__wordmark {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.logo__wordmark span {
  color: var(--shopify);
  font-weight: 600;
}

.logo:hover .logo__wordmark {
  color: var(--brand);
}

.logo:hover .logo__wordmark span {
  color: var(--brand-hover);
}

.footer-logo {
  margin-bottom: 0.65rem;
}

.footer-logo .logo__wordmark {
  color: #f8fafc;
  font-size: 0.98rem;
}

.footer-logo .logo__wordmark span {
  color: #94a3b8;
}

.footer-logo:hover .logo__wordmark,
.footer-logo:hover .logo__wordmark span {
  color: #a7f3d0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s var(--ease);
}
nav a:hover,
nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: none;
}
nav a[aria-current="page"] {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  line-height: 0;
}

.menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.menu-toggle__bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-lg);
  }
  nav.is-open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  nav a {
    display: block;
    padding: 0.5rem 0.35rem;
  }
  nav .btn {
    margin-top: 0.5rem;
    justify-content: center;
  }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px var(--brand-ring);
}
.btn-primary:hover {
  background: var(--brand-hover);
  color: #fff;
  box-shadow: 0 6px 20px var(--brand-ring);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-white);
  border-color: var(--brand);
  color: var(--brand);
}

.btn-text {
  background: none;
  border: none;
  padding: 0.5rem 0;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
}
.btn-text:hover {
  color: var(--brand-hover);
}

/* ── Layout ─────────────────────────────────────────────── */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 0.65rem;
}

.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1rem;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 38rem;
  margin: 0 0 2.25rem;
  line-height: 1.6;
}

.section-header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* scroll anchors */
#recify,
#widgets,
#recify-features,
#why-recify,
#faq {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ── Hero (from scratch) ──────────────────────────────────── */
.hero {
  position: relative;
  overflow-x: clip;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__glow--left {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  top: -20%;
  left: -12%;
  background: rgba(94, 142, 62, 0.2);
}

.hero__glow--right {
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  top: 5%;
  right: -8%;
  background: rgba(10, 110, 86, 0.14);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  margin-bottom: 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-secondary);
}

.recify-logo {
  display: block;
  flex-shrink: 0;
  background: transparent;
}

.recify-logo--sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.recify-logo--lg {
  width: min(180px, 80%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 22%;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 16px 36px rgba(109, 40, 217, 0.22);
}

.hero__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

.hero__eyebrow-muted {
  color: var(--ink-muted);
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 14ch;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(120deg, var(--brand) 0%, #0d8a6a 55%, #5e8e3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.62;
  color: var(--ink-muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn-lg {
  padding: 0.82rem 1.5rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

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

.hero__widget-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease);
}

.hero__widget-card:hover {
  border-color: rgba(10, 110, 86, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.hero__widget-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-ring);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
}

.hero__widget-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.hero__widget-meta {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero__widget-meta strong {
  color: var(--brand);
  font-weight: 700;
}

/* Visual */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  padding: 0;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero__browser {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 0.85rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.hero__browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero__browser-bar span:nth-child(1) {
  background: #f87171;
}
.hero__browser-bar span:nth-child(2) {
  background: #fbbf24;
}
.hero__browser-bar span:nth-child(3) {
  background: #4ade80;
}

.hero__browser-url {
  flex: 1;
  margin: 0;
  padding-left: 0.35rem;
  font-size: 0.7rem;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__browser-body {
  padding: 1rem;
}

.hero__product {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.hero__product-img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.35rem;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
  image-rendering: auto;
}

.hero__product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__tag {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand);
}

.hero__product-rating {
  margin: 0;
  font-size: 0.68rem;
  color: #ca8a04;
  letter-spacing: 0.02em;
}

.hero__product-rating span {
  color: var(--ink-muted);
  font-weight: 500;
}

.hero__product-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.hero__product-price {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.hero__compare {
  margin-right: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: line-through;
}

.hero__product-btn {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.38rem 0.7rem;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
}

.hero__widget-demo {
  margin-top: 0.15rem;
}

.hero__widget-panel {
  display: none;
}

.hero__widget-panel.is-active {
  display: block;
}

.hero__widget-panel[hidden] {
  display: none !important;
}

.hero__fbt {
  padding: 0.8rem;
  border-radius: 12px;
  background: var(--brand-soft);
  border: 1px solid rgba(10, 110, 86, 0.22);
}

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

@media (max-width: 420px) {
  .hero__fbt-row--3 {
    grid-template-columns: 1fr;
  }
}

.hero__fbt-item--compact {
  grid-template-columns: 2.35rem 1fr;
  column-gap: 0.35rem;
  padding: 0.4rem;
  font-size: 0.62rem;
}

.hero__fbt-item--compact .hero__fbt-thumb {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.12rem;
}

.hero__fbt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.hero__fbt-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
}

.hero__engine-badge {
  flex-shrink: 0;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  background: var(--bg-white);
  color: var(--brand);
  border: 1px solid rgba(10, 110, 86, 0.25);
}

.hero__fbt-note {
  margin: 0.5rem 0 0;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
}

.hero__fbt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero__fbt-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 0.45rem;
  row-gap: 0.1rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__fbt-item em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero__fbt-item--active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-ring);
}

.hero__fbt-thumb {
  display: block;
  grid-row: 1 / -1;
  grid-column: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.25rem;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  align-self: center;
}

.hero__fbt-item > span {
  grid-column: 2;
}

.hero__fbt-item > em {
  grid-column: 2;
}

.hero__fbt-item > .hero__fbt-add {
  grid-column: 2;
  justify-self: start;
}

.hero__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.65rem;
}

.hero__tab {
  margin: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-muted);
  background: #f1f5f9;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero__tab:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.hero__tab--active {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: rgba(10, 110, 86, 0.2);
}

.hero__fbt-add {
  margin: 0;
  padding: 0.2rem 0.45rem;
  border: none;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  cursor: default;
}

.hero__cart {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-secondary);
}

.hero__cart svg {
  color: var(--brand);
}

.hero__cart-total {
  margin-left: auto;
  margin-right: 0.35rem;
  font-weight: 800;
  color: var(--ink);
}

.hero__cart-badge {
  font-weight: 800;
  color: var(--brand);
}

.hero__float {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero__float--metric {
  position: static;
  min-width: 0;
}

.hero__float-sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.hero__float-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.hero__float-value {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.hero__caption {
  margin: 0.25rem 0 0;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* Hero micro-animations */
.anim-hero-fbt {
  animation: hero-fbt-pulse 3s ease-in-out infinite;
}

.anim-hero-fbt-pick {
  animation: hero-fbt-pick 3s ease-in-out infinite;
}

.anim-hero-cart {
  animation: hero-cart-pop 3s ease-in-out infinite;
}

@keyframes hero-fbt-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
  40%,
  60% {
    box-shadow: 0 0 0 3px var(--brand-ring);
  }
}

@keyframes hero-fbt-pick {
  0%,
  35% {
    transform: scale(1);
  }
  45%,
  65% {
    transform: scale(1.04);
  }
  75%,
  100% {
    transform: scale(1);
  }
}

@keyframes hero-cart-pop {
  0%,
  55% {
    transform: scale(1);
  }
  62%,
  72% {
    transform: scale(1.2);
  }
  80%,
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-hero-fbt,
  .anim-hero-fbt-pick,
  .anim-hero-cart {
    animation: none;
  }
}

@media (min-width: 961px) {
  .hero__visual {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title-accent {
    display: inline;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__widgets {
    max-width: 22rem;
    margin: 0 auto;
  }

  .hero__visual {
    order: -1;
    max-width: 22rem;
    margin: 0 auto;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero__float--metric {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: baseline;
    column-gap: 0.5rem;
  }

  .hero__float--metric .hero__float-label {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__float--metric .hero__float-value {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hero__float--metric .hero__float-sub {
    grid-column: 1;
    grid-row: 2;
  }
}

/* ── Trust strip ────────────────────────────────────────── */
.trust-strip {
  padding: 1.25rem 0 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.trust-strip-inner svg {
  color: var(--shopify);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
}

/* ── How it works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.step:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ── Product spotlight ────────────────────────────────────── */
.product-spotlight {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: var(--shadow-md);
}

.product-spotlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(165deg, #ede9fe 0%, #f5f3ff 45%, #f8fafc 100%);
  border-right: 1px solid var(--border);
}

.product-spotlight-body {
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.product-spotlight-body h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.product-tagline {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.product-desc {
  color: var(--ink-secondary);
  margin: 0 0 1.35rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-secondary);
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--brand);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--ink-muted);
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 800px) {
  .product-spotlight {
    grid-template-columns: 1fr;
  }
  .product-spotlight-visual {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 200px;
  }
}

/* ── Feature system ───────────────────────────────────────── */
.feature-system-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 110, 86, 0.09), transparent 26rem),
    var(--bg-soft);
}

.feature-system {
  display: grid;
  gap: 1rem;
}

.feature-system__hero,
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-system__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  position: relative;
}

.feature-system__hero::after {
  content: "";
  position: absolute;
  inset: auto -4rem -7rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: var(--brand-soft);
  opacity: 0.65;
  pointer-events: none;
}

.feature-system__hero-copy,
.feature-engine-card {
  position: relative;
  z-index: 1;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-system__hero h3 {
  max-width: 12em;
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.feature-system__hero p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.feature-engine-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) - 0.35rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.engine-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
}

.engine-node--active {
  border-color: rgba(10, 110, 86, 0.28);
  background: var(--brand-soft);
}

.engine-node span {
  color: var(--ink);
  font-weight: 700;
}

.engine-node strong {
  color: var(--brand-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.engine-connector {
  width: 2px;
  height: 1.1rem;
  margin: -0.35rem auto;
  border-radius: var(--radius-pill);
  background: var(--border-strong);
}

.feature-system__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Widget showcase */
.widgets-showcase-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(10, 110, 86, 0.08), transparent 26rem),
    var(--bg);
}

.widgets-showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.widgets-showcase-header .section-lead {
  max-width: 44rem;
}

.widgets-showcase-note {
  display: grid;
  gap: 0.2rem;
  min-width: 11rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.widgets-showcase-note span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.widgets-showcase-note strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

.widget-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.widget-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 40, 217, 0.32);
  box-shadow: var(--shadow-lg);
}

.widget-card__body {
  padding: 1.2rem;
}

.widget-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.widget-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.widget-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.widget-card__plan {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--brand-soft);
  color: var(--brand);
  white-space: nowrap;
}

.widget-card__where {
  color: var(--ink-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

/* AI engine */
.section--ai {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

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

.ai-card {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.ai-card--highlight {
  border-color: rgba(10, 110, 86, 0.35);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.ai-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.ai-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .widgets-showcase-header {
    grid-template-columns: 1fr;
  }

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

  .feature-system__hero {
    grid-template-columns: 1fr;
  }

  .feature-system__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 520px) {
  .widget-grid {
    grid-template-columns: 1fr;
  }

  .widget-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-system__grid {
    grid-template-columns: 1fr;
  }

  .engine-node {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .ai-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Demo split (fbw) ───────────────────────────────────── */
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.demo-stage {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.demo-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-legend li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--ink-secondary);
  line-height: 1.45;
}

.demo-legend-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .demo-split {
    grid-template-columns: 1fr;
  }
}

/* fbw animation (light theme) */
.fbw-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.fbw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.fbw-url {
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  color: var(--ink-muted);
  font-family: ui-monospace, monospace;
}

.fbw-body {
  padding: 1rem;
}

.fbw-main {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.fbw-photo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbw-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.2rem;
  box-sizing: border-box;
}

.fbw-mini-img img {
  object-position: center;
}

.fbw-compare {
  margin-right: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: line-through;
}

.fbw-main-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fbw-pill {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand);
}

.fbw-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.fbw-price {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.fbw-widget {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.fbw-widget-head {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.fbw-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.fbw-mini {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  background: var(--bg-white);
}

.fbw-mini-img {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 0.35rem;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fbw-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.15rem;
  box-sizing: border-box;
}

.fbw-mini-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}

.fbw-mini-add {
  display: block;
  margin-top: 0.35rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
}

.fbw-footer {
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

.fbw-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.fbw-cart svg {
  color: var(--brand);
}

.fbw-cart-count {
  position: relative;
  min-width: 1.1em;
  height: 1.15em;
}

.fbw-count-a,
.fbw-count-b {
  position: absolute;
  right: 0;
  top: 0;
}

.fbw-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  animation: fbw-cursor 5.2s ease-in-out infinite;
}

.anim-fbw-widget {
  animation: fbw-widget-glow 5.2s ease-in-out infinite;
}
.anim-fbw-pick {
  animation: fbw-mini-pick 5.2s ease-in-out infinite;
}
.anim-fbw-leg-1 {
  animation: fbw-leg-1 5.2s ease-in-out infinite;
}
.anim-fbw-leg-2 {
  animation: fbw-leg-2 5.2s ease-in-out infinite;
}
.anim-fbw-leg-3 {
  animation: fbw-leg-3 5.2s ease-in-out infinite;
}
.fbw-count-a {
  animation: fbw-count-a 5.2s ease-in-out infinite;
}
.fbw-count-b {
  animation: fbw-count-b 5.2s ease-in-out infinite;
}

@keyframes fbw-cursor {
  0%,
  100% {
    left: 11%;
    top: 26%;
    opacity: 0;
  }
  6%,
  72% {
    opacity: 1;
  }
  24% {
    left: 11%;
    top: 26%;
  }
  44% {
    left: 72%;
    top: 50%;
  }
  80%,
  99% {
    opacity: 0;
  }
}
@keyframes fbw-widget-glow {
  0%,
  26% {
    border-color: var(--border);
  }
  32%,
  58% {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-ring);
  }
}
@keyframes fbw-mini-pick {
  0%,
  38% {
    transform: scale(1);
  }
  46%,
  74% {
    transform: scale(1.02);
    border-color: var(--brand);
  }
}
@keyframes fbw-count-a {
  0%,
  66% {
    opacity: 1;
  }
  72%,
  94% {
    opacity: 0;
  }
  98%,
  100% {
    opacity: 1;
  }
}
@keyframes fbw-count-b {
  0%,
  66% {
    opacity: 0;
  }
  72%,
  94% {
    opacity: 1;
  }
}
@keyframes fbw-leg-1 {
  0%,
  28% {
    border-color: var(--brand);
    background: var(--brand-soft);
  }
  34%,
  100% {
    border-color: var(--border);
    background: var(--bg-white);
  }
}
@keyframes fbw-leg-2 {
  0%,
  28%,
  64%,
  100% {
    border-color: var(--border);
    background: var(--bg-white);
  }
  34%,
  58% {
    border-color: var(--brand);
    background: var(--brand-soft);
  }
}
@keyframes fbw-leg-3 {
  0%,
  58% {
    border-color: var(--border);
    background: var(--bg-white);
  }
  64%,
  92% {
    border-color: var(--brand);
    background: var(--brand-soft);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbw-cursor,
  .anim-fbw-widget,
  .anim-fbw-pick,
  .anim-fbw-leg-1,
  .anim-fbw-leg-2,
  .anim-fbw-leg-3,
  .fbw-count-a,
  .fbw-count-b {
    animation: none !important;
  }
  .fbw-cursor {
    opacity: 0;
  }
}

/* ── Workflow modal ───────────────────────────────────────── */
.workflow-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.ws-overlay {
  background: #e8ede6;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.ws-modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ws-modal-top {
  padding: 1.25rem 1.25rem 0;
}

.ws-steps {
  display: flex;
  align-items: center;
}

.ws-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}

.ws-step-dot.done,
.ws-step-dot.active {
  background: var(--brand);
  color: #fff;
}

.ws-step-dot.inactive {
  background: #f1f5f9;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.ws-step-dot.active {
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.ws-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
}
.ws-step-line.done {
  background: var(--brand);
}

.ws-modal-body {
  padding: 0 1.25rem 1.25rem;
  min-height: 240px;
}

.ws-panel {
  display: none;
}
.ws-panel.active {
  display: block;
}

.ws-logo-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1rem;
}

.ws-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-logo-mark--recify {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.ws-logo-mark--recify .recify-logo--sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.ws-brand-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.ws-brand-tag {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.ws-step-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.ws-step-sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.ws-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ws-mini-card {
  text-align: center;
  padding: 0.65rem 0.35rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.ws-mini-val {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.ws-mini-lbl {
  font-size: 0.62rem;
  color: var(--ink-muted);
}

.ws-fake-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ws-fake-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.ws-fake-row.done {
  border-color: rgba(10, 110, 86, 0.25);
  background: var(--brand-soft);
}

.ws-fake-row.active {
  border-color: var(--brand);
}

.ws-fake-icon {
  color: var(--brand);
  font-weight: 700;
}

.ws-fake-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.ws-fake-meta {
  font-size: 0.68rem;
  color: var(--ink-muted);
}

.ws-fake-pill {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand);
}

.ws-fake-pill-warn {
  background: #fef3c7;
  color: #b45309;
}

.ws-browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.65rem;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.ws-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.ws-url {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  color: var(--ink-muted);
  font-family: ui-monospace, monospace;
}

.ws-theme-canvas {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ws-block-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: var(--brand-soft);
  border: 1px dashed var(--brand);
  color: var(--brand);
}

.ws-block-chip.ghost {
  opacity: 0.5;
  border-style: solid;
}

.ws-chart-mock {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  padding: 0.75rem 0.5rem 0;
  margin-bottom: 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.ws-bar {
  flex: 1;
  height: var(--h, 50%);
  min-height: 18%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--brand), #0d8a6a);
}

.ws-summary-strip {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.ws-sum-lbl {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.ws-sum-val {
  font-weight: 700;
  color: var(--ink);
}

.ws-hint-banner {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0;
  padding: 0.5rem 0.6rem;
  background: var(--brand-soft);
  border-radius: 6px;
}

.ws-modal-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ws-btn-back {
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  font-family: inherit;
}

.ws-progress {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.ws-modal-footer .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 480px) {
  .ws-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Audience ───────────────────────────────────────────── */
.audience-section {
  background:
    linear-gradient(135deg, rgba(10, 110, 86, 0.05), transparent 42%),
    var(--bg-white);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.audience-copy .section-lead {
  margin-bottom: 1.4rem;
}

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

.audience-proof div {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.audience-proof strong,
.audience-proof span {
  display: block;
}

.audience-proof strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.audience-proof span {
  margin-top: 0.25rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.audience-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  box-shadow: var(--shadow-sm);
}

.audience-fit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.audience-fit-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.audience-fit-card__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.audience-fit-card h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.audience-fit-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .audience-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .audience-proof {
    grid-template-columns: 1fr;
  }

  .audience-fit-card {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(10, 110, 86, 0.08), transparent 24rem),
    var(--bg-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.faq-intro h2 {
  margin-bottom: 0.75rem;
}

.faq-support-card {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-support-card span {
  display: block;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.faq-support-card p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-list {
  max-width: none;
}

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

.faq-details {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-details summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-details summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
}

.faq-details[open] summary::after {
  content: "−";
}

.faq-details[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.faq-body {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid var(--border);
}

.faq-body p {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* alias */
.customer-faq {
  max-width: 40rem;
}

.faq-list--stack.customer-faq {
  max-width: none;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

/* ── Trust / contact ──────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.about-block,
.contact-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.about-block p,
.contact-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.about-block p + p {
  margin-top: 0.85rem;
}

.contact-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

@media (max-width: 800px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #064e3b 0%, #0a6e56 50%, #0d8a6a 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
  margin-top: 0;
}

.cta-band h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 auto 0.75rem;
  max-width: 18ch;
}

.cta-band .cta-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta-band .btn-primary:hover {
  background: #f0fdf4;
  color: var(--brand-hover);
}

.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.footer-tagline {
  margin: 0 0 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 21rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(167, 243, 208, 0.22);
  border-radius: var(--radius-pill);
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.16);
}

.footer-email {
  display: block;
  color: #a7f3d0;
  font-weight: 500;
}
.footer-email:hover {
  color: #fff;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e2e8f0;
  margin: 0 0 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-list a:hover,
.footer-list a[aria-current="page"] {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a[aria-current="page"] {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Mobile sticky CTA ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

/* ── Legal & support pages ────────────────────────────────── */
.page-legal .site-header,
.page-support .site-header {
  margin-bottom: 0;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.legal-content .legal-meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.45rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.support-hero {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 1.5rem;
  max-width: 36rem;
  margin: 0 auto;
}

.support-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.support-hero p {
  color: var(--ink-muted);
  margin: 0;
}

.support-email-card {
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.support-email-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.support-email-card a {
  font-size: 1.05rem;
  font-weight: 600;
}

.support-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.support-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
}

.support-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  background: var(--brand-soft);
  border: 1px solid rgba(10, 110, 86, 0.2);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--brand);
}

.support-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.page-hero .lead {
  color: var(--ink-muted);
  font-size: 1.08rem;
  max-width: 38rem;
  margin: 0;
}

/* legacy class aliases for subpages */
.section-intro {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

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

/* ── Stats band ───────────────────────────────────────────── */
.stats-band {
  padding: 0 0 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  margin: 0 0 0.2rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1.1;
}

.stat-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-note {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials ─────────────────────────────────────────── */
.section--testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

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

.testimonial-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-secondary);
}

.testimonial-card p::before {
  content: "“";
  color: var(--brand);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 0;
  margin-right: 0.1em;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.testimonial-card footer span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
  }
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
