/* ZAWQIK — public marketing site (does not replace assets/css/style.css used elsewhere) */

:root {
  --ps-bg: #f6f3ee;
  --ps-bg-warm: #efe8df;
  --ps-surface: #ffffff;
  --ps-text: #1c1917;
  --ps-muted: #57534e;
  --ps-accent: #2e7d32;
  --ps-accent-2: #3d8f6a;
  --ps-cta: #ef6c00;
  --ps-cta-hover: #e65100;
  --ps-accent-soft: rgba(47, 111, 79, 0.12);
  --ps-terracotta: #c45c3e;
  --ps-terracotta-soft: rgba(196, 92, 62, 0.12);
  --ps-sage: #6b8f71;
  --ps-border: rgba(28, 25, 23, 0.08);
  --ps-shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
  --ps-radius: 14px;
  --ps-font: "Inter", system-ui, sans-serif;
  --ps-display: "Poppins", "Inter", system-ui, sans-serif;
  --ps-max: 1120px;
  --ps-header-bg: rgba(246, 243, 238, 0.92);
}

html[data-theme="dark"] {
  --ps-bg: #0f1411;
  --ps-bg-warm: #141c17;
  --ps-surface: #1a2420;
  --ps-text: #e7e5e4;
  --ps-muted: #a8a29e;
  --ps-accent: #57c15d;
  --ps-accent-2: #6fd4a0;
  --ps-cta: #ff7a1a;
  --ps-cta-hover: #ff8f3d;
  --ps-accent-soft: rgba(92, 184, 138, 0.15);
  --ps-terracotta: #e07a5f;
  --ps-terracotta-soft: rgba(224, 122, 95, 0.15);
  --ps-sage: #7fb896;
  --ps-border: rgba(231, 229, 228, 0.1);
  --ps-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ps-header-bg: rgba(15, 20, 17, 0.88);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.public-site {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--ps-font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ps-text);
  background: var(--ps-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(196, 92, 62, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(47, 111, 79, 0.1), transparent 45%);
  transition: background-color 0.25s ease, color 0.2s ease;
}

html[data-theme="dark"] body.public-site {
  background-image:
    radial-gradient(ellipse 100% 80% at 90% -10%, rgba(224, 122, 95, 0.12), transparent 45%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(92, 184, 138, 0.12), transparent 50%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--ps-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.ps-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ps-header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ps-border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ps-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-bottom-color: color-mix(in srgb, var(--ps-border) 60%, transparent);
}

.ps-header__inner {
  max-width: var(--ps-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ps-logo {
  font-family: var(--ps-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ps-text);
  text-decoration: none;
}
.ps-logo:hover {
  color: var(--ps-accent);
}

.ps-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  background: var(--ps-surface);
  cursor: pointer;
}
.ps-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ps-text);
  border-radius: 1px;
}

.ps-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.ps-nav a {
  color: var(--ps-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.ps-nav a:hover {
  color: var(--ps-accent);
}
.ps-nav a:focus-visible,
.ps-nav__dd-btn:focus-visible,
.ps-theme-btn:focus-visible,
.ps-nav-toggle:focus-visible,
.ps-btn:focus-visible {
  outline: 2px solid var(--ps-accent);
  outline-offset: 2px;
}
.ps-nav a.is-active,
.ps-nav__dd-btn.is-active {
  color: var(--ps-accent);
  font-weight: 700;
}
.ps-nav__cta {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--ps-accent);
  color: #fff !important;
}
.ps-nav__cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}
.ps-nav__cta.is-active {
  box-shadow: 0 0 0 3px var(--ps-accent-soft);
}

.ps-nav__dropdown {
  position: relative;
}
.ps-nav__dd-btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ps-muted);
  cursor: pointer;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.ps-nav__dd-btn::after {
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.7;
}
.ps-nav__dd-btn:hover,
.ps-nav__dd-btn[aria-expanded="true"] {
  color: var(--ps-accent);
}
.ps-nav__dd-panel {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  box-shadow: var(--ps-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}
.ps-nav__dropdown.is-open .ps-nav__dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.ps-nav__dd-panel a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
}
.ps-nav__dd-panel a:hover {
  background: var(--ps-accent-soft);
}

.ps-nav__tools {
  margin-left: 0.25rem;
}
.ps-theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ps-theme-btn:hover {
  background: var(--ps-accent-soft);
}
.ps-theme-btn::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--ps-muted);
  opacity: 0.5;
}
html[data-theme="dark"] .ps-theme-btn::before {
  box-shadow: inset 0 -6px 0 2px var(--ps-terracotta), inset 0 0 0 2px var(--ps-muted);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .ps-nav__dropdown {
    width: 100%;
  }
  .ps-nav__dd-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 0.5rem;
  }
  .ps-nav__dropdown.is-open .ps-nav__dd-panel {
    display: block;
  }
}

@media (max-width: 768px) {
  .ps-nav-toggle {
    display: flex;
  }
  .ps-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ps-surface);
    border-bottom: 1px solid var(--ps-border);
    padding: 1rem;
    display: none;
    box-shadow: var(--ps-shadow);
  }
  .ps-nav.is-open {
    display: block;
  }
  .ps-nav__list {
    flex-direction: column;
    align-items: stretch;
  }
  .ps-nav a {
    display: block;
    padding: 0.5rem 0;
  }
  .ps-nav__dd-btn {
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
  }
}

/* Layout */
.ps-container {
  max-width: var(--ps-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.ps-hero {
  padding: 3rem 0 2rem;
}
.ps-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ps-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.ps-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-terracotta);
  margin-bottom: 0.75rem;
}

.ps-h1 {
  font-family: var(--ps-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ps-text);
}

.ps-lead {
  font-size: 1.15rem;
  color: var(--ps-muted);
  margin: 0 0 1.75rem;
  max-width: 38ch;
}

.ps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ps-btn:active {
  transform: scale(0.98);
}
.ps-btn:focus-visible {
  outline-offset: 3px;
}
.ps-btn--primary {
  background: var(--ps-cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(239, 108, 0, 0.35);
}
.ps-btn--primary:hover {
  background: var(--ps-cta-hover);
  filter: none;
}
.ps-btn--ghost {
  background: transparent;
  color: var(--ps-accent);
  border: 2px solid var(--ps-accent);
}
.ps-btn--ghost:hover {
  background: var(--ps-accent-soft);
}

.ps-card-visual {
  border-radius: var(--ps-radius);
  background: linear-gradient(145deg, var(--ps-surface) 0%, var(--ps-bg-warm) 100%);
  border: 1px solid var(--ps-border);
  box-shadow: var(--ps-shadow);
  padding: 1.75rem;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.ps-card-visual::after {
  content: "";
  position: absolute;
  inset: 40% -20% -30% 30%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Sections */
.ps-section-title {
  font-family: var(--ps-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.ps-section-intro {
  color: var(--ps-muted);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.ps-grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .ps-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ps-card {
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ps-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ps-accent-soft);
  color: var(--ps-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ps-card h3 {
  font-family: var(--ps-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.ps-card p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.98rem;
  flex: 1;
}
.ps-card a.more {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ps-accent);
  text-decoration: none;
}
.ps-card a.more:hover {
  text-decoration: underline;
}

/* Article list */
.ps-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ps-article-item {
  display: grid;
  gap: 0.5rem 1.5rem;
  padding: 1.25rem;
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
}
@media (min-width: 640px) {
  .ps-article-item {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.ps-article-item__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-terracotta);
}
.ps-article-item h2 {
  font-family: var(--ps-display);
  font-size: 1.15rem;
  margin: 0;
}
.ps-article-item h2 a {
  color: var(--ps-text);
  text-decoration: none;
}
.ps-article-item h2 a:hover {
  color: var(--ps-accent);
}
.ps-article-item__meta {
  font-size: 0.85rem;
  color: var(--ps-muted);
}

/* Prose */
.ps-prose {
  max-width: 65ch;
}
.ps-prose h1 {
  font-family: var(--ps-display);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  margin-top: 0;
}
.ps-prose h2 {
  font-family: var(--ps-display);
  font-size: 1.35rem;
  margin-top: 2rem;
}
.ps-prose p,
.ps-prose li {
  color: var(--ps-muted);
}
.ps-prose ul {
  padding-left: 1.25rem;
}
.ps-prose a {
  color: var(--ps-accent);
  font-weight: 500;
}

/* Planner */
.ps-planner {
  max-width: 720px;
}
.ps-field {
  margin-bottom: 1.25rem;
}
.ps-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.ps-field select,
.ps-field input[type="text"],
.ps-field input[type="email"],
.ps-field input[type="tel"],
.ps-field input[type="url"],
.ps-field input[type="search"],
.ps-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--ps-surface);
  color: var(--ps-text);
  box-sizing: border-box;
}
.ps-field input:focus-visible,
.ps-field select:focus-visible,
.ps-field textarea:focus-visible {
  outline: 2px solid var(--ui-primary, #2f6f4f);
  outline-offset: 2px;
  border-color: var(--ui-primary, #2f6f4f);
}
.ps-planner-result {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--ps-radius);
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  box-shadow: var(--ps-shadow);
}
.ps-planner-result h3 {
  font-family: var(--ps-display);
  margin-top: 0;
}
.ps-planner-result ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ps-muted);
}
.ps-planner-result li {
  margin-bottom: 0.5rem;
}

.planner-store-picks {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ps-border);
}
.planner-store-picks__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.planner-dept-hint {
  margin-top: 1.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ui-primary) 6%, transparent);
  border: 1px solid var(--ps-border);
}
.planner-dept-hint__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ps-text);
}
.planner-dept-hint a {
  color: var(--ui-primary, #2f6f4f);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.planner-store-cat {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-muted);
  margin: 0 0 0.2rem;
}
.planner-store-card__body h5 {
  margin: 0 0 0.25rem;
}
.planner-form .ps-field label {
  font-weight: 600;
}
.planner-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.planner-store-card {
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ps-surface) 90%, transparent);
  display: flex;
  flex-direction: column;
}
.planner-store-card__img {
  aspect-ratio: 1;
  background: var(--ps-surface-2, #e5e7eb);
}
.planner-store-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.planner-store-card__body {
  padding: 0.5rem 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.planner-store-card__body h5 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 600;
}
.planner-store-card__body .planner-store-price {
  font-size: 0.8rem;
  color: var(--ps-muted);
}
.planner-store-card__body a {
  font-size: 0.8rem;
  margin-top: auto;
}

.match-studio__pick {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}
.match-studio__list-wrap {
  min-width: 0;
}
.match-studio__list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  max-height: 22rem;
  overflow: auto;
  border: 1px solid var(--ps-border);
  border-radius: 10px;
  background: var(--ps-surface);
}
.match-studio__row {
  border-bottom: 1px solid var(--ps-border);
  font-size: 0.9rem;
}
.match-studio__row:last-child {
  border-bottom: none;
}
.match-studio__label {
  display: block;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.match-studio__row.is-selected .match-studio__label {
  background: color-mix(in srgb, var(--ui-primary) 12%, transparent);
}
.match-studio__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}
.match-studio__panel {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
}
.match-studio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
.match-studio__col {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.match-studio__col h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}
.match-studio__ph {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ps-surface-2, #e5e7eb);
}
.match-studio__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.match-studio__cat {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ps-muted);
}
.match-studio__price {
  margin: 0;
  font-weight: 700;
  color: var(--ui-primary);
}
.match-studio__ex {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ps-muted);
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 720px) {
  .match-studio__pick {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.ps-form {
  max-width: 480px;
  position: relative;
}
.ps-form .ps-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.contact-page__intro {
  margin: 0 0 1.5rem;
  line-height: 1.6;
  color: var(--ps-muted);
  font-size: 1.05rem;
  max-width: 42rem;
}
.contact-page__panel {
  margin-top: 0.5rem;
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: 16px;
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  box-shadow: var(--ui-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}
@media (min-width: 700px) {
  .contact-page__panel {
    padding: 1.75rem 1.6rem 1.85rem;
  }
}
.contact-form .ps-btn--primary {
  width: 100%;
  max-width: 16rem;
  margin-top: 0.25rem;
}
@media (min-width: 500px) {
  .contact-form .ps-btn--primary {
    width: auto;
  }
}
.ps-alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.ps-alert--ok {
  background: var(--ps-accent-soft);
  color: var(--ps-text);
  border: 1px solid rgba(47, 111, 79, 0.25);
}
.ps-alert--err {
  background: var(--ps-terracotta-soft);
  border: 1px solid rgba(196, 92, 62, 0.3);
}

/* Footer */
.ps-footer {
  margin-top: auto;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid var(--ps-border);
  background: var(--ps-bg-warm);
}
.ps-footer__grid {
  max-width: var(--ps-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 700px) {
  .ps-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.ps-footer__brand {
  font-family: var(--ps-display);
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.ps-footer__tag {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.95rem;
}
.ps-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ps-muted);
  margin: 0 0 0.75rem;
}
.ps-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ps-footer__links a {
  color: var(--ps-text);
  text-decoration: none;
}
.ps-footer__links a:hover {
  color: var(--ps-accent);
}
.ps-footer__bottom {
  max-width: var(--ps-max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ps-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--ps-muted);
}
.ps-footer__bottom p {
  margin: 0;
}

/* Breadcrumb */
.ps-breadcrumb {
  font-size: 0.9rem;
  color: var(--ps-muted);
  margin-bottom: 1.5rem;
}
.ps-breadcrumb a {
  color: var(--ps-accent);
  text-decoration: none;
}

/* ——— Enhanced layout: hero, strips, grids, FAQ, inspiration ——— */

.ps-hero-mega {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.ps-hero-mega__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(47, 111, 79, 0.14) 0%, transparent 45%),
    linear-gradient(225deg, rgba(196, 92, 62, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(107, 143, 113, 0.2), transparent),
    var(--ps-bg);
  z-index: 0;
}
.ps-hero-mega__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 25, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 25, 23, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black, transparent);
  z-index: 0;
  pointer-events: none;
}
html[data-theme="dark"] .ps-hero-mega__mesh {
  background-image:
    linear-gradient(rgba(231, 229, 228, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 229, 228, 0.04) 1px, transparent 1px);
}
.ps-hero-mega__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ps-max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ps-hero-mega__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.ps-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  color: var(--ps-muted);
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.06);
}

.ps-hero-card {
  border-radius: calc(var(--ps-radius) + 4px);
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  box-shadow: var(--ps-shadow);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.ps-hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(47, 111, 79, 0.15), rgba(196, 92, 62, 0.12), transparent 60%);
  pointer-events: none;
}
.ps-hero-card__content {
  position: relative;
  z-index: 1;
}
.ps-hero-card__stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ps-border);
}
.ps-hero-card__stat div {
  text-align: center;
}
.ps-hero-card__stat strong {
  font-family: var(--ps-display);
  font-size: 1.35rem;
  color: var(--ps-accent);
  display: block;
  line-height: 1.2;
}
.ps-hero-card__stat span {
  font-size: 0.72rem;
  color: var(--ps-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ps-strip {
  background: linear-gradient(90deg, var(--ps-accent-soft), var(--ps-terracotta-soft));
  border-block: 1px solid var(--ps-border);
  padding: 1.25rem 1.25rem;
}
.ps-strip__inner {
  max-width: var(--ps-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ps-strip p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.ps-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ps-section-head .ps-section-intro {
  margin: 0;
  max-width: 48ch;
}

.ps-grid-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .ps-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ps-grid-cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ps-card--lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ps-card--lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.12);
}
html[data-theme="dark"] .ps-card--lift:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ps-card-cover {
  height: 140px;
  border-radius: 10px;
  margin: -0.25rem -0.25rem 1rem;
  background: linear-gradient(145deg, var(--ps-accent) 0%, var(--ps-sage) 55%, var(--ps-terracotta) 100%);
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}
.ps-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
}
.ps-card-cover--b {
  background: linear-gradient(160deg, #5a7c6a 0%, #2f6f4f 50%, #c45c3e 100%);
}
.ps-card-cover--c {
  background: linear-gradient(160deg, #8b7355 0%, #c45c3e 45%, #e8b86a 100%);
}
.ps-card-cover--d {
  background: linear-gradient(160deg, #3d5a4a 0%, #6b8f71 60%, #f0e6d8 100%);
}

.ps-quote {
  margin: 0;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 4px solid var(--ps-accent);
  background: var(--ps-surface);
  border-radius: 0 var(--ps-radius) var(--ps-radius) 0;
  font-style: italic;
  color: var(--ps-muted);
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
}
.ps-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ps-text);
}

.ps-cta-band {
  border-radius: calc(var(--ps-radius) + 6px);
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: linear-gradient(135deg, var(--ps-accent) 0%, #1e4a36 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(47, 111, 79, 0.35);
}
.ps-cta-band h2 {
  font-family: var(--ps-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}
.ps-cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.ps-cta-band .ps-btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.ps-cta-band .ps-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ps-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ps-chip {
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  color: var(--ps-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ps-chip:hover {
  border-color: var(--ps-accent);
  color: var(--ps-accent);
}
.ps-chip.is-active {
  background: var(--ps-accent);
  border-color: var(--ps-accent);
  color: #fff;
}

.ps-guide-search {
  width: 100%;
  max-width: 400px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--ps-border);
  font-size: 1rem;
  font-family: inherit;
  background: var(--ps-surface);
  color: var(--ps-text);
}
.ps-guide-search:focus {
  outline: 2px solid var(--ps-accent);
  outline-offset: 2px;
}

.ps-guide-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--ps-radius);
  overflow: hidden;
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ps-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(28, 25, 23, 0.12);
}
.ps-guide-card__cover {
  height: 120px;
  background: linear-gradient(135deg, var(--ps-accent-soft), var(--ps-terracotta-soft));
}
.ps-guide-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ps-guide-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ps-terracotta);
  margin-bottom: 0.35rem;
}
.ps-guide-card h3 {
  font-family: var(--ps-display);
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.ps-guide-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ps-muted);
  flex: 1;
}
.ps-guide-card__meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ps-muted);
}

.ps-guide-card.is-hidden {
  display: none;
}

.ps-faq details {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  background: var(--ps-surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.ps-faq summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  position: relative;
}
.ps-faq summary::-webkit-details-marker {
  display: none;
}
.ps-faq summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-weight: 400;
  opacity: 0.6;
}
.ps-faq details[open] summary::after {
  content: "−";
}
.ps-faq details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--ps-muted);
  font-size: 0.98rem;
}

.ps-inspo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .ps-inspo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ps-inspo-item {
  border-radius: var(--ps-radius);
  min-height: 160px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ps-border);
}
.ps-inspo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
}
.ps-inspo-item__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #3d5a4a, #2f6f4f);
}
.ps-inspo-item:nth-child(2) .ps-inspo-item__bg {
  background: linear-gradient(135deg, #6b5344, #c45c3e);
}
.ps-inspo-item:nth-child(3) .ps-inspo-item__bg {
  background: linear-gradient(135deg, #2a3d32, #6b8f71);
}
.ps-inspo-item:nth-child(4) .ps-inspo-item__bg {
  background: linear-gradient(135deg, #4a3f35, #8b7355);
}
.ps-inspo-item:nth-child(5) .ps-inspo-item__bg {
  background: linear-gradient(135deg, #1e3d2f, #5cb88a);
}
.ps-inspo-item:nth-child(6) .ps-inspo-item__bg {
  background: linear-gradient(135deg, #3d3028, #e07a5f);
}
.ps-inspo-item h3 {
  position: relative;
  z-index: 1;
  font-family: var(--ps-display);
  font-size: 1rem;
  margin: 0;
  line-height: 1.35;
}
.ps-inspo-item p {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  opacity: 0.95;
}

.ps-topic-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .ps-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ps-topic-card {
  padding: 1.5rem;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  transition: box-shadow 0.2s ease;
}
.ps-topic-card:hover {
  box-shadow: var(--ps-shadow);
}
.ps-topic-card h3 {
  font-family: var(--ps-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.ps-topic-card p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.95rem;
}
.ps-topic-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--ps-accent);
  text-decoration: none;
}
.ps-topic-card a:hover {
  text-decoration: underline;
}

.ps-footer__grid--wide {
  max-width: min(1200px, 94vw);
}
@media (min-width: 900px) {
  .ps-footer__grid--wide {
    grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  }
}
.ps-footer__micro {
  font-size: 0.88rem;
  color: var(--ps-muted);
  margin: 0.75rem 0 0;
  max-width: 28ch;
}

.ps-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ps-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ps-tools-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .ps-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ps-tool-tile {
  padding: 1.75rem;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.05);
}
.ps-tool-tile h3 {
  font-family: var(--ps-display);
  margin: 0 0 0.5rem;
}
.ps-tool-tile p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.95rem;
}

.ps-form .ps-guide-search {
  width: 100%;
  max-width: 100%;
}

.ps-scroll-progress {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ps-accent), var(--ps-terracotta));
  box-shadow: 0 0 16px rgba(47, 111, 79, 0.35);
}

.ps-glass {
  background: color-mix(in srgb, var(--ps-surface) 84%, transparent);
  border: 1px solid var(--ps-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--ps-shadow);
}

.ps-hero-stack {
  display: grid;
  gap: 0.9rem;
}

.ps-media-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 180px;
  border: 1px solid var(--ps-border);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.16);
}

.ps-media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.ps-media-tile:hover img {
  transform: scale(1.08);
}

.ps-media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.58) 100%);
}

.ps-media-tile__label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ps-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: color-mix(in srgb, var(--ps-surface) 86%, transparent);
  font-size: 0.78rem;
  color: var(--ps-muted);
  animation: psFloat 4.6s ease-in-out infinite;
}

.ps-float-badge:nth-child(2) { animation-delay: .6s; }
.ps-float-badge:nth-child(3) { animation-delay: 1.2s; }

.ps-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .ps-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ps-photo-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.09);
}

.ps-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ps-photo-card__body {
  padding: 0.95rem 1rem 1.1rem;
}

.ps-photo-card__body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--ps-display);
  font-size: 1.08rem;
}

.ps-photo-card__body p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.9rem;
}

.ps-tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

@keyframes psFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Compact hero: short above-the-fold, background is decorative (not a billboard) */
.ps-home-hero {
  position: relative;
  min-height: clamp(260px, 36vh, 420px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--ps-border);
}

.ps-home-hero__media,
.ps-home-hero__overlay {
  position: absolute;
  inset: 0;
}

.ps-home-hero__slides {
  position: absolute;
  inset: 0;
}

.ps-home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  animation: homeHeroFade3 18s ease-in-out infinite;
}

.ps-home-hero--n2 .ps-home-hero__slide {
  animation: homeHeroFade2 12s ease-in-out infinite;
}

.ps-home-hero--n2 .ps-home-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.ps-home-hero--n3 .ps-home-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.ps-home-hero--n3 .ps-home-hero__slide:nth-child(3) {
  animation-delay: 12s;
}

.ps-home-hero__slide img,
.ps-home-hero__slides--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform: scale(1.01);
  animation: psHeroZoom 18s ease-in-out infinite alternate;
  image-rendering: auto;
  backface-visibility: hidden;
}

.ps-home-hero--slides .ps-home-hero__slide img {
  animation: psHeroZoom 22s ease-in-out infinite alternate;
}

.ps-home-hero__slides--single {
  position: absolute;
  inset: 0;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .ps-home-hero__slide {
    animation: none !important;
    opacity: 0;
  }
  .ps-home-hero--slides .ps-home-hero__slide:first-child {
    opacity: 1;
  }
  .ps-home-hero__slide img,
  .ps-home-hero__slides--single img {
    animation: none !important;
    transform: none;
  }
}

.ps-home-hero__overlay {
  /* Bottom-heavy scrim so the hero copy stays readable on any product photo */
  background:
    linear-gradient(0deg, rgba(6, 10, 8, 0.92) 0%, rgba(8, 12, 10, 0.55) 38%, rgba(8, 12, 10, 0) 65%),
    linear-gradient(120deg, rgba(12, 18, 14, 0.82) 0%, rgba(12, 18, 14, 0.68) 35%, rgba(12, 18, 14, 0.42) 68%, rgba(10, 14, 12, 0.82) 100%),
    radial-gradient(circle at 82% 22%, rgba(196, 92, 62, 0.2), transparent 48%);
  z-index: 1;
}

.ps-home-hero__content {
  position: relative;
  z-index: 2;
  max-width: min(840px, 94vw);
  margin: 0 auto;
  padding: clamp(0.9rem, 1.6vw, 1.25rem) clamp(0.9rem, 2.5vw, 1.25rem) clamp(1.1rem, 2.2vw, 1.5rem);
  color: #fff;
  /* subtle separation from busy image edges */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.ps-home-hero__kicker {
  margin: 0 0 0.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.ps-home-hero__content h1 {
  margin: 0 0 0.1rem;
  font-family: var(--ps-display);
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.ps-home-hero__content .ps-home-hero__lead {
  margin: 0.4rem 0 0;
  max-width: 58ch;
  font-size: clamp(0.9rem, 0.86rem + 0.12vw, 0.98rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.ps-home-hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin: 0.45rem 0 0;
  padding: 0;
  max-width: 46rem;
}

.ps-home-hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  min-width: 4.6rem;
  padding: 0.32rem 0.45rem 0.4rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.ps-home-hero__stat-num {
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.ps-home-hero__stat-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
  max-width: 8.5rem;
}

.ps-home-hero__quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.4rem;
  margin-top: 0.5rem;
  max-width: 52rem;
}

a.ps-home-hero__ql {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-align: left;
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.ps-home-hero__ql:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.ps-home-hero__ql-k {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

.ps-home-hero__ql-t {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.ps-home-hero .ps-actions {
  margin-top: 0.45rem;
}

.ps-home-hero .ps-btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.ps-home-hero .ps-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ps-photo-grid--wide {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .ps-photo-grid--wide {
    grid-template-columns: 1.15fr 1fr 1fr;
  }
}

.ps-compare {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  box-shadow: 0 16px 42px rgba(28, 25, 23, 0.15);
  max-width: 980px;
}

.ps-compare__img {
  width: 100%;
  height: clamp(300px, 54vw, 520px);
  object-fit: cover;
  display: block;
}

.ps-compare__after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
}

.ps-compare__after-wrap .ps-compare__img {
  width: 100%;
}

.ps-compare__range {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: calc(100% - 2rem);
  margin-inline: auto;
  z-index: 4;
  accent-color: var(--ps-accent);
}

.ps-compare__labels {
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  padding-inline: 0.85rem;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}

.ps-compare__labels span {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(13, 13, 13, 0.45);
  backdrop-filter: blur(6px);
}

@keyframes psHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.02); }
}

@keyframes homeHeroFade3 {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes homeHeroFade2 {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* --- AI Premium Refresh Layer --- */
:root {
  --ps-radius-lg: 22px;
  --ps-radius-md: 14px;
  --ps-glow: 0 14px 40px rgba(33, 82, 61, 0.2);
}

html[data-theme="dark"] {
  --ps-glow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

body.public-site::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 18%, rgba(61, 143, 106, 0.16), transparent 38%),
    radial-gradient(circle at 86% 82%, rgba(196, 92, 62, 0.16), transparent 40%);
}

.ps-header {
  border-bottom-color: color-mix(in srgb, var(--ps-border) 80%, transparent);
}

.ps-header__inner {
  border-radius: 14px;
}

.ps-nav a {
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.ps-nav a:hover {
  background: var(--ps-accent-soft);
}

.ps-nav a.is-active,
.ps-nav__dd-btn.is-active {
  background: var(--ps-accent-soft);
}

.ps-nav__dd-panel {
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--ps-surface) 90%, transparent);
}

.ps-container {
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
  padding-bottom: clamp(3.4rem, 5vw, 5rem);
}

.ps-card,
.ps-guide-card,
.ps-tool-tile {
  border-radius: var(--ps-radius-lg);
  box-shadow: 0 10px 34px rgba(25, 22, 20, 0.08);
}

html[data-theme="dark"] .ps-card,
html[data-theme="dark"] .ps-guide-card,
html[data-theme="dark"] .ps-tool-tile {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.ps-btn {
  border-radius: 999px;
}

.ps-btn--primary {
  background: linear-gradient(135deg, var(--ps-accent) 0%, var(--ps-accent-2) 100%);
  box-shadow: var(--ps-glow);
}

.ps-btn--primary:hover {
  transform: translateY(-1px);
}

.ps-btn--ghost {
  border-width: 1px;
}

.ps-breadcrumb {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: color-mix(in srgb, var(--ps-surface) 86%, transparent);
}

.ps-page-head {
  max-width: 65ch;
}

.ps-page-head h1,
.ps-prose h1 {
  letter-spacing: -0.02em;
}

.ps-page-lead {
  color: var(--ps-muted);
  margin-top: 0;
}

.ps-grid-cards {
  gap: 1.35rem;
}

.ps-guide-card__cover {
  height: 130px;
}

.ps-guide-card h3 {
  letter-spacing: -0.01em;
}

.ps-tool-tile {
  position: relative;
  overflow: hidden;
}

.ps-tool-tile::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ps-accent-soft), transparent 68%);
  pointer-events: none;
}

.ps-stack-top-xl {
  margin-top: 2rem;
}

.ps-actions-center {
  text-align: center;
}

.ps-inline-actions {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ps-inspo-grid--top {
  margin-top: 0.5rem;
}

/* Inspiration page — editorial sections + CTA */
.inspiration-page__head {
  max-width: 40rem;
  margin-bottom: 0.25rem;
}
.inspiration-page__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--ps-muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.inspiration-page__lead {
  max-width: 48ch;
  line-height: 1.6;
  color: var(--ps-text);
  opacity: 0.95;
}
.inspiration-page__section-label {
  margin: 2.5rem 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ps-muted);
}
.inspiration-page__section-label:first-of-type {
  margin-top: 1.75rem;
}
.inspiration-page__section-label--out {
  margin-top: 2.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ps-border);
}
.inspiration-page__section-intro {
  margin: 0 0 0.9rem;
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--ps-muted);
  line-height: 1.5;
}
.inspiration-page .ps-inspo-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.inspiration-page .ps-inspo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}
.inspiration-page .ps-inspo-item:focus-within {
  outline: 2px solid var(--ui-primary, #2f6f4f);
  outline-offset: 3px;
}
.ps-cta-band--inspo p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.ps-cta-band--inspo a:not(.ps-btn) {
  color: var(--ui-primary, #2f6f4f);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.ps-cta-band--inspo a:not(.ps-btn):hover {
  opacity: 0.9;
}
.inspiration-page__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  margin: 1.1rem 0 0;
}
@media (max-width: 520px) {
  .inspiration-page__cta-row .ps-btn {
    width: 100%;
    justify-content: center;
  }
}

.ps-cta-mt {
  margin-top: 3rem;
}

.ps-head-tight {
  margin-bottom: 0.5rem;
}

.ps-lead-tight {
  margin: 0;
  max-width: 52ch;
}

.ps-search-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ps-cta-links {
  margin-top: 2.5rem;
  text-align: center;
}

.ps-inline-offset {
  margin-left: 0.5rem;
}

.ps-helper-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ps-muted);
}

.ps-tile-cta {
  margin-top: 1rem;
}

.ps-home-actions {
  justify-content: center;
}

.ps-home-cta {
  padding-top: 0.25rem;
}

/* Content affiliate layout */
.content-layout {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 980px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
  .content-sidebar {
    position: sticky;
    top: 92px;
  }
}

.content-main {
  display: grid;
  gap: 1.1rem;
}

.sidebar-card {
  border: 1px solid var(--ps-border);
  border-radius: 16px;
  background: var(--ps-surface);
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
}

.sidebar-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--ps-display);
  font-size: 1.05rem;
}

.sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.sidebar-card li {
  margin-bottom: 0.35rem;
}

.sidebar-card a {
  color: var(--ps-text);
  text-decoration: none;
}

.sidebar-card a:hover {
  color: var(--ps-accent);
}

.sidebar-card--cta p {
  margin: 0 0 0.75rem;
  color: var(--ps-muted);
}

.affi-block {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--ps-border);
  border-radius: 16px;
  background: var(--ps-surface);
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.affi-block:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 16px 34px rgba(28, 25, 23, 0.12);
}

@media (min-width: 820px) {
  .affi-block {
    grid-template-columns: 280px 1fr;
  }
}

.affi-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.affi-content h3 {
  margin: 0;
  font-family: var(--ps-display);
  font-size: 1.25rem;
}

.affi-content p {
  margin: 0.55rem 0 0.75rem;
  color: var(--ps-muted);
  max-width: 72ch;
}

.affi-proscons {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

@media (min-width: 700px) {
  .affi-proscons {
    grid-template-columns: 1fr 1fr;
  }
}

.affi-proscons div {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: color-mix(in srgb, var(--ps-surface) 88%, transparent);
}

.affi-proscons strong {
  font-size: 0.9rem;
}

.affi-proscons ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: var(--ps-muted);
}

.ps-card--lift:hover,
.ps-guide-card:hover,
.ps-tool-tile:hover {
  transform: translateY(-4px) scale(1.01);
}

@media (max-width: 760px) {
  .ps-actions .ps-btn,
  .sidebar-card .ps-btn,
  .affi-content .ps-btn {
    width: 100%;
  }
}

/* Premium Editorial Refinement */
:root {
  --ps-space-1: 0.5rem;
  --ps-space-2: 0.75rem;
  --ps-space-3: 1rem;
  --ps-space-4: 1.5rem;
  --ps-space-5: 2rem;
  --ps-space-6: 3rem;
  --ps-space-7: 4rem;
}

/* Reusable UI components */
.ui-section {
  margin-block: var(--ps-space-6);
}

.ui-section-head {
  margin-bottom: var(--ps-space-5);
}

.ui-card {
  border: 1px solid var(--ps-border);
  border-radius: 18px;
  background: var(--ps-surface);
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
  padding: 1.2rem;
}

.ui-card-title {
  margin: 0;
  font-family: var(--ps-display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.3rem);
  line-height: 1.3;
}

.ui-card-text {
  margin: 0.55rem 0 0;
  color: var(--ps-muted);
  line-height: 1.68;
}

.ui-btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.ui-btn-offset {
  margin-left: 0.5rem;
}

.ui-prose-meta {
  color: var(--ps-muted);
  font-size: 0.95rem;
}

.ui-section-intro {
  color: var(--ps-muted);
  margin-top: 0;
}

.ui-product {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--ps-border);
  border-radius: 18px;
  background: var(--ps-surface);
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
  padding: clamp(1rem, 1.8vw, 1.4rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 820px) {
  .ui-product {
    grid-template-columns: 320px 1fr;
    gap: 1.2rem;
  }
}

.ui-product:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 16px 34px rgba(28, 25, 23, 0.12);
}

/* Utility classes for consistent composition */
.u-prose-width {
  max-width: 65ch;
}

.u-prose-width-sm {
  max-width: 55ch;
}

/* N8N / admin-published product landing HTML */
.landing-page .landing-body {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ps-text, #1c1917);
}

.landing-page .landing-body h2 {
  font-family: var(--ps-font-display, "Poppins", system-ui, sans-serif);
  font-size: clamp(1.25rem, 1vw + 1rem, 1.45rem);
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.landing-page .landing-body h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.5rem;
}

.landing-page .landing-body p {
  margin: 0 0 1rem;
}

.landing-page .landing-body ul,
.landing-page .landing-body ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.landing-page .landing-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.5rem 0 1rem;
}

.landing-page .landing-body a {
  color: var(--ps-accent, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.landing-h1 {
  font-family: var(--ps-font-display, "Poppins", system-ui, sans-serif);
  font-size: clamp(1.45rem, 1.2vw + 1rem, 1.85rem);
  line-height: 1.25;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.landing-intro {
  font-size: 1.05rem;
  color: var(--ps-muted, #57534e);
  margin: 0 0 1.25rem;
}

.landing-section {
  margin: 1.25rem 0;
}

.landing-h2 {
  font-family: var(--ps-font-display, "Poppins", system-ui, sans-serif);
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}

.landing-p {
  margin: 0 0 0.85rem;
}

.landing-figure {
  margin: 1rem 0;
}

.landing-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 12px;
}

.landing-cta-wrap {
  margin: 1.75rem 0 1rem;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.landing-faq {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-faq-item {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.4);
}

.landing-faq-q {
  cursor: pointer;
  font-weight: 600;
}

.landing-faq-a {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ps-muted, #57534e);
}

/* ═══════════════════════════════════════════════════
   RICH LANDING PAGE — lp-* components
   ═══════════════════════════════════════════════════ */

/* Shared tokens */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--ps-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.55rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  min-height: 50px;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn--primary {
  background: var(--ps-cta);
  color: #fff;
  box-shadow: 0 10px 28px rgba(239, 108, 0, 0.32);
}
.lp-btn--primary:hover {
  background: var(--ps-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(239, 108, 0, 0.38);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--ps-accent);
  border-color: color-mix(in srgb, var(--ps-accent) 55%, var(--ps-border));
}
.lp-btn--ghost:hover { background: var(--ps-accent-soft); }
.lp-btn--large {
  font-size: 1.08rem;
  padding: 0.9rem 2rem;
  min-height: 56px;
}

.lp-section-title {
  font-family: var(--ps-display);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  color: var(--ed-text-strong, var(--ps-text));
}

/* HERO */
.lp-hero {
  padding: clamp(1.6rem, 3vw, 2.6rem) 0 0.5rem;
  text-align: center;
}
.lp-hero__headline {
  font-family: var(--ps-display);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  color: var(--ed-text-strong, var(--ps-text));
  text-wrap: balance;
}
.lp-hero__sub {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.22rem);
  color: var(--ed-text-soft, var(--ps-muted));
  max-width: 58ch;
  margin: 0 auto 1.4rem;
  line-height: 1.68;
}
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

/* Hero image */
.lp-hero-img {
  margin: 0 0 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.14);
  line-height: 0;
}
.lp-hero-img__el {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
}

/* STATS */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ps-border);
  border: 1px solid var(--ps-border);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 1.6rem;
}
.lp-stat {
  padding: 1.1rem 0.75rem;
  text-align: center;
  background: var(--ps-surface);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lp-stat__num {
  font-family: var(--ps-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--ps-accent);
  line-height: 1;
}
.lp-stat__label {
  font-size: 0.8rem;
  color: var(--ed-text-soft, var(--ps-muted));
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* BENEFITS */
.lp-benefits {
  padding: 0.5rem 0 1rem;
}
.lp-benefits__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .lp-benefits__grid { grid-template-columns: repeat(3, 1fr); }
}
.lp-benefit-card {
  border: 1px solid var(--ed-border-soft, var(--ps-border));
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.25rem;
  background: linear-gradient(180deg, var(--ed-surface, var(--ps-surface)) 0%, color-mix(in srgb, var(--ed-surface, var(--ps-surface)) 80%, var(--ps-bg-warm)) 100%);
  box-shadow: var(--ed-shadow-card, 0 8px 24px rgba(28,25,23,0.07));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ed-shadow-hover, 0 16px 40px rgba(28,25,23,0.12));
}
.lp-benefit-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.7rem;
  line-height: 1;
}
.lp-benefit-card__title {
  font-family: var(--ps-display);
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
}
.lp-benefit-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ed-text-soft, var(--ps-muted));
  line-height: 1.68;
}

/* HOW IT WORKS */
.lp-how {
  padding: 1rem 0;
}
.lp-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 720px) {
  .lp-how__steps { grid-template-columns: repeat(3, 1fr); }
}
.lp-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border: 1px solid var(--ed-border-soft, var(--ps-border));
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--ed-surface, var(--ps-surface));
  box-shadow: var(--ed-shadow-card, 0 6px 20px rgba(28,25,23,0.06));
}
.lp-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2));
  color: #fff;
  font-family: var(--ps-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step__body { flex: 1; }
.lp-step__title {
  display: block;
  font-family: var(--ps-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.lp-step__desc {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ed-text-soft, var(--ps-muted));
  line-height: 1.62;
}

/* GALLERY */
.lp-gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 0.5rem 0 1rem;
}
.lp-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  line-height: 0;
}
.lp-gallery__item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lp-gallery__item:hover img { transform: scale(1.04); }

/* PROS / CONS */
.lp-proscons {
  display: grid;
  gap: 0.9rem;
  margin: 0.75rem 0;
}
@media (min-width: 640px) {
  .lp-proscons { grid-template-columns: repeat(2, 1fr); }
}
.lp-pros,
.lp-cons {
  border: 1px solid var(--ed-border-soft, var(--ps-border));
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--ed-surface, var(--ps-surface));
}
.lp-proscons__title {
  font-family: var(--ps-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.7rem;
}
.lp-proscons__title--pro { color: var(--ps-accent); }
.lp-proscons__title--con { color: var(--ps-muted); }
.lp-pros ul,
.lp-cons ul {
  margin: 0;
  padding-left: 1.1rem;
}
.lp-pros li,
.lp-cons li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--ed-text-soft, var(--ps-muted));
  line-height: 1.6;
}

/* TESTIMONIALS */
.lp-testimonials {
  padding: 0.5rem 0;
}
.lp-testimonials__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .lp-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.lp-testimonial {
  margin: 0;
  border: 1px solid var(--ed-border-soft, var(--ps-border));
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.15rem;
  background: linear-gradient(180deg, var(--ed-surface, var(--ps-surface)) 0%, color-mix(in srgb, var(--ed-surface, var(--ps-surface)) 78%, var(--ps-bg-warm)) 100%);
  box-shadow: var(--ed-shadow-card, 0 8px 24px rgba(28,25,23,0.07));
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lp-testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.lp-testimonial__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ed-text-soft, var(--ps-muted));
  flex: 1;
  font-style: italic;
}
.lp-testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ed-border-soft, var(--ps-border));
}
.lp-testimonial__name {
  font-family: var(--ps-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.lp-testimonial__role {
  font-size: 0.8rem;
  color: var(--ps-muted);
}

/* MID-PAGE CTA */
.lp-cta-mid {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

/* FAQ */
.lp-faq { padding: 0.5rem 0; }
.lp-faq__list { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-faq-item {
  border: 1px solid var(--ed-border-soft, var(--ps-border));
  border-radius: 12px;
  background: var(--ed-surface, var(--ps-surface));
  overflow: hidden;
  transition: box-shadow 0.18s ease;
}
.lp-faq-item[open] {
  box-shadow: var(--ed-shadow-card, 0 8px 24px rgba(28,25,23,0.07));
}
.lp-faq-item__q {
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  color: var(--ed-text-strong, var(--ps-text));
}
.lp-faq-item__q::-webkit-details-marker { display: none; }
.lp-faq-item__q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ps-muted);
  line-height: 1;
}
.lp-faq-item[open] .lp-faq-item__q::after { content: "−"; }
.lp-faq-item__a {
  padding: 0 1.1rem 1rem;
}
.lp-faq-item__a p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ed-text-soft, var(--ps-muted));
  line-height: 1.72;
}

/* FINAL CTA BAND */
.lp-final-cta {
  text-align: center;
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, var(--ps-accent) 0%, #1a4a2e 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
  margin-top: 0.75rem;
}
.lp-final-cta__headline {
  font-family: var(--ps-display);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: #fff;
}
.lp-final-cta__sub {
  margin: 0 0 1.4rem;
  font-size: 1.02rem;
  opacity: 0.9;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.lp-final-cta .lp-btn--primary {
  background: #fff;
  color: var(--ps-accent);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
.lp-final-cta .lp-btn--primary:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

/* LEGACY sections wrapper */
.lp-sections { margin-top: 0.5rem; }
.lp-section { margin: 1.25rem 0; }
.lp-section__title {
  font-family: var(--ps-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.lp-section__p { margin: 0 0 0.85rem; color: var(--ed-text-soft, var(--ps-muted)); }
.lp-section__bullets {
  margin: 0.5rem 0 0.75rem 1rem;
  color: var(--ed-text-soft, var(--ps-muted));
}

/* Mobile */
@media (max-width: 640px) {
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stats .lp-stat { border-radius: 0; }
  .lp-hero__headline { font-size: clamp(1.6rem, 9vw, 2.2rem); }
}

/* Dark mode */
html[data-theme="dark"] .lp-final-cta {
  background: linear-gradient(135deg, #2e7d32 0%, #0d2b16 100%);
}
html[data-theme="dark"] .lp-testimonial__stars { color: #fbbf24; }
html[data-theme="dark"] .lp-step__num {
  background: linear-gradient(135deg, var(--ps-accent), #2a7d52);
}

/* ═══════════════════════════════════════════════════
   Premium product landing — inside site chrome (lpt-*)
   Uses --ps-* tokens + html[data-theme="dark"]
   ═══════════════════════════════════════════════════ */

.product-landing-rich {
  font-family: var(--ps-font);
  color: var(--ps-text);
  min-width: 0;
  max-width: 100%;
  --lpt-radius-sm: 10px;
  --lpt-radius: var(--ps-radius);
  --lpt-radius-lg: var(--ps-radius-lg, 22px);
  --lpt-max: var(--ps-max);
  --lpt-shadow: var(--ps-shadow);
  --lpt-hero-highlight: color-mix(in srgb, var(--ps-accent-2) 85%, #fff);
}

.product-landing-rich h1,
.product-landing-rich h2,
.product-landing-rich h3 {
  font-family: var(--ps-display);
}

.product-landing-rich__jump {
  margin: 0 0 1.25rem;
  padding: 0.65rem 0 1rem;
  border-bottom: 1px solid var(--ps-border);
  background: color-mix(in srgb, var(--ps-surface) 55%, var(--ps-bg));
  margin-inline: 0;
  padding-inline: 0;
  border-radius: var(--lpt-radius-sm);
  max-width: 100%;
}

@media (min-width: 900px) {
  .product-landing-rich__jump {
    padding-inline: 0.25rem;
  }
}

.product-landing-rich__jump-inner {
  max-width: var(--lpt-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  min-width: 0;
}

.product-landing-rich__jump-inner a:not(.lpt-btn) {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ps-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.product-landing-rich__jump-inner a:not(.lpt-btn):hover {
  color: var(--ps-accent);
  border-bottom-color: color-mix(in srgb, var(--ps-accent) 45%, transparent);
}

.product-landing-rich .lpt-container {
  max-width: var(--lpt-max);
  margin: 0 auto;
  padding-inline: 0;
}

.product-landing-rich .lpt-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.product-landing-rich .lpt-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ps-accent);
  margin-bottom: 0.45rem;
}

.product-landing-rich .lpt-section-title {
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ps-text);
}

.product-landing-rich .lpt-text-center {
  text-align: center;
}

.product-landing-rich .lpt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-landing-rich .lpt-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Buttons */
.product-landing-rich .lpt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.65rem;
  border-radius: 999px;
  font-family: var(--ps-display);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  min-height: 50px;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.product-landing-rich .lpt-btn:active {
  transform: scale(0.97);
}

.product-landing-rich .lpt-btn--compact {
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  margin-left: auto;
}

@media (max-width: 520px) {
  .product-landing-rich .lpt-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .product-landing-rich .lpt-btn--compact {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.product-landing-rich .lpt-btn--primary {
  background: var(--ps-cta);
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--ps-cta) 35%, transparent);
}

.product-landing-rich .lpt-btn--primary:hover {
  background: var(--ps-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ps-cta) 42%, transparent);
}

.product-landing-rich .lpt-btn--outline {
  background: transparent;
  color: #fff;
  border-color: color-mix(in srgb, #fff 45%, transparent);
}

.product-landing-rich .lpt-btn--outline:hover {
  background: color-mix(in srgb, #fff 12%, transparent);
  border-color: color-mix(in srgb, #fff 70%, transparent);
}

.product-landing-rich .lpt-btn--light {
  background: #fff;
  color: var(--ps-accent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.product-landing-rich .lpt-btn--light:hover {
  background: color-mix(in srgb, #fff 92%, var(--ps-accent-soft));
  transform: translateY(-2px);
}

.product-landing-rich .lpt-btn--lg {
  font-size: 1.04rem;
  padding: 0.95rem 2.15rem;
  min-height: 56px;
}

/* Hero */
.product-landing-rich .lpt-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--lpt-radius-lg);
  min-height: min(72vh, 640px);
  max-width: 100%;
  display: grid;
  align-items: center;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--ps-accent) 52%, #0f1814) 0%,
    color-mix(in srgb, var(--ps-accent) 22%, #0a1210) 52%,
    #0c1612 100%
  );
  margin-bottom: 1.5rem;
}

html[data-theme="dark"] .product-landing-rich .lpt-hero {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--ps-accent) 28%, #060908) 0%,
    color-mix(in srgb, var(--ps-bg) 15%, #050807) 100%
  );
}

.product-landing-rich .lpt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 18% 28%, color-mix(in srgb, var(--ps-accent-2) 22%, transparent), transparent 58%),
    radial-gradient(ellipse 55% 70% at 82% 72%, color-mix(in srgb, var(--ps-terracotta) 18%, transparent), transparent 55%);
  pointer-events: none;
}

.product-landing-rich .lpt-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, #fff 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, #fff 5%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 42%, #000, transparent);
}

.product-landing-rich .lpt-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 1.75rem);
  display: grid;
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

@media (min-width: 900px) {
  .product-landing-rich .lpt-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.product-landing-rich .lpt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: color-mix(in srgb, var(--ps-accent-soft) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--ps-accent-2) 35%, transparent);
  color: var(--lpt-hero-highlight);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.product-landing-rich .lpt-hero__headline {
  font-size: clamp(1.85rem, 1.5rem + 2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 1rem;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-landing-rich .lpt-hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--lpt-hero-highlight), color-mix(in srgb, var(--ps-terracotta) 80%, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-landing-rich .lpt-hero__sub {
  font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.15rem);
  color: color-mix(in srgb, #fff 78%, var(--ps-accent-2));
  max-width: 50ch;
  margin: 0 0 1.5rem;
  line-height: 1.68;
}

.product-landing-rich .lpt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.product-landing-rich .lpt-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-landing-rich .lpt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: color-mix(in srgb, #fff 10%, transparent);
  border: 1px solid color-mix(in srgb, #fff 16%, transparent);
  color: color-mix(in srgb, #fff 82%, transparent);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
}

.product-landing-rich .lpt-hero__badge::before {
  content: "✓";
  color: var(--lpt-hero-highlight);
}

.product-landing-rich .lpt-hero__visual {
  position: relative;
  min-width: 0;
}

.product-landing-rich .lpt-hero__img-wrap {
  max-width: 100%;
  border-radius: var(--lpt-radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px color-mix(in srgb, var(--ps-accent-2) 25%, transparent);
  line-height: 0;
}

.product-landing-rich .lpt-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.product-landing-rich .lpt-hero__no-img {
  height: 320px;
  border-radius: var(--lpt-radius-lg);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ps-accent) 35%, transparent) 0%,
    color-mix(in srgb, var(--ps-terracotta) 22%, transparent) 100%
  );
  border: 1px solid color-mix(in srgb, #fff 12%, transparent);
}

/* Stats */
.product-landing-rich .lpt-stats {
  background: linear-gradient(90deg, var(--ps-accent) 0%, var(--ps-accent-2) 48%, var(--ps-terracotta) 100%);
  border-radius: var(--lpt-radius);
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.product-landing-rich .lpt-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  text-align: center;
}

.product-landing-rich .lpt-stat {
  padding: 1.1rem 0.85rem;
  background: color-mix(in srgb, var(--ps-accent) 8%, #0a0f0c);
}

html[data-theme="dark"] .product-landing-rich .lpt-stat {
  background: color-mix(in srgb, #000 35%, var(--ps-accent));
}

.product-landing-rich .lpt-stat__num {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  font-family: var(--ps-display);
}

.product-landing-rich .lpt-stat__label {
  font-size: 0.8rem;
  color: color-mix(in srgb, #fff 88%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  display: block;
  margin-top: 0.35rem;
}

@media (max-width: 560px) {
  .product-landing-rich .lpt-stats__inner {
    grid-template-columns: 1fr;
  }
}

/* Benefits */
.product-landing-rich .lpt-benefits {
  background: transparent;
}

.product-landing-rich .lpt-benefits__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-landing-rich .lpt-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-landing-rich .lpt-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-landing-rich .lpt-benefit-card {
  background: var(--ps-surface);
  border-radius: var(--lpt-radius);
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid var(--ps-border);
  box-shadow: var(--lpt-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-landing-rich .lpt-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ps-shadow);
}

.product-landing-rich .lpt-benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ps-accent-soft), var(--ps-terracotta-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 0.9rem;
  border: 1px solid color-mix(in srgb, var(--ps-accent) 22%, var(--ps-border));
}

.product-landing-rich .lpt-benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
  color: var(--ps-text);
}

.product-landing-rich .lpt-benefit-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ps-muted);
  line-height: 1.68;
}

/* How it works */
.product-landing-rich .lpt-how {
  background: transparent;
}

.product-landing-rich .lpt-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 720px) {
  .product-landing-rich .lpt-how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .product-landing-rich .lpt-how__steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--ps-accent), var(--ps-accent-2));
    opacity: 0.35;
    pointer-events: none;
  }
}

.product-landing-rich .lpt-step {
  text-align: center;
  position: relative;
  list-style: none;
}

.product-landing-rich .lpt-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.95rem;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--ps-accent) 35%, transparent);
  font-family: var(--ps-display);
}

.product-landing-rich .lpt-step__title {
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--ps-text);
}

.product-landing-rich .lpt-step__desc {
  font-size: 0.95rem;
  color: var(--ps-muted);
  line-height: 1.65;
  margin: 0;
}

/* Gallery */
.product-landing-rich .lpt-gallery {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
}

.product-landing-rich .lpt-gallery__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.product-landing-rich .lpt-gallery__item {
  border-radius: var(--lpt-radius);
  overflow: hidden;
  border: 1px solid var(--ps-border);
  line-height: 0;
  box-shadow: var(--lpt-shadow);
}

.product-landing-rich .lpt-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.product-landing-rich .lpt-gallery__item:hover img {
  transform: scale(1.04);
}

/* Pros / cons */
.product-landing-rich .lpt-proscons__intro {
  margin-bottom: 1.75rem;
}

.product-landing-rich .lpt-proscons__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-landing-rich .lpt-proscons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-landing-rich .lpt-pros-card,
.product-landing-rich .lpt-cons-card {
  border-radius: var(--lpt-radius);
  padding: 1.35rem 1.35rem 1.4rem;
  border: 1px solid var(--ps-border);
  box-shadow: var(--lpt-shadow);
}

.product-landing-rich .lpt-pros-card {
  background: color-mix(in srgb, var(--ps-accent-soft) 45%, var(--ps-surface));
  border-color: color-mix(in srgb, var(--ps-accent) 22%, var(--ps-border));
}

.product-landing-rich .lpt-cons-card {
  background: color-mix(in srgb, var(--ps-surface) 88%, var(--ps-muted));
}

html[data-theme="dark"] .product-landing-rich .lpt-cons-card {
  background: color-mix(in srgb, var(--ps-surface) 94%, var(--ps-bg));
}

.product-landing-rich .lpt-proscons__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.85rem;
}

.product-landing-rich .lpt-pros-card .lpt-proscons__heading {
  color: var(--ps-accent);
}

.product-landing-rich .lpt-cons-card .lpt-proscons__heading {
  color: var(--ps-muted);
}

.product-landing-rich .lpt-pros-card ul,
.product-landing-rich .lpt-cons-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.product-landing-rich .lpt-pros-card li,
.product-landing-rich .lpt-cons-card li {
  font-size: 0.96rem;
  color: var(--ps-muted);
  margin-bottom: 0.42rem;
  line-height: 1.62;
}

.product-landing-rich .lpt-pros-card li::marker {
  color: var(--ps-accent);
  content: "✓  ";
}

.product-landing-rich .lpt-cons-card li::marker {
  color: var(--ps-muted);
  content: "·  ";
}

/* Testimonials — quiet editorial band */
.product-landing-rich .lpt-testioms {
  position: relative;
  overflow: hidden;
  border-radius: var(--lpt-radius-lg);
  background: color-mix(in srgb, var(--ps-bg-warm) 72%, var(--ps-surface));
  border: 1px solid var(--ps-border);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--ps-accent) 12%, transparent);
}

html[data-theme="dark"] .product-landing-rich .lpt-testioms {
  background: color-mix(in srgb, var(--ps-surface) 88%, var(--ps-bg));
  box-shadow: none;
}

.product-landing-rich .lpt-testioms::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 80% at 50% -20%,
    color-mix(in srgb, var(--ps-accent-soft) 55%, transparent),
    transparent 55%
  );
  opacity: 0.45;
  pointer-events: none;
}

.product-landing-rich .lpt-testioms .lpt-container {
  position: relative;
  z-index: 1;
}

.product-landing-rich .lpt-testioms__intro {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 0.25rem;
}

.product-landing-rich .lpt-testioms__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ps-muted);
}

.product-landing-rich .lpt-testioms__heading {
  margin: 0;
  font-family: var(--ps-display);
  font-size: clamp(1.35rem, 1.1rem + 0.65vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ps-text);
}

.product-landing-rich .lpt-testioms__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .product-landing-rich .lpt-testioms__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-landing-rich .lpt-testimonial {
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--lpt-radius);
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--ps-text) 5%, transparent);
  margin: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-landing-rich .lpt-testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--ps-shadow);
}

.product-landing-rich .lpt-testimonial__stars {
  color: color-mix(in srgb, #d4a574 70%, var(--ps-terracotta));
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.92;
}

.product-landing-rich .lpt-testimonial__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ps-muted);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.product-landing-rich .lpt-testimonial__footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--ps-border);
}

.product-landing-rich .lpt-testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ps-accent-soft);
  border: 1px solid color-mix(in srgb, var(--ps-accent) 22%, var(--ps-border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ps-accent);
  font-family: var(--ps-display);
}

.product-landing-rich .lpt-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ps-text);
  display: block;
}

.product-landing-rich .lpt-testimonial__role {
  font-size: 0.76rem;
  color: var(--ps-muted);
  display: block;
}

/* Mid CTA */
.product-landing-rich .lpt-mid-cta {
  padding: 2rem 0;
  text-align: center;
  background: color-mix(in srgb, var(--ps-bg-warm) 65%, var(--ps-surface));
  border-radius: var(--lpt-radius);
  border: 1px solid var(--ps-border);
  margin: 0.5rem 0;
}

html[data-theme="dark"] .product-landing-rich .lpt-mid-cta {
  background: color-mix(in srgb, var(--ps-surface) 55%, var(--ps-bg));
}

.product-landing-rich .lpt-mid-cta__inner {
  padding-inline: 1rem;
}

/* FAQ */
.product-landing-rich .lpt-faq__intro {
  margin-bottom: 1.75rem;
}

.product-landing-rich .lpt-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-landing-rich .lpt-faq-item {
  border: 1px solid var(--ps-border);
  border-radius: var(--lpt-radius);
  background: var(--ps-surface);
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--ps-text) 4%, transparent);
}

.product-landing-rich .lpt-faq-item__btn {
  width: 100%;
  max-width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--ps-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ps-text);
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.product-landing-rich .lpt-faq-item__btn:hover {
  color: var(--ps-accent);
}

.product-landing-rich .lpt-faq-item__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ps-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--ps-accent);
  transition: transform 0.2s ease, background 0.18s ease;
}

.product-landing-rich .lpt-faq-item.open .lpt-faq-item__icon {
  transform: rotate(45deg);
  background: var(--ps-accent);
  color: #fff;
}

.product-landing-rich .lpt-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.28s ease;
}

.product-landing-rich .lpt-faq-item.open .lpt-faq-item__body {
  max-height: 500px;
}

.product-landing-rich .lpt-faq-item__ans {
  padding: 0 1.15rem 1.05rem;
  font-size: 0.96rem;
  color: var(--ps-muted);
  line-height: 1.72;
  margin: 0;
}

/* Final CTA */
.product-landing-rich .lpt-final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--lpt-radius-lg);
  background: linear-gradient(135deg, var(--ps-accent) 0%, color-mix(in srgb, var(--ps-accent) 40%, #0d2818) 100%);
  margin-top: 0.5rem;
}

html[data-theme="dark"] .product-landing-rich .lpt-final-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ps-accent) 75%, #0a120e) 0%, #07100c 100%);
}

.product-landing-rich .lpt-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, color-mix(in srgb, var(--ps-terracotta) 25%, transparent), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.product-landing-rich .lpt-final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  padding-inline: 1rem;
}

.product-landing-rich .lpt-final-cta__headline {
  font-size: clamp(1.55rem, 1.25rem + 1.2vw, 2.45rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.product-landing-rich .lpt-final-cta__sub {
  font-size: 1.05rem;
  color: color-mix(in srgb, #fff 78%, transparent);
  max-width: 52ch;
  margin: 0 auto 1.65rem;
  line-height: 1.65;
}

.product-landing-rich .lpt-final-cta__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: color-mix(in srgb, #fff 58%, transparent);
}

.product-landing-rich .lpt-final-cta__guarantee::before {
  content: "🔒";
}

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

.landing-premium {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-radius: 18px;
  border: 1px solid var(--ps-border);
  background: linear-gradient(180deg, var(--ps-surface) 0%, color-mix(in srgb, var(--ps-surface) 82%, var(--ps-bg-warm)) 100%);
  box-shadow: 0 12px 34px rgba(28, 25, 23, 0.1);
}

.landing-subtitle {
  margin: 0 0 0.7rem;
  font-size: 1.03rem;
  color: var(--ps-muted);
}

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.2rem 0 0.7rem;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: color-mix(in srgb, var(--ps-surface) 88%, transparent);
  font-size: 0.78rem;
  color: var(--ps-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.34rem 0.66rem;
}

.landing-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.landing-highlights li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ps-text);
}

.landing-highlights li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ps-accent);
  font-size: 0.8rem;
  transform: translateY(0.22rem);
}

.landing-bullets {
  margin: 0.5rem 0 0.2rem 1rem;
  color: var(--ps-muted);
}

.landing-h3 {
  margin: 0 0 0.5rem;
  font-family: var(--ps-display);
  font-size: 1rem;
}

.landing-pros-cons {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .landing-pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.landing-pros,
.landing-cons {
  border: 1px solid var(--ps-border);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: color-mix(in srgb, var(--ps-surface) 90%, transparent);
}

.landing-pros ul,
.landing-cons ul {
  margin: 0;
  padding-left: 1rem;
}

.landing-pros li,
.landing-cons li {
  margin-bottom: 0.35rem;
  color: var(--ps-muted);
}

.u-measure-xl {
  max-width: 720px;
}

.u-measure-lg {
  max-width: 50ch;
}

.u-stack-lg {
  margin-bottom: 3rem;
}

.u-mt-lg {
  margin-top: 2rem;
}

.u-mt-xl {
  margin-top: 2.5rem;
}

.u-hero-tight {
  padding-bottom: 2rem;
}

.u-hero-single {
  grid-template-columns: 1fr;
}

/* Honeypot: off-screen, does not affect layout of visible fields */
.u-hp-field {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  pointer-events: none;
}
.u-hp-field input,
.u-hp-field label {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.u-input-full {
  max-width: 100%;
}

.u-meta-row {
  margin-top: 2rem;
}

.u-eyebrow-tight {
  margin-bottom: 0.5rem;
}

.u-actions-row {
  margin-top: 2rem;
}

.u-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ps-muted);
}

/* Component mapping to existing classes */
.ps-card,
.ps-guide-card,
.ps-tool-tile,
.sidebar-card {
  border-radius: 18px;
}

.ps-btn,
.ui-btn {
  min-height: 46px;
}

.ps-btn--primary,
.ui-btn--primary {
  background: var(--ps-cta);
  color: #fff;
}

.ps-btn--primary:hover,
.ui-btn--primary:hover {
  background: var(--ps-cta-hover);
}

/* Inspiration image presets */
.ps-inspo-item__bg {
  background-size: cover;
  background-position: center;
}

.ps-inspo-item__bg--1 {
  background-image: url("/assets/img/photos/inspo-1.jpg");
}

.ps-inspo-item__bg--2 {
  background-image: url("/assets/img/photos/inspo-2.jpg");
}

.ps-inspo-item__bg--3 {
  background-image: url("/assets/img/photos/inspo-3.jpg");
}

.ps-inspo-item__bg--4 {
  background-image: url("/assets/img/photos/guide-home.jpg");
}

.ps-inspo-item__bg--5 {
  background-image: url("/assets/img/photos/inspo-5.jpg");
}

.ps-inspo-item__bg--6 {
  background-image: url("/assets/img/photos/inspo-6.jpg");
}

body.public-site {
  font-size: clamp(1rem, 0.98rem + 0.2vw, 1.08rem);
  line-height: 1.75;
  letter-spacing: 0.005em;
}

.ps-container {
  max-width: min(1180px, 96vw);
  padding-inline: clamp(1rem, 2.3vw, 1.75rem);
  padding-top: clamp(2.6rem, 5vw, 4rem);
  padding-bottom: clamp(3.4rem, 5.4vw, 5.2rem);
}

.ps-section-head {
  margin-bottom: clamp(1.4rem, 2.6vw, 2.2rem);
}

.ps-section-title {
  font-size: clamp(1.55rem, 1.35rem + 1vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.ps-section-intro,
.ps-page-lead {
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem);
  line-height: 1.72;
  color: color-mix(in srgb, var(--ps-muted) 88%, var(--ps-text));
  max-width: 68ch;
}

.ps-btn {
  min-height: 46px;
  padding: 0.72rem 1.35rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ps-btn--primary {
  box-shadow: 0 14px 30px rgba(239, 108, 0, 0.24);
}

.ps-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(239, 108, 0, 0.28);
}

.ps-btn--ghost {
  border-color: color-mix(in srgb, var(--ps-accent) 62%, var(--ps-border));
}

.ps-grid-cards {
  gap: clamp(1rem, 2.2vw, 1.65rem);
}

.ps-card {
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.25rem;
}

.ps-card-cover {
  height: 168px;
  border-radius: 12px;
  margin: -0.2rem -0.2rem 1.05rem;
}

.ps-card h3 {
  font-size: clamp(1.08rem, 1.02rem + 0.3vw, 1.3rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.ps-card p {
  font-size: 0.97rem;
  line-height: 1.68;
}

.ps-card .ps-btn {
  margin-top: 0.95rem;
}

.content-layout {
  gap: clamp(1.2rem, 2.8vw, 2.1rem);
}

@media (min-width: 980px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

.content-main {
  gap: clamp(1.15rem, 2.1vw, 1.7rem);
}

.ps-page-head {
  max-width: 76ch;
}

.affi-block {
  border-radius: 18px;
  padding: clamp(1rem, 1.8vw, 1.4rem);
}

@media (min-width: 820px) {
  .affi-block {
    grid-template-columns: 320px 1fr;
    gap: 1.2rem;
  }
}

.affi-media img {
  border-radius: 14px;
  min-height: 250px;
}

.affi-content h3 {
  font-size: clamp(1.22rem, 1.14rem + 0.4vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.affi-content p {
  font-size: 1rem;
  line-height: 1.72;
  margin-top: 0.68rem;
  margin-bottom: 0.88rem;
}

.affi-proscons {
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.affi-proscons div {
  padding: 0.78rem 0.82rem;
}

.affi-proscons strong {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.affi-proscons li {
  margin-bottom: 0.28rem;
}

.content-sidebar {
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  border-radius: 18px;
  padding: 1.05rem 1.1rem;
  margin-bottom: 0;
}

.sidebar-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.65rem;
}

.sidebar-card li {
  margin-bottom: 0.45rem;
}

.ps-faq details {
  border-radius: 14px;
}

.ps-faq summary {
  font-size: 1.01rem;
}

.ps-cta-band {
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2.2rem);
}

.ps-cta-band h2 {
  font-size: clamp(1.45rem, 1.3rem + 0.8vw, 2.05rem);
  line-height: 1.18;
}

.ps-cta-band p {
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Smart Setup Builder */
.ssb-shell {
  border: 1px solid var(--ps-border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--ps-surface) 92%, transparent);
  box-shadow: 0 12px 34px rgba(28, 25, 23, 0.1);
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.ssb-progress-wrap {
  margin-bottom: 1.35rem;
}

.ssb-progress-track {
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ps-border) 65%, transparent);
  overflow: hidden;
}

.ssb-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--ps-accent), var(--ps-cta));
  transition: width 0.28s ease;
}

.ssb-progress-steps {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(4, 1fr);
  font-size: 0.79rem;
  color: var(--ps-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ssb-progress-steps span.is-active {
  color: var(--ps-accent);
  font-weight: 700;
}

.ssb-step {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ssb-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ssb-choice-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.ssb-choice-grid--budget {
  grid-template-columns: repeat(3, 1fr);
}

.ssb-choice {
  text-align: left;
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ssb-choice:hover {
  border-color: color-mix(in srgb, var(--ps-accent) 50%, var(--ps-border));
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.09);
  transform: translateY(-2px);
}

.ssb-choice.is-selected {
  border-color: var(--ps-accent);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.16);
  background: color-mix(in srgb, var(--ps-accent-soft) 45%, var(--ps-surface));
}

.ssb-choice strong {
  display: block;
  font-family: var(--ps-display);
  font-size: 1.06rem;
}

.ssb-choice p {
  margin: 0.4rem 0 0;
  color: var(--ps-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ssb-result-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: flex-end;
  justify-content: space-between;
}

.ssb-estimate {
  border: 1px solid var(--ps-border);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  background: var(--ps-surface);
}

.ssb-estimate span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ps-muted);
}

.ssb-estimate strong {
  font-family: var(--ps-display);
  font-size: 1.45rem;
  color: var(--ps-accent);
  line-height: 1.1;
}

.ssb-tags {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ssb-tag {
  border: 1px solid var(--ps-border);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.8rem;
  color: var(--ps-muted);
  background: var(--ps-surface);
}

.ssb-products {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.ssb-product {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 180px 1fr;
  border: 1px solid var(--ps-border);
  border-radius: 16px;
  background: var(--ps-surface);
  padding: 0.8rem;
}

.ssb-product.is-best-choice {
  border-color: color-mix(in srgb, var(--ps-accent) 60%, var(--ps-border));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ps-accent-soft) 70%, transparent);
}

.ssb-product__media img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ssb-product__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.ssb-product__top h3 {
  margin: 0;
  font-family: var(--ps-display);
  font-size: 1.08rem;
}

.ssb-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  padding: 0.26rem 0.55rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-muted);
  background: color-mix(in srgb, var(--ps-surface) 92%, transparent);
}

.ssb-badge--best {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--ps-accent), #1f6f73);
}

.ssb-product__body p {
  margin: 0.45rem 0 0.8rem;
  color: var(--ps-muted);
  font-size: 0.94rem;
}

.ssb-product__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
}

.ssb-price {
  font-family: var(--ps-display);
  font-size: 1.1rem;
  color: var(--ps-accent);
}

.ssb-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Unified Editorial Design System */
:root {
  --ui-primary: #2e7d32;
  --ui-accent: #ff6b35;
  --ui-bg: #f7f8fa;
  --ui-text: #222222;
  --ui-radius: 14px;
  --ui-shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.06);
  --ui-shadow-md: 0 14px 30px rgba(17, 24, 39, 0.1);
  --ui-space-1: 8px;
  --ui-space-2: 16px;
  --ui-space-3: 24px;
  --ui-space-4: 32px;
  --ui-space-5: 40px;
  --ui-space-6: 48px;
}

html[data-theme="dark"] {
  --ui-bg: #0f1411;
  --ui-text: #e7e5e4;
  --ui-shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.34);
  --ui-shadow-md: 0 20px 42px rgba(0, 0, 0, 0.5);
}

body.public-site {
  background: var(--ui-bg);
  color: var(--ui-text);
  line-height: 1.75;
}

.ps-h1,
h1 {
  font-family: var(--ps-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h2,
.ps-section-title {
  font-family: var(--ps-display);
  font-weight: 700;
  letter-spacing: -0.018em;
}

h3 {
  font-family: var(--ps-display);
  font-weight: 700;
}

.ps-btn,
.ps-nav__cta {
  border-radius: 999px;
}

.ps-btn--primary {
  background: var(--ui-accent);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.3);
}

.ps-btn--primary:hover {
  background: #f45a22;
}

.ps-container {
  max-width: 1200px;
}

.ui-section {
  margin-block: var(--ui-space-6);
}

.ui-section-head {
  margin-bottom: var(--ui-space-4);
}

.cmp-grid {
  display: grid;
  gap: var(--ui-space-3);
}

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

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

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

.cmp-scroller {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--ui-space-2);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  padding-bottom: 0;
  /* mandatory snap + wheel/drag causes oscillation; keep free scroll */
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: auto;
  touch-action: manipulation;
  scroll-behavior: auto;
  /* iOS: reduce rubber-band fighting horizontal drag */
  overscroll-behavior-y: auto;
}

.cmp-scroller > * {
  flex: 0 0 min(100%, 300px);
  min-width: 240px;
  max-width: 320px;
}

/* Reveal-on-scroll (opacity/translate) looks “wobbly” on horizontally moving items */
.cmp-scroller .ps-reveal,
.cmp-scroller .ps-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.cmp-scroller--products {
  /* slightly wider cards for product text */
  gap: 1rem;
}

.cmp-scroller--products > * {
  min-width: 270px;
  max-width: 340px;
}

/* TREND row: even card height, clamp title + blurb; body fills space above CTA */
.cmp-scroller--products .cmp-card--trend {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.cmp-scroller--products .cmp-card--trend .cmp-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 12px;
}

.cmp-scroller--products .cmp-card--trend .cmp-card__title {
  margin: 0 0 6px;
  font-size: 1.04rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.cmp-scroller--products .cmp-card--trend .cmp-card__excerpt {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1 1 auto;
  max-height: 4.4em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  word-break: break-word;
  color: var(--ps-muted);
}

.cmp-scroller--products .cmp-card--trend .ps-tile-cta {
  margin-top: auto;
  margin-bottom: 0;
  flex-shrink: 0;
  padding-top: 4px;
}

.cmp-scroller::-webkit-scrollbar {
  display: none;
}

.cmp-scroller.is-dragging {
  cursor: grabbing;
}

.cmp-card {
  border-radius: var(--ui-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--ed-surface);
  box-shadow: var(--ui-shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ui-shadow-md);
}

.cmp-card__media-link {
  display: block;
}

.cmp-card__media {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.cmp-card__body {
  padding: 14px 14px 16px;
}

.cmp-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cmp-card__tag,
.cmp-card__badge {
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.cmp-card__tag {
  color: var(--ui-primary);
  background: rgba(46, 125, 50, 0.12);
}

.cmp-card__badge {
  color: #1f2937;
  background: #eef2ff;
}

.cmp-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.35;
}

.cmp-card h3 a {
  color: var(--ui-text);
  text-decoration: none;
}

.cmp-card h3 a:hover {
  color: var(--ui-primary);
}

.cmp-card p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.94rem;
}

.js-guide-card.is-hidden {
  display: none;
}

.cmp-trending {
  background: transparent;
}

.cmp-trending .cmp-card {
  background: var(--ed-surface);
  box-shadow: none !important;
  border-color: color-mix(in srgb, var(--ed-border-soft) 78%, transparent);
}

.cmp-trending .cmp-card:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.cmp-topic-links {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.cmp-topic-links a {
  text-decoration: none;
  color: var(--ui-primary);
  font-weight: 600;
}

.cmp-topic-links a:hover {
  text-decoration: underline;
}

.cmp-category {
  border-radius: var(--ui-radius);
  background: var(--ed-surface);
  border: 1px solid var(--ed-border-soft);
  box-shadow: var(--ui-shadow-sm);
  padding: var(--ui-space-3);
  text-align: center;
  text-decoration: none;
  color: var(--ui-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--ui-shadow-md);
}

.cmp-category__icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
}

.cmp-category__label {
  font-weight: 700;
}

/* Home: categories — compact horizontal row on small screens, grid on large */
.home-categories-rail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  /* pan-x can block native scroll on some iOS; JS augments with touch+wheel */
  touch-action: manipulation;
  padding: 0.1rem 0 0.35rem;
  margin: 0;
  list-style: none;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-categories-rail::-webkit-scrollbar {
  display: none;
}

.home-categories-rail .cmp-category--rail {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem 0.42rem;
  min-width: 0;
  max-width: min(14.5rem, 78vw);
  text-align: left;
  border-radius: 999px;
  box-shadow: var(--ui-shadow-sm);
  transform: none;
}

.home-categories-rail .cmp-category--rail:hover {
  transform: none;
  box-shadow: var(--ui-shadow-sm);
  border-color: rgba(46, 125, 50, 0.35);
}

.home-categories-rail .cmp-category--rail .cmp-category__icon {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.home-categories-rail .cmp-category--rail .cmp-category__label {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  word-break: break-word;
}

@media (min-width: 761px) {
  .home-categories-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    flex-wrap: wrap;
    gap: var(--ui-space-3);
    padding: 0;
    width: 100%;
    min-width: 0;
    touch-action: auto;
  }

  .home-categories-rail .cmp-category--rail {
    display: block;
    max-width: none;
    text-align: center;
    padding: var(--ui-space-3);
    border-radius: var(--ui-radius);
    flex-direction: column;
  }

  .home-categories-rail .cmp-category--rail .cmp-category__icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 10px;
  }

  .home-categories-rail .cmp-category--rail .cmp-category__label {
    font-size: 1rem;
    font-weight: 700;
    -webkit-line-clamp: unset;
    display: block;
    text-align: center;
  }

  .home-categories-rail .cmp-category--rail:hover {
    transform: translateY(-3px);
    box-shadow: var(--ui-shadow-md);
  }
}

@media (max-width: 760px) {
  .home-categories-section .ps-section-head .ps-section-intro,
  .home-categories-section .ui-section-head .ps-section-intro {
    display: none;
  }
  .home-categories-section.ui-section,
  .home-categories-section {
    margin-bottom: 0.4rem;
  }
}

.cmp-product__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cmp-product__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: #c2410c;
  padding: 4px 10px;
}

.cmp-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ui-space-2);
  flex-wrap: wrap;
}

.cmp-product__price {
  font-family: var(--ps-display);
  font-weight: 700;
  color: var(--ui-primary);
}

.cmp-sidebar__block,
.cmp-sidebar__cta {
  border-radius: var(--ui-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--ui-shadow-sm);
}

.cmp-tool-highlight {
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(46, 125, 50, 0.14), rgba(255, 107, 53, 0.14));
  border: 1px solid rgba(46, 125, 50, 0.12);
  padding: clamp(20px, 3vw, 34px);
}

.cmp-tool-highlight h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.cmp-tip {
  border-left: 4px solid var(--ui-primary);
  background: #f0fdf4;
  border-radius: 0 12px 12px 0;
  padding: 14px 14px;
  color: #14532d;
  margin: 20px 0;
}

.reviews-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: var(--ps-muted);
}

.reviews-page__empty {
  margin: 0;
  padding: 0.5rem 0;
  line-height: 1.6;
  color: var(--ps-text);
}

.comparison-page__cta {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ps-text);
}

.comparison-page__cta a {
  font-weight: 600;
  color: var(--ui-primary, #2f6f4f);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.comparison-page__browse {
  margin: 0.25rem 0 1rem;
}

.comparison-page__empty {
  margin: 0;
  padding: 0.5rem 0;
  line-height: 1.6;
  color: var(--ps-text);
}

.comparison-page__tip {
  max-width: 48rem;
}

.cmp-compare-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.25rem;
}

.cmp-compare__price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ps-muted);
}

.cmp-review-header,
.cmp-compare-wrap {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ui-shadow-sm);
  padding: 18px;
}

.cmp-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.cmp-rating__stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.cmp-compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}

.cmp-compare-table th,
.cmp-compare-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.cmp-compare-table th {
  background: #f3f4f6;
  font-weight: 700;
}

@media (max-width: 760px) {
  .ps-home-hero {
    min-height: 0;
    max-height: none;
  }

  .ps-home-hero__content {
    padding: 0.75rem 0.75rem 0.9rem;
  }

  .ps-home-hero__content h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.9rem);
  }

  .ps-home-hero__content .ps-home-hero__lead {
    margin-top: 0.3rem;
  }

  .ps-home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.4rem;
  }

  .ps-home-hero__stats li {
    min-width: 0;
  }

  .ps-home-hero__quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.45rem;
  }

  .ps-home-hero__quick a.ps-home-hero__ql:nth-child(3) {
    grid-column: 1 / -1;
  }

  .ps-home-hero .ps-actions {
    margin-top: 0.4rem;
  }

  .ps-section-title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .affi-media img {
    min-height: 210px;
  }

  .ssb-progress-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ssb-choice-grid,
  .ssb-choice-grid--budget {
    grid-template-columns: 1fr;
  }

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

  .ssb-product__media img {
    min-height: 180px;
  }

  .ssb-actions .ps-btn,
  .ssb-product__footer .ps-btn {
    width: 100%;
  }

  .cmp-grid--3,
  .cmp-grid--4,
  .cmp-grid--2 {
    grid-template-columns: 1fr;
  }

  .cmp-compare-table thead {
    display: none;
  }

  .cmp-compare-table,
  .cmp-compare-table tbody,
  .cmp-compare-table tr,
  .cmp-compare-table td {
    display: block;
    width: 100%;
  }

  .cmp-compare-table tr {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .cmp-compare-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .cmp-compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ps-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
  }
}

/* Dribbble-Level Editorial Hierarchy Layer */
:root {
  --ed-space-1: 8px;
  --ed-space-2: 16px;
  --ed-space-3: 24px;
  --ed-space-4: 32px;
  --ed-space-5: 48px;
  --ed-space-6: 64px;
  --ed-text-strong: #111827;
  --ed-text-soft: #4b5563;
  --ed-surface: #ffffff;
  --ed-surface-tint: #fbfcfe;
  --ed-border-soft: rgba(17, 24, 39, 0.06);
  --ed-shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ed-shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.13);
}

html[data-theme="dark"] {
  --ed-text-strong: #f3f4f6;
  --ed-text-soft: #aeb4be;
  --ed-surface: #18221e;
  --ed-surface-tint: #1b2722;
  --ed-border-soft: rgba(231, 229, 228, 0.12);
  --ed-shadow-card: 0 14px 30px rgba(0, 0, 0, 0.35);
  --ed-shadow-hover: 0 20px 44px rgba(0, 0, 0, 0.56);
}

body.public-site {
  color: var(--ed-text-strong);
  line-height: 1.78;
}

.ps-container {
  max-width: min(1220px, 96vw);
  padding-inline: clamp(16px, 2.5vw, 30px);
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.ps-section-head,
.ui-section-head {
  margin-bottom: clamp(22px, 3vw, 40px);
}

.ps-section-title {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.024em;
  margin-bottom: 10px;
  color: var(--ed-text-strong);
}

.ps-section-intro,
.ps-page-lead,
.ui-section-intro {
  font-size: clamp(1rem, 0.96rem + 0.24vw, 1.12rem);
  line-height: 1.75;
  color: var(--ed-text-soft);
  max-width: 70ch;
}

.ps-page-head {
  max-width: 72ch;
}

.ps-prose {
  max-width: 760px;
}

.ps-prose p,
.ps-prose li {
  color: #2f3a4b;
  font-size: 1.03rem;
  line-height: 1.82;
}

.ps-prose h1 {
  font-size: clamp(2rem, 1.7rem + 1.4vw, 3rem);
  line-height: 1.08;
}

.ps-prose h2 {
  font-size: clamp(1.35rem, 1.22rem + 0.5vw, 1.8rem);
  margin-top: 2.2rem;
  margin-bottom: 0.65rem;
}

.cmp-card,
.ps-card,
.ps-guide-card,
.sidebar-card,
.ps-tool-tile,
.affi-block {
  background: linear-gradient(180deg, var(--ed-surface) 0%, var(--ed-surface-tint) 100%);
  border: 1px solid var(--ed-border-soft);
  box-shadow: var(--ed-shadow-card);
}

.cmp-card,
.ps-card,
.ps-guide-card {
  border-radius: 16px;
}

.cmp-card:hover,
.ps-card--lift:hover,
.ps-guide-card:hover,
.ps-tool-tile:hover,
.affi-block:hover {
  transform: translateY(-5px) scale(1.008);
  box-shadow: var(--ed-shadow-hover);
}

.cmp-card__media,
.ps-card-cover,
.ps-guide-card__cover {
  height: 196px;
}

.cmp-card__body {
  padding: 16px 16px 18px;
}

.cmp-card h3,
.ps-card h3,
.affi-content h3 {
  font-size: clamp(1.12rem, 1.05rem + 0.34vw, 1.42rem);
  line-height: 1.28;
  letter-spacing: -0.014em;
}

.cmp-card p,
.ps-card p,
.affi-content p {
  color: var(--ed-text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.content-layout {
  gap: clamp(18px, 3.2vw, 38px);
}

@media (min-width: 980px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }
}

.content-main {
  gap: clamp(18px, 2.5vw, 30px);
}

.content-sidebar {
  gap: 14px;
}

.sidebar-card {
  border-radius: 16px;
  padding: 16px 16px;
}

.sidebar-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.sidebar-card a {
  color: #2b3442;
}

.sidebar-card a:hover {
  color: var(--ui-primary);
}

.ps-btn {
  min-height: 48px;
  padding: 0.74rem 1.34rem;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.012em;
}

.ps-btn--primary {
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.32);
}

.ps-btn--primary:hover {
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.38);
}

.affi-block {
  border-radius: 18px;
  padding: clamp(14px, 2vw, 20px);
}

@media (min-width: 820px) {
  .affi-block {
    grid-template-columns: 320px 1fr;
    gap: 18px;
  }
}

.affi-media img {
  border-radius: 14px;
  min-height: 240px;
}

.affi-proscons div {
  border-radius: 12px;
  padding: 12px 12px;
}

.affi-proscons li {
  margin-bottom: 0.3rem;
}

@media (max-width: 760px) {
  .ps-container {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .cmp-card__media,
  .ps-card-cover,
  .ps-guide-card__cover {
    height: 176px;
  }
}

/* Home & Garden Upgrade Radar */
.hgur-shell {
  border: 1px solid var(--ed-border-soft);
  border-radius: 22px;
  background: color-mix(in srgb, var(--ps-surface) 94%, transparent);
  box-shadow: var(--ed-shadow-card);
  padding: clamp(16px, 2.6vw, 26px);
}

.hgur-progress-wrap {
  margin-bottom: 1.15rem;
}

.hgur-progress-track {
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ps-border) 70%, transparent);
  overflow: hidden;
}

.hgur-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ui-primary), var(--ui-accent));
  transition: width 0.24s ease;
}

.hgur-progress-steps {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-muted);
}

.hgur-progress-steps span.is-active {
  color: var(--ui-primary);
  font-weight: 700;
}

.hgur-step {
  display: none;
}

.hgur-step.is-active {
  display: block;
}

.hgur-area-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hgur-choice {
  text-align: left;
  border: 1px solid var(--ed-border-soft);
  background: var(--ps-surface);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hgur-choice:hover,
.hgur-choice.is-selected {
  border-color: color-mix(in srgb, var(--ui-primary) 45%, var(--ps-border));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.hgur-choice strong {
  display: block;
  font-family: var(--ps-display);
  font-size: 1.08rem;
}

.hgur-choice p {
  margin: 0.4rem 0 0;
  color: var(--ps-muted);
  font-size: 0.93rem;
}

.hgur-question-card {
  border: 1px solid var(--ed-border-soft);
  border-radius: 14px;
  background: var(--ps-surface);
  padding: 0.9rem 0.95rem;
  margin: 0 0 0.75rem;
}

.hgur-question-card legend {
  font-weight: 600;
  color: var(--ed-text-strong);
  margin: 0 0 0.58rem;
}

.hgur-answer-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hgur-answer-options label {
  border: 1px solid var(--ps-border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: color-mix(in srgb, var(--ps-surface) 90%, transparent);
  font-size: 0.9rem;
}

.hgur-answer-options input {
  margin-right: 0.3rem;
}

.hgur-questions.has-error .hgur-question-card {
  border-color: rgba(225, 29, 72, 0.35);
}

.hgur-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hgur-result-head {
  display: flex;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hgur-meters {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hgur-meter-card {
  border: 1px solid var(--ed-border-soft);
  border-radius: 14px;
  background: var(--ps-surface);
  padding: 0.75rem 0.9rem;
}

.hgur-meter-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ps-muted);
  font-size: 0.72rem;
}

.hgur-meter-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--ps-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--ui-primary);
}

.hgur-meter-card small {
  color: var(--ps-muted);
  font-size: 0.8rem;
}

.hgur-potential-track {
  margin: 0.5rem 0 0.45rem;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ps-border) 75%, transparent);
  overflow: hidden;
}

.hgur-potential-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ui-accent), #f59e0b);
  transition: width 0.28s ease;
}

.hgur-missing {
  margin-top: 1rem;
  border: 1px solid var(--ed-border-soft);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: var(--ps-surface);
}

.hgur-missing h3 {
  margin: 0 0 0.5rem;
  font-size: 1.04rem;
}

.hgur-missing ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hgur-missing li {
  margin-bottom: 0.25rem;
  color: var(--ps-muted);
}

.hgur-levels {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.hgur-level-card {
  border: 1px solid var(--ed-border-soft);
  border-radius: 14px;
  background: var(--ps-surface);
  padding: 0.85rem;
  min-width: 0;
  overflow: hidden;
}

.hgur-level-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.hgur-level-card > p {
  margin: 0.35rem 0 0.65rem;
  color: var(--ps-muted);
  font-size: 0.9rem;
}

.hgur-suggestions {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.hgur-suggest-item {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 0.65rem 0.68rem;
  background: color-mix(in srgb, var(--ps-surface) 92%, transparent);
}

.hgur-suggest-item h4 {
  margin: 0;
  font-size: 0.98rem;
}

.hgur-suggest-item p {
  margin: 0.35rem 0 0.55rem;
  color: var(--ps-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hgur-suggest-foot {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hgur-suggest-price {
  font-weight: 700;
  color: var(--ui-primary);
}

.hgur-suggest-item--store {
  display: grid;
  grid-template-columns: minmax(0, 4.5rem) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.55rem 0.6rem;
  min-width: 0;
  box-sizing: border-box;
}

.hgur-suggest-item__img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ps-surface-2, #f3f4f6);
  aspect-ratio: 1;
}

.hgur-suggest-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hgur-suggest-item__body {
  min-width: 0;
  max-width: 100%;
}

/* Dark mode refinements for hard-coded light colors */
html[data-theme="dark"] .cmp-card__badge {
  color: #dbe4ff;
  background: #2c3350;
}

html[data-theme="dark"] .cmp-card h3 a {
  color: #f3f4f6;
}

html[data-theme="dark"] .cmp-card h3 a:hover {
  color: var(--ui-primary);
}

html[data-theme="dark"] .ps-prose p,
html[data-theme="dark"] .ps-prose li {
  color: var(--ed-text-soft);
}

html[data-theme="dark"] .sidebar-card a {
  color: #d5dae3;
}

html[data-theme="dark"] .sidebar-card a:hover {
  color: var(--ui-primary);
}

html[data-theme="dark"] .cmp-tip {
  background: #153225;
  color: #b6e5c5;
  border-left-color: #4ba86c;
}

html[data-theme="dark"] .cmp-review-header,
html[data-theme="dark"] .cmp-compare-wrap {
  background: var(--ed-surface);
}

html[data-theme="dark"] .contact-page__panel {
  background: var(--ed-surface, #1a1f1c);
  border-color: var(--ed-border-soft, rgba(255, 255, 255, 0.08));
  box-shadow: none;
}

html[data-theme="dark"] .cmp-compare-table th {
  background: #26312d;
  color: #e7e5e4;
}

html[data-theme="dark"] .cmp-compare-table td {
  color: #cfd5df;
}

/* Dark-mode alignment for homepage sections */
html[data-theme="dark"] .cmp-trending {
  background: transparent;
}

html[data-theme="dark"] .cmp-trending .cmp-card {
  background: linear-gradient(180deg, var(--ed-surface) 0%, var(--ed-surface-tint) 100%);
  border-color: var(--ed-border-soft);
  box-shadow: none !important;
}

html[data-theme="dark"] .cmp-trending .cmp-card:hover {
  box-shadow: none !important;
}

html[data-theme="dark"] .cmp-category {
  background: var(--ed-surface);
  border-color: var(--ed-border-soft);
  color: var(--ed-text-strong);
  box-shadow: var(--ed-shadow-card);
}

html[data-theme="dark"] .cmp-category__label {
  color: var(--ed-text-strong);
}

html[data-theme="dark"] .cmp-card p {
  color: var(--ed-text-soft);
}

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

  .ps-reveal {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 760px) {
  .hgur-area-grid {
    grid-template-columns: 1fr;
  }

  .hgur-progress-steps {
    grid-template-columns: 1fr;
  }

  .hgur-meters {
    grid-template-columns: 1fr;
  }

  .hgur-actions .ps-btn,
  .hgur-suggest-foot .ps-btn {
    width: 100%;
  }
}

/* Upgrade Radar: product cards + result header on narrow phones */
@media (max-width: 640px) {
  .hgur-result-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hgur-result-head .ps-btn {
    width: 100%;
    justify-content: center;
  }

  .hgur-suggest-item--store {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.65rem 0.7rem;
  }

  .hgur-suggest-item__img {
    width: 100%;
    max-width: 11rem;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .hgur-suggest-item__body {
    text-align: left;
  }

  .hgur-suggest-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.15rem;
  }

  .hgur-suggest-foot .hgur-suggest-price {
    width: auto;
    align-self: flex-start;
  }

  .hgur-suggest-foot .ps-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hgur-suggest-item h4,
  .hgur-suggest-item p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

/* —— Long-form guides: editorial figures + shoppable block —— */
.guide-article__figure {
  margin: 1.75rem 0 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ed-surface, #f4f6f8);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.guide-article__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.guide-article__figure--inline {
  max-width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
}
.guide-article__caption {
  display: block;
  padding: 0.75rem 1.1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ed-text-soft, #5c6678);
  font-style: normal;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.guide-article__pullquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem 1.1rem 1.15rem;
  border-left: 4px solid var(--ui-primary, #ff6b35);
  background: rgba(255, 107, 53, 0.06);
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--ed-text-strong, #1a1f2b);
}
.guide-article__aside {
  margin: 1.75rem 0;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--ed-surface, #f0f3f6);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.guide-article__aside h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.guide-article__aside p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ed-text-soft, #4b5565);
}
.guide-catalog-section {
  margin-top: 2.25rem;
  padding: clamp(1.4rem, 2.2vw, 2rem) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.guide-catalog-section h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}
.guide-catalog-section__intro {
  max-width: 64ch;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ed-text-soft, #4b5565);
}
.guide-catalog-section__grid {
  margin-top: 0.5rem;
}
.guide-catalog-section__empty {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ed-text-soft, #4b5565);
  padding: 0.5rem 0 1rem;
}
.guide-catalog-section__empty code {
  font-size: 0.86em;
}
.guide-catalog-section__more {
  margin-top: 1.5rem;
}

/* Guide “In our catalog” links under the title (ties guides to real category slugs) */
.guide-article__browse-ribbon {
  margin: 0 0 1.15rem;
  padding: 0.75rem 1rem 0.85rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ed-surface, #e8eaed) 90%, var(--ui-primary, #ff6b35) 10%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  line-height: 1.45;
}
.guide-article__browse-ribbon-label {
  font-weight: 600;
  color: var(--ed-text-strong, #1a1f2b);
  margin-right: 0.15rem;
}
.guide-article__browse-ribbon-link,
.guide-article__browse-ribbon-anchor {
  color: var(--ui-primary, #1b5e20);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-article__browse-ribbon-link:hover,
.guide-article__browse-ribbon-anchor:hover {
  opacity: 0.88;
}
.guide-article__browse-ribbon-sep {
  color: var(--ed-text-soft, #6b7484);
  font-weight: 500;
  padding: 0 0.1rem;
}
.guide-article__browse-ribbon p {
  margin: 0;
}
