/*
Theme Name: Fuzzy Product Showcase
Theme URI: https://fuzwp.com/
Author: FuzWP
Description: Pixel-faithful product site and documentation theme for Fuzzy Product Filter.
Version: 1.1.0
Text Domain: fuzzy-showcase
*/

:root {
  --paper: #f6f7f2;
  --paper-deep: #edf1e7;
  --surface: #ffffff;
  --surface-warm: #faf8f0;
  --ink: #18201d;
  --muted: #65706a;
  --line: #d8ded2;
  --line-strong: #aeb9ad;
  --pine: #195c4b;
  --pine-dark: #113f34;
  --coral: #f36f3f;
  --coral-dark: #bf4e27;
  --sky: #79b5d4;
  --lime: #c8d85e;
  --charcoal: #242724;
  --shadow: 0 18px 48px rgba(24, 32, 29, 0.14);
  --shadow-soft: 0 10px 26px rgba(24, 32, 29, 0.1);
  --radius-sm: 4px;
  --radius: 8px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --font-ui: Aptos, "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 32, 29, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 10;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--surface);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  padding: 0 var(--space-6);
  border-bottom: 1px solid rgba(24, 32, 29, 0.1);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("./assets/brand/fuzzy-precision-funnel.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--pine);
  color: var(--surface);
}

.button-primary:hover {
  background: var(--pine-dark);
}

.button-secondary {
  background: var(--coral);
  color: var(--ink);
}

.button-secondary:hover {
  background: #ff8d62;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.button-quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.light-button {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-section {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(640px, 1.32fr);
  gap: var(--space-5);
  min-height: 690px;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(25, 92, 75, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 241, 231, 0.86));
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 32, 29, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 29, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-copy,
.storefront-shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  padding: var(--space-8) 0 var(--space-8) var(--space-8);
}

.eyebrow,
.tiny-label {
  margin: 0 0 var(--space-2);
  color: var(--pine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.outcome-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 760px;
  overflow-wrap: break-word;
  font-size: 50px;
}

.hero-lede {
  max-width: 620px;
  margin: var(--space-5) 0;
  color: #39433e;
  font-size: 20px;
  line-height: 1.45;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-5) 0 0;
  list-style: none;
}

.proof-list li,
.block-library span,
.selector-list li,
.dense-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  color: #2f3b35;
  font-size: 13px;
  font-weight: 800;
}

.hero-animation {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-right: var(--space-7);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 181, 212, 0.2), transparent 42%),
    linear-gradient(180deg, var(--surface), #f3f6ed);
  box-shadow: var(--shadow);
}

.animation-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 180px;
  gap: var(--space-4);
  align-items: end;
  min-height: 454px;
  padding: var(--space-5);
}

.setup-screen,
.desktop-shop-animation,
.mobile-shop-animation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.setup-screen {
  position: relative;
  grid-column: 1;
  min-height: 220px;
  padding: var(--space-4);
}

.setup-top,
.publish-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.setup-top {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.setup-top span {
  color: var(--muted);
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.setup-steps span,
.builder-blocks span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcf8;
  padding: 8px 10px;
  font-weight: 900;
  animation: setupPulse 5.4s ease-in-out infinite;
}

.setup-steps span:nth-child(2) {
  animation-delay: 1.8s;
}

.setup-steps span:nth-child(3) {
  animation-delay: 3.6s;
}

.builder-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.builder-blocks span {
  animation-delay: 1.8s;
}

.publish-line {
  margin-top: var(--space-4);
}

.publish-line span {
  flex: 1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-deep);
}

.publish-line span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform-origin: left;
  animation: publishFill 5.4s ease-in-out infinite;
}

.motion-cursor {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(243, 111, 63, 0.18);
  animation: cursorPath 5.4s ease-in-out infinite;
}

.desktop-shop-animation {
  grid-column: 1;
  min-height: 210px;
  overflow: hidden;
}

.mini-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 34px;
  padding: 0 var(--space-3);
  border-bottom: 1px solid var(--line);
  background: var(--surface-warm);
}

.mini-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.mini-browser-bar strong {
  margin-left: var(--space-2);
  color: var(--muted);
  font-size: 12px;
}

.mini-shop-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
}

.mini-filter,
.mini-products {
  display: grid;
  gap: var(--space-2);
}

.mini-filter {
  border-right: 1px solid var(--line);
  padding-right: var(--space-3);
}

.mini-filter span,
.mobile-mini-drawer span,
.mobile-mini-drawer small {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}

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

.mini-products span,
.mobile-mini-grid span {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(25, 92, 75, 0.2), transparent 54%),
    var(--surface-warm);
  animation: productUpdate 5.4s ease-in-out infinite;
}

.mini-products span:nth-child(2),
.mobile-mini-grid span:nth-child(2) {
  animation-delay: 180ms;
}

.mini-products span:nth-child(3) {
  animation-delay: 360ms;
}

.mini-products span:nth-child(4) {
  animation-delay: 540ms;
}

.ajax-flash {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  border-radius: var(--radius-sm);
  background: var(--pine);
  color: var(--surface);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  animation: ajaxBadge 5.4s ease-in-out infinite;
}

.mobile-shop-animation {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 390px;
  overflow: hidden;
  border: 10px solid var(--charcoal);
  border-radius: 28px;
  background: var(--paper-deep);
}

.mobile-notch {
  height: 34px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.mobile-shop-animation strong {
  display: block;
  padding: var(--space-3);
}

.mobile-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  padding: 0 var(--space-3);
}

.mobile-mini-drawer {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  bottom: var(--space-3);
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  animation: drawerSlide 5.4s ease-in-out infinite;
}

.mobile-mini-drawer small {
  background: var(--pine);
  color: var(--surface);
  text-align: center;
}

.usage-demo {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-right: var(--space-7);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121, 181, 212, 0.22), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow);
}

.usage-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line);
  background: var(--surface-warm);
}

.usage-demo-header strong {
  display: block;
  line-height: 1.2;
}

.usage-steps {
  display: flex;
  gap: var(--space-2);
}

.usage-steps span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  animation: stepPulse 4.8s ease-in-out infinite;
}

.usage-steps span:nth-child(2) {
  animation-delay: 1.6s;
}

.usage-steps span:nth-child(3) {
  animation-delay: 3.2s;
}

.device-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: var(--space-4);
  align-items: end;
  padding: var(--space-5);
}

.desktop-demo {
  min-width: 0;
}

.device-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.device-caption strong {
  font-size: 18px;
}

.device-caption span {
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
}

.usage-demo .storefront-shell {
  align-self: auto;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.usage-demo .storefront-grid {
  grid-template-columns: 210px 1fr;
  min-height: 424px;
}

.usage-demo .filter-panel {
  padding: var(--space-3);
}

.usage-demo .product-area {
  padding: var(--space-4);
}

.usage-demo .product-grid {
  min-height: 294px;
}

.hero-phone-demo {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 10px solid var(--charcoal);
  border-radius: 26px;
  background:
    linear-gradient(var(--surface) 0 0) 16px 246px / 64px 76px no-repeat,
    linear-gradient(var(--surface) 0 0) 92px 246px / 64px 76px no-repeat,
    var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.phone-status {
  height: 34px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.mobile-shop-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3);
  font-size: 12px;
  font-weight: 900;
}

.mobile-shop-top strong {
  color: var(--pine);
}

.mobile-filter-drawer {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  top: 88px;
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  animation: mobileDrawerLoop 4.8s ease-in-out infinite;
}

.mobile-filter-drawer strong {
  font-size: 14px;
}

.mobile-filter-drawer span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px;
  font-size: 12px;
  font-weight: 800;
}

.mobile-results {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.mobile-results span {
  height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  animation: resultPulse 4.8s ease-in-out infinite;
}

.mobile-results span:nth-child(2) {
  animation-delay: 240ms;
}

.mobile-cta {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--pine);
  color: var(--surface);
  padding: 10px 8px;
  text-align: center;
  font-weight: 900;
}

.storefront-shell {
  align-self: center;
  margin-right: var(--space-7);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

@keyframes setupPulse {
  0%,
  100% {
    border-color: var(--line);
    color: var(--ink);
  }

  20%,
  38% {
    border-color: var(--pine);
    color: var(--pine-dark);
    box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.14);
  }
}

@keyframes publishFill {
  0%,
  55% {
    transform: scaleX(0.18);
  }

  72%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes cursorPath {
  0% {
    left: 22px;
    top: 82px;
  }

  34% {
    left: 47%;
    top: 126px;
  }

  66% {
    left: 80%;
    top: 126px;
  }

  100% {
    left: 88%;
    top: 176px;
  }
}

@keyframes productUpdate {
  0%,
  55% {
    opacity: 0.62;
    transform: translateY(5px);
  }

  72%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ajaxBadge {
  0%,
  56% {
    opacity: 0;
    transform: translateY(8px);
  }

  68%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes drawerSlide {
  0%,
  50% {
    opacity: 0;
    transform: translateY(110%);
  }

  66%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    border-color: var(--line);
    color: var(--muted);
    transform: translateY(0);
  }

  18%,
  32% {
    border-color: var(--pine);
    color: var(--pine-dark);
    box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.16);
    transform: translateY(-2px);
  }
}

@keyframes mobileDrawerLoop {
  0%,
  100% {
    transform: translateY(112%);
    opacity: 0;
  }

  22%,
  72% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes resultPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.68;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 42px;
  padding: 0 var(--space-4);
  border-bottom: 1px solid var(--line);
  background: var(--surface-warm);
  color: var(--muted);
  font-size: 13px;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.browser-bar strong {
  margin-left: var(--space-2);
  font-weight: 700;
}

.storefront-grid {
  display: grid;
  grid-template-columns: 236px 1fr;
  min-height: 486px;
}

.filter-panel {
  padding: var(--space-4);
  border-right: 1px solid var(--line);
  background: #fbfcf8;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.panel-heading p,
.filter-label {
  margin: 0;
  font-weight: 900;
}

.filter-label {
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--coral-dark);
  cursor: pointer;
  font-weight: 800;
}

.filter-group {
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
}

.selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  min-height: 34px;
}

.chip,
.url-pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  background: #e4f0e7;
  color: var(--pine-dark);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}

.filter-option {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
}

.filter-option[aria-pressed="true"],
.swatch[aria-pressed="true"],
.case-card[aria-selected="true"] {
  border-color: var(--pine);
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.16);
}

.filter-option span {
  color: var(--muted);
  font-size: 12px;
}

.swatch-row {
  display: flex;
  gap: var(--space-2);
}

.swatch {
  width: 32px;
  height: 32px;
  border: 2px solid var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch-black {
  background: #20211f;
}

.swatch-coral {
  background: var(--coral);
}

.swatch-sky {
  background: var(--sky);
}

.swatch-lime {
  background: var(--lime);
}

.product-area {
  padding: var(--space-5);
}

.result-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.result-toolbar h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  min-height: 356px;
}

.product-grid.is-loading {
  opacity: 0.52;
}

.product-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-3);
  min-height: 152px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
}

.product-card[hidden] {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-warm);
  padding: var(--space-5);
}

.empty-state[hidden] {
  display: none;
}

.empty-state strong {
  display: block;
  margin-bottom: var(--space-2);
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.product-card h3,
.feature-panel h3,
.trust-panel h3,
.case-preview h3,
.wizard h3 {
  margin: 0 0 var(--space-2);
  font-size: 21px;
  line-height: 1.18;
}

.product-card p,
.feature-panel p,
.trust-panel p,
.case-preview p,
.wizard p,
.site-footer p,
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.product-card strong {
  grid-column: 2;
  color: var(--pine);
}

.product-art {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 32, 29, 0.14);
}

.art-onyx {
  background: linear-gradient(135deg, #222, #5c685f 52%, #dfe7d5);
}

.art-shadow {
  background: linear-gradient(135deg, #181a18, #f36f3f 68%);
}

.art-forest {
  background: linear-gradient(135deg, #194d3a, #c8d85e);
}

.art-sky {
  background: linear-gradient(135deg, #2d6f8f, #79b5d4 68%, #f7f4e8);
}

.section,
.outcome-band {
  padding: var(--space-8) var(--space-5);
}

.section,
.outcome-band,
.hero-section,
.contact-panel {
  scroll-margin-top: 96px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-surface {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(24, 32, 29, 0.08);
  border-bottom: 1px solid rgba(24, 32, 29, 0.08);
}

.outcome-band {
  padding-top: var(--space-6);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: var(--space-4);
  align-items: stretch;
}

.outcome-grid h2,
.section-heading h2 {
  font-size: 42px;
}

.outcome-item {
  border-left: 1px solid var(--line-strong);
  padding-left: var(--space-4);
}

.outcome-item span {
  display: block;
  color: var(--coral-dark);
  font-weight: 900;
}

.outcome-item strong {
  display: block;
  margin: var(--space-2) 0;
  font-size: 18px;
}

.outcome-item p {
  margin: 0;
  color: var(--muted);
}

.outcome-grid > div:first-child p {
  max-width: 360px;
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-7);
}

.section-heading.compact {
  margin-bottom: var(--space-5);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.05fr);
  gap: var(--space-5);
  align-items: start;
}

.case-buttons {
  display: grid;
  gap: var(--space-3);
}

.case-card {
  display: grid;
  gap: var(--space-1);
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-4);
  text-align: left;
  cursor: pointer;
}

.case-card span {
  color: var(--muted);
}

.case-preview {
  min-height: 448px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(121, 181, 212, 0.18), transparent 42%),
    var(--surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.check-list,
.dense-list,
.selector-list {
  display: grid;
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-5) 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 3px var(--pine);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.feature-panel,
.trust-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.block-library {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-5) 0;
}

.settings-stack {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.settings-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.ajax-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-5) 0;
}

.ajax-flow span {
  min-height: 52px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.phone-mock {
  position: relative;
  width: min(260px, 100%);
  height: 344px;
  margin: var(--space-5) auto 0;
  overflow: hidden;
  border: 10px solid var(--charcoal);
  border-radius: 28px;
  background: var(--paper);
}

.phone-top {
  height: 48px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.phone-products {
  height: 270px;
  background:
    linear-gradient(var(--surface) 0 0) 18px 22px / 88px 96px no-repeat,
    linear-gradient(var(--surface) 0 0) 126px 22px / 88px 96px no-repeat,
    linear-gradient(var(--surface) 0 0) 18px 138px / 88px 96px no-repeat,
    linear-gradient(var(--surface) 0 0) 126px 138px / 88px 96px no-repeat,
    var(--paper-deep);
}

.floating-filter {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  transform: translateX(-50%);
  min-width: 112px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--pine);
  color: var(--surface);
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 900;
}

.phone-drawer {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  bottom: 54px;
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  transform: translateY(0);
  transition: transform 180ms ease, opacity 180ms ease;
  box-shadow: var(--shadow-soft);
}

.phone-drawer span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
}

.phone-mock[data-open="false"] .phone-drawer {
  opacity: 0;
  transform: translateY(120%);
}

.section-dark {
  background: var(--ink);
  color: var(--surface);
}

.section-dark .eyebrow {
  color: var(--lime);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: var(--space-6);
  align-items: center;
}

.wizard {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #202923;
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

.wizard-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: var(--space-4);
}

.wizard-progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--lime);
  transition: width 180ms ease;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.wizard-options button {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.wizard-options button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.wizard-result {
  margin: var(--space-5) 0;
  border: 1px solid rgba(200, 216, 94, 0.4);
  border-radius: var(--radius);
  background: rgba(200, 216, 94, 0.12);
  padding: var(--space-4);
}

.wizard-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

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

.url-stack {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-5) 0;
  border-left: 4px solid var(--coral);
  background: var(--surface-warm);
  padding: var(--space-4);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.url-stack strong,
.url-stack span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.selector-list li,
.dense-list li {
  font-weight: 700;
}

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr;
}

.pricing-row span {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: var(--space-4);
  overflow-wrap: anywhere;
}

.pricing-row span:last-child {
  border-right: 0;
}

.pricing-row:last-child span {
  border-bottom: 0;
}

.pricing-head {
  background: var(--ink);
  color: var(--surface);
  font-weight: 900;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(121, 181, 212, 0.2), rgba(255, 255, 255, 0.88) 46%, rgba(237, 241, 231, 0.74)),
    var(--paper);
}

.pricing-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-topline {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.pricing-topline span {
  border: 1px solid rgba(25, 92, 75, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.66);
  padding: 7px 10px;
  color: var(--pine);
  font-size: 13px;
  font-weight: 800;
}

.billing-toggle {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto var(--space-6);
  border: 1px solid rgba(25, 92, 75, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: var(--space-1);
  box-shadow: var(--shadow-soft);
}

.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}

.billing-toggle button[aria-pressed="true"] {
  background: var(--pine);
  color: var(--surface);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 560px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: var(--space-6);
  box-shadow: 0 18px 46px rgba(36, 57, 125, 0.08);
}

.pricing-card-featured {
  border-color: var(--sky);
  box-shadow: 0 22px 56px rgba(25, 92, 75, 0.16);
}

.plan-badge {
  justify-self: start;
  margin: calc(var(--space-6) * -1) 0 var(--space-5);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--sky);
  color: var(--ink);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
}

.pricing-card h3,
.pricing-free-cta h3,
.contact-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.plan-price span {
  color: #3f3f43;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.plan-price small {
  color: var(--muted);
  font-size: 15px;
}

.pricing-card > p {
  min-height: 28px;
  margin: var(--space-2) 0 var(--space-5);
  color: var(--muted);
  font-size: 14px;
}

.pricing-card .button {
  width: 100%;
  min-height: 56px;
  margin-bottom: var(--space-6);
  font-size: 18px;
}

.plan-features {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-5) 0 0;
  padding: var(--space-5) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 30px;
  color: #3f4743;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 7px;
  border-bottom: 3px solid var(--sky);
  border-left: 3px solid var(--sky);
  transform: rotate(-45deg);
}

.pricing-free-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-5);
  border: 1px solid rgba(25, 92, 75, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: var(--space-5);
}

.pricing-free-cta p {
  max-width: 680px;
  margin: var(--space-2) 0 0;
  color: var(--muted);
}

.docs-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: var(--space-6);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.contact-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 216, 94, 0.12), transparent 42%),
    var(--surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.contact-copy p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.contact-fields label {
  display: grid;
  gap: var(--space-2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

.contact-fields textarea {
  resize: vertical;
}

.contact-message,
.contact-fields .button,
.contact-status {
  grid-column: 1 / -1;
}

.contact-message span {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-status {
  min-height: 24px;
  margin: 0;
  color: var(--pine);
  font-weight: 800;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-4);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.demo-reel-section {
  padding-top: var(--space-6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(237, 241, 231, 0.36)),
    var(--paper);
}

.demo-reel-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(620px, 1.22fr);
  gap: var(--space-5);
  align-items: start;
}

.demo-reel-copy {
  position: sticky;
  top: 96px;
  display: grid;
  gap: var(--space-4);
}

.demo-reel-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.04;
}

.demo-reel-copy p {
  margin: 0;
  color: var(--muted);
}

.demo-control-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.demo-control-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.demo-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.demo-step-list button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  padding: 8px 10px;
}

.demo-step-list button[aria-selected="true"] {
  border-color: var(--pine);
  background: #e4f0e7;
  color: var(--pine-dark);
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.14);
}

.demo-scope {
  display: grid;
  gap: var(--space-2);
  margin: 0;
}

.demo-scope div {
  border-left: 3px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  padding: var(--space-3);
}

.demo-scope dt {
  font-weight: 900;
}

.demo-scope dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.demo-reel-stage {
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-reel-topbar,
.demo-reel-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-warm);
}

.demo-reel-topbar {
  border-bottom: 1px solid var(--line);
}

.demo-reel-topbar h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.demo-reel-caption {
  align-items: flex-start;
  border-top: 1px solid var(--line);
}

.demo-reel-caption strong {
  max-width: 260px;
  line-height: 1.22;
}

.demo-reel-caption span {
  max-width: 520px;
  color: var(--muted);
}

.demo-device-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(86px, 1fr));
  gap: var(--space-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: var(--space-1);
}

.demo-device-switch span {
  display: grid;
  min-height: 30px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.demo-device-switch span.is-active {
  background: var(--ink);
  color: var(--surface);
}

.demo-reel-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 620px;
  padding: var(--space-5);
  background:
    linear-gradient(90deg, rgba(25, 92, 75, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(25, 92, 75, 0.08) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 28px 28px;
}

.demo-desktop-viewport,
.demo-mobile-viewport {
  transition: transform 280ms ease, opacity 280ms ease, filter 280ms ease;
}

.demo-desktop-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform-origin: center left;
}

.demo-mobile-viewport {
  display: none;
  justify-self: center;
  width: min(320px, 100%);
  align-self: end;
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  transform-origin: center bottom;
}

.demo-reel-stage[data-device="mobile"] .demo-desktop-viewport {
  display: none;
}

.demo-reel-stage[data-device="mobile"] .demo-mobile-viewport {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 38px;
  padding: 0 var(--space-3);
  border-bottom: 1px solid var(--line);
  background: var(--surface-warm);
  color: var(--muted);
  font-size: 12px;
}

.demo-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.demo-browser-bar strong {
  min-width: 0;
  overflow: hidden;
  margin-left: var(--space-1);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-shop-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 492px;
}

.demo-filter-column {
  display: grid;
  align-content: start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-right: 1px solid var(--line);
  background: #fbfcf8;
}

.demo-mini-block {
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.demo-reel-stage[data-reel-step="search"] [data-reel-block="search"],
.demo-reel-stage[data-reel-step="ajax"] [data-reel-block="filters"],
.demo-reel-stage[data-reel-step="empty"] [data-reel-block="empty"] {
  border-color: var(--pine);
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.12);
  transform: translateY(-2px);
}

.demo-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 12px;
}

.demo-block-head span {
  color: var(--muted);
  font-weight: 800;
}

.demo-search-field {
  display: flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 0 10px;
  font-weight: 900;
}

.demo-search-field::before {
  content: "";
  width: 8px;
  height: 18px;
  margin-right: var(--space-2);
  background: var(--pine);
  animation: caretBlink 920ms steps(1) infinite;
}

.demo-mini-block button {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 800;
}

.demo-mini-block button span {
  color: var(--muted);
}

.demo-mini-block button.is-active,
.demo-swatch-strip span.is-active {
  border-color: var(--pine);
  background: #e4f0e7;
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.16);
}

.demo-mini-block button.is-disabled {
  color: #9aa39c;
  background: #eef1ea;
  text-decoration: line-through;
}

.demo-swatch-strip {
  display: flex;
  gap: var(--space-2);
}

.demo-swatch-strip span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--line);
}

.demo-swatch-strip span:nth-child(1) {
  background: #20211f;
}

.demo-swatch-strip span:nth-child(2) {
  background: var(--coral);
}

.demo-swatch-strip span:nth-child(3) {
  background: var(--sky);
}

.demo-swatch-strip span:nth-child(4) {
  background: var(--lime);
}

.demo-products-column {
  position: relative;
  padding: var(--space-4);
}

.demo-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.demo-result-head strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.demo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  min-height: 34px;
  margin-bottom: var(--space-3);
}

.demo-chip-row span {
  border-radius: var(--radius-sm);
  background: #e4f0e7;
  color: var(--pine-dark);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 900;
}

.demo-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.demo-product-card {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
  min-height: 154px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.demo-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.14;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: var(--radius-sm);
  background: #f8faff;
  object-fit: cover;
}

.demo-product-card small {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.demo-product-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.demo-product-card.is-selected,
.demo-phone-grid span.is-selected {
  border-color: var(--pine);
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.14);
  transform: translateY(-2px);
}

.demo-product-card.is-muted,
.demo-phone-grid span.is-muted {
  opacity: 0.52;
  filter: saturate(0.42);
}

.demo-reel-stage[data-reel-step="ajax"] .demo-product-card,
.demo-reel-stage[data-reel-step="seo"] .demo-product-card,
.demo-reel-stage[data-reel-step="empty"] .demo-product-card {
  transform: translateY(-2px);
}

.demo-pagination-row {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.demo-pagination-row span {
  width: 34px;
  height: 8px;
  border-radius: var(--radius-sm);
  background: var(--line);
}

.demo-pagination-row span:first-child {
  background: var(--pine);
}

.demo-loader {
  position: absolute;
  inset: var(--space-4);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.demo-loader span {
  position: relative;
  width: 62px;
  height: 62px;
  background: url("./assets/brand/fuzzy-precision-funnel.svg") center bottom / 42px 42px no-repeat;
  animation: funnelPulse 980ms ease-in-out infinite;
}

.demo-loader span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 13px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--pine);
  box-shadow:
    6px 10px 0 rgba(63, 94, 251, 0.72),
    12px 20px 0 rgba(63, 94, 251, 0.46);
  animation: funnelBars 980ms ease-in-out infinite;
}

.demo-loader strong {
  margin-top: var(--space-2);
}

.demo-reel-stage[data-reel-step="ajax"] .demo-loader {
  opacity: 1;
}

.demo-seo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 54px;
  min-width: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface-warm);
  padding: var(--space-3) var(--space-4);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.demo-seo-bar span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 900;
}

.demo-seo-bar strong {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-word;
}

.demo-reel-stage[data-reel-step="seo"] .demo-seo-bar {
  background: #e4f0e7;
  box-shadow: inset 0 0 0 2px rgba(25, 92, 75, 0.14);
}

.demo-wizard-mini {
  position: absolute;
  right: var(--space-4);
  bottom: 68px;
  width: min(320px, calc(100% - 32px));
  border: 1px solid rgba(200, 216, 94, 0.44);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  padding: var(--space-4);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  box-shadow: var(--shadow);
}

.demo-wizard-mini .wizard-progress {
  margin-bottom: var(--space-3);
}

.demo-wizard-mini .wizard-progress span {
  width: 100%;
}

.demo-wizard-mini .tiny-label {
  color: var(--lime);
}

.demo-wizard-mini strong {
  display: block;
  margin-bottom: var(--space-2);
}

.demo-wizard-mini small {
  color: rgba(255, 255, 255, 0.72);
}

.demo-reel-stage[data-reel-step="wizard"] .demo-wizard-mini {
  opacity: 1;
  transform: translateY(0);
}

.demo-phone-shell {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 10px solid var(--charcoal);
  border-radius: 28px;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.demo-phone-status {
  height: 30px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.demo-phone-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3);
  font-size: 12px;
}

.demo-phone-toolbar span {
  color: var(--pine);
  font-weight: 900;
}

.demo-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  padding: 0 var(--space-3);
}

.demo-phone-grid span {
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: transform 180ms ease, opacity 180ms ease;
}

.demo-phone-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-floating-button {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 128px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--pine);
  color: var(--surface);
  padding: 10px 14px;
  font-weight: 900;
  transform: translateX(-50%);
}

.demo-floating-button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
}

.demo-phone-drawer {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  bottom: 62px;
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-3);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 220ms ease, transform 220ms ease;
  box-shadow: var(--shadow-soft);
}

.demo-phone-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
}

.demo-phone-drawer span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}

.demo-phone-drawer button {
  min-height: 36px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--coral);
  color: var(--ink);
  font-weight: 900;
}

.demo-reel-stage[data-reel-step="mobile"] .demo-floating-button {
  animation: callButtonPulse 880ms ease-in-out infinite;
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes funnelPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  48% {
    transform: translateY(3px) scale(0.96);
  }
}

@keyframes funnelBars {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-3px) scaleX(1.04);
  }

  48% {
    opacity: 1;
    transform: translateY(9px) scaleX(0.62);
  }
}

@keyframes callButtonPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.04);
  }
}

@media (max-width: 1160px) {
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: var(--space-7) var(--space-7) 0;
  }

  .hero-animation,
  .usage-demo,
  .storefront-shell {
    margin: 0 var(--space-7) var(--space-7);
  }

  .outcome-grid,
  .feature-strip,
  .trust-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .demo-reel-layout {
    grid-template-columns: 1fr;
  }

  .demo-reel-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 var(--space-4);
  }

  .brand span:last-child {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero-section {
    padding: var(--space-2) var(--space-3) 0;
  }

  .hero-copy {
    padding: var(--space-4) var(--space-4) 0;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-lede {
    margin: var(--space-3) 0;
    font-size: 17px;
  }

  .hero-animation,
  .usage-demo,
  .storefront-shell {
    margin: var(--space-3) var(--space-4) var(--space-3);
    max-height: 220px;
    overflow: hidden;
  }

  .animation-stage {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: var(--space-2);
    min-height: 160px;
    padding: var(--space-3);
  }

  .setup-screen {
    min-height: 142px;
    padding: var(--space-3);
  }

  .setup-top {
    padding-bottom: var(--space-2);
  }

  .setup-top span,
  .publish-line strong {
    display: none;
  }

  .setup-steps {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    margin: var(--space-2) 0;
  }

  .setup-steps span,
  .builder-blocks span {
    padding: 5px 7px;
    font-size: 11px;
  }

  .builder-blocks span:nth-child(n + 3) {
    display: none;
  }

  .publish-line {
    margin-top: var(--space-2);
  }

  .desktop-shop-animation {
    display: none;
  }

  .mobile-shop-animation {
    grid-column: 2;
    grid-row: 1;
    height: 156px;
    border-width: 6px;
    border-radius: 18px;
  }

  .mobile-notch {
    height: 22px;
  }

  .mobile-shop-animation strong {
    padding: 6px;
    font-size: 11px;
  }

  .mobile-mini-grid {
    gap: 4px;
    padding: 0 6px;
  }

  .mobile-mini-grid span {
    min-height: 36px;
  }

  .mobile-mini-drawer {
    left: 5px;
    right: 5px;
    bottom: 5px;
    gap: 3px;
    padding: 5px;
  }

  .mobile-mini-drawer span {
    display: none;
  }

  .mobile-mini-drawer small {
    padding: 4px;
    font-size: 10px;
  }

  .usage-demo {
    padding: 0;
  }

  .usage-demo-header {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
    min-height: 0;
    padding: var(--space-3);
  }

  .usage-steps {
    width: 100%;
  }

  .usage-steps span {
    flex: 1;
    justify-content: center;
    min-height: 28px;
    padding: 4px 6px;
  }

  .device-stage {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: var(--space-2);
    padding: var(--space-3);
  }

  .device-caption {
    display: block;
    margin-bottom: var(--space-2);
  }

  .device-caption span {
    display: none;
  }

  .usage-demo .storefront-shell {
    margin: 0;
    max-height: 142px;
  }

  .usage-demo .storefront-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .usage-demo .filter-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .usage-demo .product-area {
    padding: var(--space-3);
  }

  .hero-phone-demo {
    height: 154px;
    border-width: 6px;
    border-radius: 18px;
    background:
      linear-gradient(var(--surface) 0 0) 10px 94px / 36px 42px no-repeat,
      linear-gradient(var(--surface) 0 0) 54px 94px / 36px 42px no-repeat,
      var(--paper-deep);
  }

  .phone-status {
    height: 22px;
  }

  .mobile-shop-top {
    display: none;
  }

  .mobile-filter-drawer {
    top: 28px;
    gap: 4px;
    padding: 6px;
  }

  .mobile-filter-drawer strong,
  .mobile-filter-drawer span {
    font-size: 10px;
  }

  .mobile-filter-drawer span {
    padding: 3px 4px;
  }

  .mobile-results,
  .mobile-cta {
    display: none;
  }

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

  .filter-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .filter-panel .filter-group:nth-of-type(n + 2) {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-card {
    min-height: 108px;
  }

  .result-toolbar {
    flex-direction: column;
  }

  .section,
  .outcome-band {
    padding: var(--space-7) var(--space-4);
  }

  .outcome-band {
    padding-top: var(--space-3);
  }

  .outcome-grid,
  .case-layout,
  .feature-strip,
  .trust-grid,
  .split-section,
  .docs-layout,
  .pricing-cards,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .outcome-grid h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .case-preview,
  .feature-panel,
  .trust-panel {
    min-height: auto;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    overflow: hidden;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
    padding-right: var(--space-2);
    padding-left: var(--space-2);
  }

  .pricing-cards {
    gap: var(--space-4);
  }

  .pricing-card {
    min-height: auto;
    padding: var(--space-5);
  }

  .plan-badge {
    margin-top: calc(var(--space-5) * -1);
  }

  .pricing-free-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-free-cta .button {
    width: 100%;
  }

  .contact-panel {
    padding: var(--space-5);
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-row:last-child {
    border-bottom: 0;
  }

  .pricing-head {
    display: none;
  }

  .pricing-row span {
    min-height: 0;
    border-bottom: 0;
    padding: var(--space-3);
    overflow-wrap: anywhere;
  }

  .pricing-row span:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface-warm);
    font-weight: 900;
  }

  .pricing-row span:nth-child(2)::before,
  .pricing-row span:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .pricing-row span:nth-child(2)::before {
    content: "Free";
  }

  .pricing-row span:nth-child(3)::before {
    content: "Pro";
  }

  .demo-reel-section {
    padding-top: var(--space-5);
  }

  .demo-reel-copy h2 {
    font-size: 34px;
  }

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

  .demo-reel-topbar,
  .demo-reel-caption {
    align-items: flex-start;
    flex-direction: column;
    padding: var(--space-4);
  }

  .demo-device-switch {
    width: 100%;
  }

  .demo-reel-body {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: var(--space-3);
  }

  .demo-desktop-viewport,
  .demo-reel-stage[data-device="desktop"] .demo-desktop-viewport {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .demo-mobile-viewport {
    display: none;
  }

  .demo-reel-stage[data-device="mobile"] .demo-desktop-viewport {
    display: none;
  }

  .demo-reel-stage[data-device="mobile"] .demo-mobile-viewport {
    display: block;
    justify-self: center;
    width: min(240px, 100%);
    opacity: 1;
    transform: none;
  }

  .demo-shop-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .demo-filter-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-products-column {
    padding: var(--space-3);
  }

  .demo-product-grid {
    grid-template-columns: 1fr;
  }

  .demo-phone-shell {
    height: 420px;
  }

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

@media (max-width: 440px) {
  .brand span:last-child {
    display: none;
  }

  .button {
    min-height: 40px;
    padding: 9px 12px;
  }

  .hero-copy h1 {
    font-size: 29px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    gap: var(--space-2);
  }

  .hero-actions .button {
    width: 100%;
    min-height: 38px;
  }

  .proof-list li {
    font-size: 12px;
  }

  .demo-step-list {
    grid-template-columns: 1fr;
  }

  .demo-filter-column {
    grid-template-columns: 1fr;
  }

  .demo-reel-copy h2 {
    font-size: 29px;
  }

  .demo-seo-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-seo-bar strong {
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
  }

  .demo-browser-bar {
    align-items: flex-start;
    min-height: 52px;
  }

  .demo-browser-bar strong {
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
    word-break: break-word;
  }

  .demo-wizard-mini {
    position: static;
    width: auto;
    margin: var(--space-3);
    opacity: 1;
    transform: none;
  }

  .demo-reel-stage:not([data-reel-step="wizard"]) .demo-wizard-mini {
    display: none;
  }

  .product-area {
    padding: var(--space-4);
  }

  .product-card {
    grid-template-columns: 56px 1fr;
  }

  .product-art {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Filter Everything reference-inspired visual pass.
   This adapts the clean white/blue plugin-site language to Fuzzy content. */
:root {
  --paper: #ffffff;
  --paper-deep: #f4f7ff;
  --surface: #ffffff;
  --surface-warm: #f8faff;
  --ink: #20232d;
  --muted: #667085;
  --line: #dfe6f5;
  --line-strong: #c9d3ea;
  --pine: #3f5efb;
  --pine-dark: #2645d9;
  --coral: #3f5efb;
  --coral-dark: #2645d9;
  --sky: #8fa2ff;
  --lime: #eef3ff;
  --charcoal: #20232d;
  --shadow: 0 28px 72px rgba(31, 49, 111, 0.14);
  --shadow-soft: 0 16px 40px rgba(31, 49, 111, 0.1);
  --radius-sm: 6px;
  --radius: 8px;
  --font-ui: "Segoe UI", Aptos, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", Aptos, "Helvetica Neue", Arial, sans-serif;
}

html {
  background: var(--paper);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

.site-header {
  min-height: 76px;
  padding: 0 min(9vw, 128px);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.brand {
  gap: 10px;
  color: #1f2430;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: url("./assets/brand/fuzzy-precision-funnel.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.site-nav {
  gap: 38px;
  color: #20232d;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--pine);
}

.button {
  min-height: 42px;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.button-primary,
.button-secondary:hover {
  border-color: var(--pine);
  background: var(--pine);
  color: #fff;
}

.button-primary:hover {
  background: var(--pine-dark);
}

.button-secondary,
.button-ghost,
.button-quiet {
  border-color: #b7c4ff;
  background: #fff;
  color: var(--pine);
}

.hero-section {
  padding: 38px min(9vw, 128px) 116px;
}

.hero-stage {
  grid-template-columns: minmax(380px, 0.78fr) minmax(700px, 1.22fr);
  gap: 44px;
  max-width: 1280px;
  min-height: 600px;
  overflow: visible;
  border: 0;
  background: #fff;
}

.hero-stage::after {
  display: none;
}

.hero-copy {
  padding: 74px 0 40px;
}

.eyebrow,
.tiny-label {
  color: var(--pine);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 660px;
  color: #20232d;
  font-family: var(--font-ui);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero-copy h1::first-line {
  color: #20232d;
}

.hero-lede {
  max-width: 520px;
  margin: 24px 0 26px;
  color: #5d6575;
  font-size: 17px;
  line-height: 1.65;
}

.proof-list {
  gap: 10px 16px;
  margin-top: 24px;
}

.proof-list li {
  border: 0;
  background: transparent;
  color: #28324a;
  padding: 0;
  font-size: 12px;
}

.proof-list li::before {
  content: "+";
  margin-right: 6px;
  color: var(--pine);
  font-weight: 900;
}

.hero-animation {
  align-self: center;
  margin-right: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-animation-embed {
  width: 100%;
  height: 620px;
  max-height: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(36, 57, 125, 0.12);
}

.hero-animation-embed iframe {
  display: block;
  width: 1120px;
  height: 940px;
  border: 0;
  background: #fff;
  transform: scale(0.66);
  transform-origin: 0 0;
}

.animation-stage {
  min-height: 480px;
  padding: 0;
  background:
    linear-gradient(180deg, transparent 0 12%, rgba(241, 245, 255, 0.72) 12% 100%);
}

.setup-screen,
.desktop-shop-animation,
.mobile-shop-animation,
.demo-reel-stage,
.case-preview,
.feature-panel,
.trust-panel,
.pricing-table,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(36, 57, 125, 0.09);
}

.setup-screen {
  transform: translate(46px, 10px);
  z-index: 2;
}

.desktop-shop-animation {
  transform: translate(-26px, -8px);
}

.mobile-shop-animation {
  border-color: #20232d;
  transform: translateX(-8px);
}

.setup-steps span,
.builder-blocks span,
.mini-filter span,
.mobile-mini-drawer span,
.mobile-mini-drawer small,
.filter-option,
.demo-mini-block button,
.demo-phone-drawer span {
  border-color: var(--line);
  background: #fbfcff;
}

.publish-line span::after,
.demo-floating-button,
.floating-filter,
.mobile-mini-drawer small {
  background: var(--pine);
  color: #fff;
}

.section,
.outcome-band {
  padding: 116px min(9vw, 128px);
}

.section-surface,
.outcome-band {
  border: 0;
  background: #fff;
}

.section-dark {
  background: linear-gradient(180deg, #f0f4ff, #eef3ff);
  color: var(--ink);
}

.section-dark .eyebrow,
.section-heading.light p,
.light-button {
  color: var(--pine);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 54px;
}

.outcome-grid h2,
.section-heading h2 {
  color: #20232d;
  font-family: var(--font-ui);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-heading p,
.outcome-item p,
.feature-panel p,
.trust-panel p,
.case-preview p,
.wizard p,
.demo-scope dd {
  color: #667085;
  line-height: 1.65;
}

.demo-reel-section {
  padding-top: 110px;
}

.demo-reel-layout,
.split-section,
.docs-layout {
  gap: 72px;
}

.demo-reel-copy h2 {
  color: #20232d;
  font-family: var(--font-ui);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
}

.demo-step-list button,
.case-card {
  border-color: var(--line);
  background: #fff;
  color: #20232d;
}

.demo-step-list button[aria-selected="true"],
.case-card[aria-selected="true"],
.filter-option[aria-pressed="true"],
.swatch[aria-pressed="true"] {
  border-color: var(--pine);
  background: #f4f6ff;
  box-shadow: inset 0 0 0 1px rgba(63, 94, 251, 0.18);
}

.demo-scope div {
  border-left-color: var(--pine);
  background: #fff;
}

.demo-reel-stage {
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(36, 57, 125, 0.12);
}

.demo-reel-topbar,
.demo-browser-bar,
.mini-browser-bar {
  background: #fbfcff;
}

.demo-filter-column {
  background: #fbfcff;
}

.demo-mini-block,
.demo-product-card,
.demo-phone-drawer,
.wizard {
  border-color: var(--line);
  background: #fff;
}

.demo-mini-block button.is-active,
.demo-swatch-strip span.is-active,
.demo-reel-stage[data-reel-step="seo"] .demo-seo-bar {
  border-color: var(--pine);
  background: #edf2ff;
}

.demo-loader span {
  background-image: url("./assets/brand/fuzzy-precision-funnel.svg");
}

.outcome-grid {
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.outcome-item {
  border-left-color: var(--line);
}

.outcome-item span {
  color: var(--pine);
}

.case-preview {
  background: linear-gradient(180deg, #f6f8ff, #fff 34%);
}

.check-list li::before {
  background: var(--pine);
}

.feature-strip,
.trust-grid {
  gap: 26px;
}

.feature-panel,
.trust-panel {
  min-height: 430px;
  padding: 34px;
}

.builder-panel,
.ajax-panel,
.mobile-panel,
.trust-panel {
  background: linear-gradient(180deg, #fff, #f8faff);
}

.block-library span,
.selector-list li,
.dense-list li {
  border-color: var(--line);
  background: #fff;
  color: #2d3547;
}

.settings-stack div,
.ajax-flow span,
.url-stack {
  border-color: var(--line);
  background: #fff;
}

.phone-mock {
  border-color: #20232d;
  background: #f5f7ff;
}

.wizard {
  color: var(--ink);
  box-shadow: 0 28px 64px rgba(36, 57, 125, 0.12);
}

.wizard-options button,
.wizard-result {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.wizard-options button:hover {
  border-color: var(--pine);
}

.wizard-progress,
.demo-wizard-mini .wizard-progress {
  background: #dce4ff;
}

.wizard-progress span,
.demo-wizard-mini .wizard-progress span {
  background: var(--pine);
}

.demo-wizard-mini {
  background: #20232d;
}

.pricing-table {
  box-shadow: 0 18px 46px rgba(36, 57, 125, 0.08);
}

.pricing-head {
  background: #20232d;
}

.pricing-row span {
  border-color: var(--line);
}

details {
  box-shadow: none;
}

.site-footer {
  border-top-color: var(--line);
  background: #fff;
}

@media (max-width: 1160px) {
  .hero-stage {
    gap: 34px;
  }

  .hero-copy {
    padding: 54px 54px 0;
  }

  .hero-animation,
  .usage-demo,
  .storefront-shell {
    margin: 0 54px 54px;
  }

  .hero-animation-embed {
    height: 760px;
    max-height: none;
  }

  .hero-animation-embed iframe {
    transform: scale(0.8);
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .hero-section {
    padding: 18px 16px 70px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 28px 16px 0;
    min-width: 0;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-lede,
  .proof-list {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-animation {
    display: block;
  }

  .hero-animation-embed {
    width: auto;
    height: 760px;
    max-height: none;
    margin: 18px 16px 0;
  }

  .hero-animation-embed iframe {
    width: 100%;
    height: 760px;
    transform: none;
  }

  .animation-stage {
    grid-template-columns: minmax(0, 1fr) 96px;
    background: #f5f7ff;
  }

  .setup-screen,
  .desktop-shop-animation,
  .mobile-shop-animation {
    transform: none;
  }

  .section,
  .outcome-band {
    padding: 76px 18px;
  }

  .section-inner,
  .demo-reel-layout,
  .demo-reel-copy,
  .demo-reel-stage,
  .case-layout,
  .feature-strip,
  .trust-grid,
  .outcome-grid,
  .split-section,
  .docs-layout {
    max-width: 100%;
    min-width: 0;
  }

  .demo-reel-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .demo-reel-copy h2,
  .demo-reel-copy p,
  .demo-control-row,
  .demo-step-list,
  .demo-scope {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .demo-reel-layout,
  .case-layout,
  .feature-strip,
  .trust-grid,
  .outcome-grid,
  .split-section,
  .docs-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .outcome-grid h2,
  .section-heading h2,
  .demo-reel-copy h2 {
    font-size: 30px;
    overflow-wrap: break-word;
  }

  .feature-panel,
  .trust-panel {
    padding: 24px;
  }
}

@media (max-width: 440px) {
  .hero-copy h1 {
    font-size: 31px;
  }

  .button {
    font-size: 12px;
  }

  .plan-price span {
    font-size: 46px;
  }

  .billing-toggle {
    flex-direction: column;
  }
}
