:root {
  /*
   * Builder Queue — colours taken from live https://feedbackqueue.dev/ CSS
   * (.bg-dark, .bg-pink, .text-gradient, .bg-grid-pattern, section washes).
   */
  --theme-bg: #0d0a1a;
  --theme-bg-elevated: #12101c;
  --theme-surface: #151322;
  --theme-border: rgba(255, 255, 255, 0.1);
  --theme-text: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.45);
  --theme-accent: #ff2d78;
  --theme-accent-bright: #00e5ff;
  --theme-pink-soft: #ff5c9a;
  --theme-cyan-deep: #00b8d4;
  --theme-pink-glow: rgba(255, 45, 120, 0.4);
  --theme-cyan-glow: rgba(0, 229, 255, 0.25);
  --theme-indigo-wash: #1e1b4b;
  --theme-radius: 14px;
  --theme-font: "Inter", system-ui, sans-serif;
  --theme-display: "Inter", system-ui, sans-serif;
  --theme-max: 720px;
  --theme-home-max: 68rem;
}

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

body.theme-queue {
  margin: 0;
  min-height: 100vh;
  font-family: var(--theme-font);
  isolation: isolate;
  /* Solid base + wash layers (pink corner lives on ::before so nothing clips it). */
  background-color: var(--theme-bg);
  background-image:
    radial-gradient(
      ellipse 110% 90% at 0% 0%,
      rgba(0, 229, 255, 0.1) 0%,
      rgba(13, 10, 26, 0) 58%
    ),
    linear-gradient(155deg, var(--theme-indigo-wash) 0%, #151225 38%, var(--theme-bg) 100%);
  background-repeat: no-repeat;
  color: var(--theme-text);
  line-height: 1.6;
}

/* Full-viewport layer: true top-right glow, never clipped by .theme-home-fq overflow */
body.theme-queue::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 135vw 120vh at 100% 0%,
    rgba(255, 45, 120, 0.28) 0%,
    rgba(255, 45, 120, 0.09) 48%,
    rgba(13, 10, 26, 0) 82%
  );
}

.theme-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.55rem 1rem;
  font-weight: 800;
  font-size: 0.875rem;
  background: var(--theme-accent);
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 0 0 10px 0;
  box-shadow: 0 4px 28px var(--theme-pink-glow);
}

.theme-skip-link:focus {
  left: 0;
  outline: 2px solid var(--theme-text);
  outline-offset: 2px;
}

body.theme-queue a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.theme-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.theme-main {
  flex: 1;
}

/* Header — queue: glass bar, readable nav, soft chrome */
.theme-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(10, 8, 20, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 1px 0 rgba(0, 229, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.35);
}

@supports (backdrop-filter: blur(1px)) {
  .theme-header {
    background: rgba(13, 10, 26, 0.72);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
  }
}

.theme-header__inner {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: var(--theme-home-max);
  margin: 0 auto;
  width: 100%;
  padding: 0.95rem 1.5rem;
}

.theme-brand {
  font-family: var(--theme-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.theme-brand:hover {
  color: var(--theme-pink-soft);
}

.theme-brand:focus-visible {
  outline: 2px solid var(--theme-accent-bright);
  outline-offset: 4px;
  border-radius: 6px;
}

.theme-brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-brand:hover img {
  opacity: 0.92;
}

.theme-brand.theme-brand--active {
  color: var(--theme-pink-soft);
}

.theme-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 1.35rem;
  margin-left: auto;
}

.theme-nav__primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem 0.15rem;
}

.theme-nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  padding-left: 1.35rem;
  margin-left: 0.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: -1px 0 0 rgba(0, 229, 255, 0.06);
}

.theme-nav__logout-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.theme-nav__user {
  display: inline-flex;
  align-items: center;
  max-width: 11rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.theme-nav__btn-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.05rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.theme-nav__btn-logout:hover {
  color: #ffffff;
  border-color: rgba(255, 120, 160, 0.45);
  background: rgba(255, 61, 138, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.12);
}

.theme-nav__btn-logout:focus-visible {
  outline: 2px solid var(--theme-accent-bright);
  outline-offset: 2px;
}

.theme-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: none;
  color: rgba(232, 234, 248, 0.68);
  text-decoration: none;
  border-radius: 9px;
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.theme-nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.theme-nav__primary .theme-nav__link.theme-nav__link--active:not(.theme-nav__link--ghost) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.theme-nav__link:focus-visible {
  outline: 2px solid var(--theme-accent-bright);
  outline-offset: 2px;
}

@media (min-width: 769px) {
  .theme-nav__primary .theme-nav__link:not(.theme-nav__link--ghost)::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--theme-accent-bright), var(--theme-pink-soft));
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0.95;
    transition: transform 0.22s ease;
    pointer-events: none;
  }

  .theme-nav__primary .theme-nav__link:not(.theme-nav__link--ghost):hover::after,
  .theme-nav__primary .theme-nav__link.theme-nav__link--active:not(.theme-nav__link--ghost)::after {
    transform: scaleX(1);
  }
}

.theme-nav__link--ghost {
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.theme-nav__link--ghost:hover {
  color: #ffffff;
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.08);
}

.theme-nav__link--ghost.theme-nav__link--active {
  color: #ffffff;
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.08);
}

.theme-nav .theme-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #ff3d8a 0%, var(--theme-accent) 48%, #c9165c 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 6px 24px var(--theme-pink-glow);
  text-decoration: none !important;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease,
    text-shadow 0.18s ease;
}

.theme-nav .theme-nav-cta:hover {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, #ff5c9a 0%, #00d4ff 52%, #ff2d78 100%) !important;
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 36px rgba(255, 45, 120, 0.4);
}

.theme-nav .theme-nav-cta.theme-nav__link--active {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, #e6327a 0%, #00b8e6 50%, #d41460 100%) !important;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 0 0 1px rgba(255, 45, 120, 0.35),
    0 8px 28px rgba(255, 45, 120, 0.35);
}

.theme-nav .theme-nav-cta.theme-nav__link--active:hover {
  transform: translateY(-1px);
}

/* Ghost sign-in: explicit light text (buttons/forms can reset color to black) */
.theme-nav__actions .theme-nav__btn-signin {
  color: rgba(255, 255, 255, 0.9) !important;
}

.theme-nav__actions .theme-nav__btn-signin:hover {
  color: #ffffff !important;
}

.theme-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.theme-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.theme-nav-toggle:focus-visible {
  outline: 2px solid var(--theme-accent-bright);
  outline-offset: 2px;
}

.theme-nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffffff, rgba(232, 234, 248, 0.85));
  border-radius: 1px;
  transition:
    transform 0.22s ease,
    opacity 0.2s ease;
  transform-origin: center;
}

.theme-nav-toggle[aria-expanded="true"] {
  border-color: rgba(255, 45, 120, 0.35);
  background: rgba(255, 45, 120, 0.08);
}

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

.theme-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

@media (prefers-reduced-motion: reduce) {
  .theme-nav-toggle span {
    transition: none;
  }

  .theme-nav__primary .theme-nav__link:not(.theme-nav__link--ghost)::after {
    transition: none;
  }
}

@media (max-width: 768px) {
  .theme-header__inner {
    flex-wrap: wrap;
    row-gap: 0.65rem;
  }

  .theme-brand {
    order: 1;
  }

  .theme-nav-toggle {
    order: 2;
    display: flex;
    margin-left: auto;
  }

  .theme-nav {
    order: 3;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-left: 0;
    padding: 0.4rem;
    background: rgba(14, 12, 24, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 20px 56px rgba(0, 0, 0, 0.45);
  }

  .theme-nav.is-open {
    display: flex;
  }

  .theme-nav__primary {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.45rem 0.5rem 0.55rem;
  }

  .theme-nav__primary .theme-nav__link {
    justify-content: flex-start;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9375rem;
  }

  .theme-nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.85rem 0.55rem 0.55rem;
    margin-left: 0;
    border-left: none;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .theme-nav__actions .theme-nav__link--ghost,
  .theme-nav__actions .theme-nav-cta,
  .theme-nav__actions .theme-nav__user,
  .theme-nav__actions .theme-nav__logout-form,
  .theme-nav__actions .theme-nav__btn-logout {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .theme-nav__actions .theme-nav__user {
    max-width: none;
    justify-content: center;
  }

  .theme-header {
    position: relative;
  }
}

/* Footer — base (default theme + fallback) */
.theme-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--theme-border);
  font-size: 0.875rem;
  color: var(--theme-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.theme-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.theme-footer a {
  color: var(--theme-muted);
  text-decoration: none;
  font-weight: 600;
}

.theme-footer a:hover {
  color: var(--theme-accent);
}

/* Queue — editorial footer band */
body.theme-queue .theme-footer.theme-footer--queue {
  margin-top: auto;
  padding: 0;
  border-top: none;
  background: linear-gradient(180deg, rgba(14, 11, 24, 0.92) 0%, rgba(8, 6, 16, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -1px 0 rgba(0, 229, 255, 0.06);
  display: block;
}

body.theme-queue .theme-footer.theme-footer--queue::before {
  content: "";
  display: block;
  height: 1px;
  max-width: var(--theme-home-max);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 120, 0.35) 22%,
    rgba(0, 229, 255, 0.35) 78%,
    transparent 100%
  );
  opacity: 0.85;
}

body.theme-queue .theme-footer__inner {
  max-width: var(--theme-home-max);
  margin: 0 auto;
  padding: clamp(1.75rem, 3.5vw, 2.35rem) 1.5rem clamp(2rem, 4vw, 2.65rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

body.theme-queue .theme-footer__copy {
  margin: 0;
  max-width: min(36rem, 100%);
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(232, 234, 248, 0.52);
}

body.theme-queue .theme-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.15rem;
}

body.theme-queue .theme-footer__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(232, 234, 248, 0.62);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

body.theme-queue .theme-footer__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
}

body.theme-queue .theme-footer__link:focus-visible {
  outline: 2px solid var(--theme-accent-bright);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  body.theme-queue .theme-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body.theme-queue .theme-footer__nav {
    justify-content: flex-start;
  }
}

/* Home — marketing hero (FeedbackQueue-inspired: bold display type, badges, stats) */
.theme-home-fq {
  position: relative;
  /* was overflow:hidden — that clipped the glow past the hero box and drew a hard edge */
  overflow: visible;
  max-width: var(--theme-home-max);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.25rem) 1.5rem clamp(1.5rem, 4.5vw, 2.5rem);
}

/* Pink wash is on body::before; keep a soft local bloom only (no overflow past hero needed) */
.theme-home-fq__glow {
  pointer-events: none;
  position: absolute;
  top: -15%;
  right: -5%;
  width: min(70vw, 26rem);
  height: min(70vw, 26rem);
  border-radius: 50%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 45, 120, 0.2) 0%,
    rgba(13, 10, 26, 0) 70%
  );
  filter: blur(28px);
}

.theme-home-fq__grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, black 20%, transparent 75%);
}

.theme-home-fq__inner {
  position: relative;
  z-index: 1;
}

/*
 * Queue editorial subpages — normal blog / listing layout (flat hairlines, no rounded “lanes” or glow).
 * Class: main.theme-fq-editorial (layouts/subpage_main.twig; page/show when not public home).
 */
body.theme-queue .theme-fq-editorial {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.35rem 3rem;
  background:
    linear-gradient(180deg, rgba(255, 45, 120, 0.04) 0%, transparent 28%),
    linear-gradient(165deg, rgba(18, 14, 28, 0.97) 0%, rgba(13, 10, 22, 0.99) 45%, rgba(10, 8, 18, 1) 100%);
  background-color: var(--theme-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.35);
}

/* Blog index (and any view that opts in) — same readable column as the old hero */
body.theme-queue main.theme-fq-editorial.theme-fq-editorial--narrow {
  max-width: 56rem;
}

@media (max-width: 40rem) {
  body.theme-queue .theme-fq-editorial {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    max-width: none;
    width: auto;
  }

  body.theme-queue main.theme-fq-editorial.theme-fq-editorial--narrow {
    max-width: none;
  }
}

/* Blog index — first post as full-width media + text over bottom (feature_latest_journal) */
body.theme-queue .theme-fq-editorial .blog-feature-latest-wrap {
  margin: 0 0 1.75rem;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest {
  position: relative;
  display: block;
  min-height: clamp(220px, 36vw, 380px);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.18s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest:hover {
  border-color: rgba(253, 164, 196, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest:focus-visible {
  outline: 2px solid var(--theme-pink-soft);
  outline-offset: 3px;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__media {
  position: absolute;
  inset: 0;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(22, 18, 38, 0.98) 0%, rgba(10, 8, 20, 1) 100%);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__placeholder-glow {
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 42% 38%, rgba(253, 164, 196, 0.1), transparent 55%);
  pointer-events: none;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__placeholder-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.26);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 4, 14, 0.94) 0%,
    rgba(6, 4, 14, 0.5) 42%,
    transparent 72%
  );
  pointer-events: none;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: clamp(220px, 36vw, 380px);
  padding: 1.35rem 1.5rem 1.5rem;
  max-width: 42rem;
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__meta {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(232, 234, 248, 0.68);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__title {
  margin: 0 0 0.45rem;
  font-family: var(--theme-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__excerpt {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(232, 234, 248, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

body.theme-queue .theme-fq-editorial .blog-feature-latest__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--theme-pink-soft);
}

@media (max-width: 40rem) {
  body.theme-queue .theme-fq-editorial .blog-feature-latest__content {
    padding: 1.1rem 1.15rem 1.25rem;
  }
}

body.theme-queue .theme-fq-editorial .blog-archive-head--intro-only {
  margin: 0 0 1.25rem;
  padding: 0 0 1rem;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .blog-post:not(.product-detail) {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.theme-queue .theme-fq-editorial .blog-post.product-detail {
  max-width: min(72rem, 100%);
  margin: 0;
  padding: 0;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog),
body.theme-queue .theme-fq-editorial section.theme-archive--journal,
body.theme-queue .theme-fq-editorial .section.product-catalog,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog {
  max-width: none;
  margin: 0;
  padding: 0 0 2.5rem;
  background: none;
  border: none;
  border-top: none;
  box-shadow: none;
}

/* Journal index — flat header; beats .theme-main .section.blog-archive … gradient slab */
body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-archive-head,
body.theme-queue .theme-fq-editorial section.theme-archive--journal .blog-archive-head {
  margin: 0 0 0.25rem;
  padding: 0 0 1.1rem;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border-bottom: 3px solid var(--theme-accent);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-archive-head .eyebrow,
body.theme-queue .theme-fq-editorial section.theme-archive--journal .blog-archive-head .eyebrow {
  color: var(--theme-pink-soft);
  margin-bottom: 0.5rem;
}

/* Index header — straight rule (fixes top border vs rounded parent clash) */
body.theme-queue .theme-fq-editorial .blog-archive-head {
  margin: 0 0 0.25rem;
  padding: 0 0 1.1rem;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border-bottom: 3px solid var(--theme-accent);
}

/* Beats .theme-main .section.product-catalog .blog-archive-head (cyan gradient slab) */
body.theme-queue .theme-fq-editorial .section.product-catalog .blog-archive-head,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .blog-archive-head {
  margin: 0 0 0.25rem;
  padding: 0 0 1.1rem;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .blog-archive-head .eyebrow {
  color: var(--theme-pink-soft);
  margin-bottom: 0.5rem;
}

body.theme-queue .theme-fq-editorial .section.product-catalog .blog-archive-head .eyebrow,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .blog-archive-head .eyebrow {
  color: var(--theme-accent-bright);
}

body.theme-queue .theme-fq-editorial .blog-archive-title {
  margin: 0;
  font-family: var(--theme-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

/* Journal: card rows with bordered tiles (thumb + copy) */
body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .cards.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.15rem;
  align-items: start;
  padding: 0.95rem 0 1.05rem;
  margin: 0;
  border: none;
  border-radius: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--violet.blog-card {
  border-top-color: rgba(167, 139, 250, 0.65);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--cyan.blog-card {
  border-top-color: rgba(34, 211, 238, 0.55);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--rose.blog-card {
  border-top-color: rgba(244, 114, 182, 0.58);
}

@media (min-width: 700px) {
  body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card {
    grid-template-columns: 11.5rem minmax(0, 1fr);
  }

  /* If a card has no thumb, don't squeeze copy into the 11.5rem column (grid first cell). */
  body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card:not(:has(.blog-card-thumb)) {
    grid-template-columns: 1fr;
  }
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.03);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--violet.blog-card:hover {
  border-top-color: rgba(196, 181, 253, 0.9);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--cyan.blog-card:hover {
  border-top-color: rgba(103, 232, 249, 0.85);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.card--rose.blog-card:hover {
  border-top-color: rgba(251, 182, 206, 0.88);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card .card-glow {
  display: none !important;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .card.blog-card::before {
  display: none !important;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-thumb {
  border-radius: 4px;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 6.5rem;
  color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-thumb--placeholder .blog-card-thumb-placeholder__glow {
  opacity: 0.35;
}

/* Archive intro / meta line — readable on editorial panel */
body.theme-queue .theme-fq-editorial .blog-archive-head > p:not(.eyebrow) {
  max-width: none;
  color: rgba(232, 234, 248, 0.85);
}

body.theme-queue .theme-fq-editorial .blog-archive-head .blog-archive-intro {
  max-width: none;
  color: rgba(232, 234, 248, 0.88);
}

body.theme-queue .theme-fq-editorial .blog-archive-head .blog-archive-intro p {
  color: inherit;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-body .card-tag {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-body > p:not(.product-card-price) {
  color: rgba(232, 234, 248, 0.78);
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-body h3 a {
  color: #ffffff;
}

body.theme-queue .theme-fq-editorial .section.blog-archive:not(.product-catalog) .blog-card-body h3 a:hover {
  color: var(--theme-pink-soft);
}

/* Product grid — simple rectangular tiles */
body.theme-queue .theme-fq-editorial .section.product-catalog .card.blog-card,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .card.blog-card {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .section.product-catalog .card.blog-card:hover,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .card.blog-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  transform: none;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .section.product-catalog .blog-card-actions,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .blog-card-actions {
  margin-top: 0.75rem;
}

body.theme-queue .theme-fq-editorial .section.product-catalog .blog-card-actions .btn,
body.theme-queue .theme-fq-editorial section.theme-archive--catalog .blog-card-actions .btn {
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
}

body.theme-queue .theme-fq-editorial .blog-pager {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .blog-pager--numbered {
  gap: 0.55rem 0.65rem;
}

body.theme-queue .theme-fq-editorial .blog-pager__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  min-width: min-content;
}

body.theme-queue .theme-fq-editorial .blog-pager__pages li {
  margin: 0;
}

body.theme-queue .theme-fq-editorial .blog-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(232, 234, 248, 0.9);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.theme-queue .theme-fq-editorial .blog-pager__num:hover {
  border-color: rgba(253, 164, 196, 0.55);
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-fq-editorial .blog-pager__num--current {
  border-color: rgba(255, 45, 120, 0.55);
  background: rgba(255, 45, 120, 0.12);
  color: #ffffff;
  cursor: default;
}

body.theme-queue .theme-fq-editorial .blog-pager__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 2.2rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

body.theme-queue .theme-fq-editorial .blog-pager__step.blog-pager__step--disabled {
  opacity: 0.35;
  pointer-events: none;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
}

body.theme-queue .theme-fq-editorial .blog-pager-status {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
}

body.theme-queue .theme-fq-editorial .blog-pager:not(.blog-pager--numbered) .blog-pager-status {
  flex: initial;
}

body.theme-queue .theme-fq-editorial .blog-pager .btn {
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Journal index — main column (~readable width) + sticky aside */
body.theme-queue .theme-fq-editorial .theme-archive-layout--journal {
  display: grid;
  gap: 1.75rem 2.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  body.theme-queue .theme-fq-editorial .theme-archive-layout--journal {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 14.5rem);
  }
}

body.theme-queue .theme-fq-editorial .theme-archive-layout__main {
  min-width: 0;
}

body.theme-queue .theme-fq-editorial .theme-archive-layout__aside {
  min-width: 0;
}

@media (max-width: 959px) {
  body.theme-queue .theme-fq-editorial .theme-archive-layout__aside {
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar {
  position: sticky;
  top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__title {
  margin: 0 0 0.65rem;
  font-family: var(--theme-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__body {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 234, 248, 0.78);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__tax {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__tax:first-of-type {
  margin-top: 1.15rem;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__subhd {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(232, 234, 248, 0.88);
  text-decoration: none;
  line-height: 1.35;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list a:hover {
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list--tags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list--tags li {
  margin: 0;
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list--tags a {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(232, 234, 248, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__list--tags a:hover {
  color: #ffffff;
  border-color: rgba(253, 164, 196, 0.45);
  background: rgba(255, 45, 120, 0.08);
}

body.theme-queue .theme-fq-editorial .theme-archive-sidebar__cta {
  margin-top: 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8125rem;
}

body.theme-queue .theme-fq-editorial .blog-empty {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1rem;
  text-align: left;
  border-radius: 0;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--theme-muted);
}

body.theme-queue .theme-fq-editorial .theme-blog-taxonomy {
  padding: 0;
  max-width: 42rem;
  margin: 0;
}

body.theme-queue .theme-fq-editorial .theme-blog-taxonomy-header {
  margin-bottom: 1.5rem;
  padding: 0 0 1rem;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid var(--theme-accent);
  background: none;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .theme-blog-taxonomy-header h1 {
  margin: 0;
  font-family: var(--theme-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

body.theme-queue .theme-fq-editorial .theme-blog-taxonomy-list {
  padding-left: 0;
  padding-right: 0;
}

body.theme-queue .theme-fq-editorial .theme-cms-page {
  padding: 0;
  max-width: 42rem;
}

body.theme-queue .theme-fq-editorial .theme-cms-page .theme-cms-page-hero {
  border-radius: 0;
  border: none;
  border-bottom: 3px solid var(--theme-accent);
  background: none;
  box-shadow: none;
  padding: 0 0 1.15rem;
  margin-bottom: 1.5rem;
}

body.theme-queue .theme-fq-editorial .theme-cms-page .theme-cms-page-title {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

body.theme-queue .theme-fq-editorial .theme-cms-page .theme-cms-page-featured-frame {
  border-radius: 6px;
  box-shadow: none;
}

body.theme-queue .theme-fq-editorial .theme-cms-page .theme-cms-page-body.theme-cms-body::before {
  display: none;
}

body.theme-queue .theme-fq-editorial .theme-fq-generic-entry {
  padding: 0;
  max-width: 42rem;
}

body.theme-queue .theme-fq-editorial .theme-fq-generic-entry .eyebrow {
  color: rgba(253, 164, 196, 0.88);
}

body.theme-queue .theme-fq-editorial .theme-fq-generic-entry h1 {
  font-family: var(--theme-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

/* Stacked marketing sections inside the page builder (same look as single theme home.twig) */
.theme-cms-sections .theme-home-fq--section + .theme-home-fq--section {
  padding-top: 0;
}

/*
 * CMS article defaults (max-width ~46rem, generic h1) fight the marketing hero when sections
 * render inside page/show. Widen and restore display weight + line lengths for .theme-home-fq.
 */
.theme-main article.theme-cms-page:has(.theme-home-fq),
.theme-main article.theme-cms-page.theme-cms-page--public-home {
  max-width: min(var(--theme-home-max), 100%);
}

.theme-main article.theme-cms-page h1.theme-home-fq__title {
  margin: 0 0 1.5rem;
  font-family: var(--theme-display);
  font-weight: 900;
  font-size: inherit;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.theme-main article.theme-cms-page .theme-home-fq__title-line {
  font-weight: 900;
  font-size: clamp(2.35rem, 6.2vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.theme-main article.theme-cms-page .theme-home-fq__highlight {
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

/* Hero: copy + flat CMS mock (FeedbackQueue-style split hero) */
.theme-home-fq__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .theme-home-fq__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

.theme-home-fq__copy {
  min-width: 0;
}

.theme-home-fq__visual {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 26rem;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .theme-home-fq__visual {
    justify-content: flex-end;
    margin-inline: 0 0;
    max-width: none;
  }
}

/* Flat “web CMS” illustration — no images, theme tokens only */
.theme-cms-mock {
  position: relative;
  width: 100%;
  max-width: 22rem;
  border-radius: calc(var(--theme-radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(30, 27, 75, 0.65) 0%, rgba(18, 16, 28, 0.96) 55%, rgba(13, 10, 26, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 45, 120, 0.12);
  overflow: hidden;
  animation: theme-cms-mock-float 7s ease-in-out infinite;
}

.theme-cms-mock__chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  padding: 0.65rem 0.85rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.theme-cms-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.theme-cms-mock__dot--amber {
  background: #febc2e;
}

.theme-cms-mock__dot--green {
  background: #28c840;
}

.theme-cms-mock__url {
  flex: 1 1 8rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  margin-left: 0.15rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-cms-mock__url-lock {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.55rem;
  border: 1.5px solid rgba(0, 229, 255, 0.55);
  border-radius: 2px 2px 1px 1px;
  border-top: none;
  margin-top: 2px;
  position: relative;
}

.theme-cms-mock__url-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 5px;
  height: 4px;
  transform: translateX(-50%);
  border: 1.5px solid rgba(0, 229, 255, 0.45);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.theme-cms-mock__body {
  display: flex;
  min-height: 13.5rem;
}

.theme-cms-mock__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 2.35rem;
  flex-shrink: 0;
  padding: 0.65rem 0.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.18);
}

.theme-cms-mock__tool {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-cms-mock__tool--active {
  background: linear-gradient(145deg, rgba(255, 45, 120, 0.35), rgba(0, 229, 255, 0.15));
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 0 14px rgba(255, 45, 120, 0.2);
}

.theme-cms-mock__sidebar-gap {
  flex: 1;
  min-height: 0.5rem;
}

.theme-cms-mock__add {
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 229, 255, 0.85);
  border-radius: 6px;
  border: 1px dashed rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.06);
  animation: theme-cms-add-pulse 3.2s ease-in-out infinite;
}

.theme-cms-mock__canvas {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.theme-cms-mock__block {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.theme-cms-mock__block--hero {
  min-height: 3.4rem;
  border-color: rgba(255, 45, 120, 0.22);
  background: linear-gradient(110deg, rgba(255, 45, 120, 0.12) 0%, rgba(30, 27, 75, 0.5) 45%, rgba(0, 229, 255, 0.08) 100%);
}

.theme-cms-mock__hero-glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 70% 40%, rgba(255, 45, 120, 0.35) 0%, transparent 55%);
  opacity: 0.65;
  animation: theme-cms-hero-glow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.theme-cms-mock__hero-bar {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0.65rem 0.55rem;
  height: 6px;
  max-width: 72%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 92, 154, 0.9));
  animation: theme-cms-bar-shimmer 2.8s ease-in-out infinite;
}

.theme-cms-mock__block--rich {
  padding: 0.55rem 0.65rem 0.65rem;
}

.theme-cms-mock__line {
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.35rem;
}

.theme-cms-mock__line:last-child {
  margin-bottom: 0;
}

.theme-cms-mock__line--mid {
  width: 88%;
}

.theme-cms-mock__line--short {
  width: 0;
  max-width: 62%;
  animation: theme-cms-type 2.4s ease-in-out infinite;
}

.theme-cms-mock__block--cards {
  display: flex;
  gap: 0.35rem;
  padding: 0.45rem;
  background: rgba(0, 0, 0, 0.12);
}

.theme-cms-mock__card {
  flex: 1;
  min-height: 2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-cms-mock__card--accent {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.12), rgba(255, 45, 120, 0.08));
  border-color: rgba(0, 229, 255, 0.22);
  animation: theme-cms-card-pop 4s ease-in-out infinite;
}

.theme-cms-mock__toast {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(13, 10, 26, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: theme-cms-toast-nudge 5s ease-in-out infinite;
}

.theme-cms-mock__toast-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--theme-accent-bright);
  box-shadow: 0 0 8px var(--theme-cyan-glow);
  animation: theme-cms-toast-blink 1.8s ease-in-out infinite;
}

@keyframes theme-cms-mock-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.35deg);
  }
}

@keyframes theme-cms-hero-glow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(6%, -4%) scale(1.08);
    opacity: 0.75;
  }
}

@keyframes theme-cms-bar-shimmer {
  0%,
  100% {
    opacity: 0.85;
    transform: scaleX(1);
    transform-origin: left center;
  }

  50% {
    opacity: 1;
    transform: scaleX(1.04);
    transform-origin: left center;
  }
}

@keyframes theme-cms-type {
  0%,
  15% {
    width: 0;
  }

  40%,
  70% {
    width: 62%;
  }

  100% {
    width: 0;
  }
}

@keyframes theme-cms-card-pop {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 229, 255, 0);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 229, 255, 0.12);
  }
}

@keyframes theme-cms-add-pulse {
  0%,
  100% {
    border-color: rgba(0, 229, 255, 0.28);
    color: rgba(0, 229, 255, 0.75);
  }

  50% {
    border-color: rgba(0, 229, 255, 0.5);
    color: var(--theme-accent-bright);
  }
}

@keyframes theme-cms-toast-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-3px);
  }
}

@keyframes theme-cms-toast-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.theme-home-fq__kicker {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--theme-muted);
}

.theme-home-fq__title {
  margin: 0 0 1.5rem;
  font-family: var(--theme-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.theme-home-fq__title-line {
  display: block;
  font-size: clamp(2.35rem, 7.5vw, 4.25rem);
  color: #ffffff;
}

.theme-home-fq__title-line--emph {
  margin-top: 0.1em;
}

/* Matches FeedbackQueue `.text-gradient`: pink → soft pink → pink */
.theme-home-fq__highlight {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #ff2d78, #ff5c9a, #ff2d78);
  background-size: 120% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 28px var(--theme-pink-glow));
}

.theme-home-fq__title-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.theme-home-fq__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-family: var(--theme-display);
  font-size: clamp(0.7rem, 2vw, 0.8125rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(180deg, #ffffff 0%, #e4e4e7 100%);
  border-radius: 6px;
  border: 1px solid rgba(255, 45, 120, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 10px 32px rgba(0, 0, 0, 0.5);
}

.theme-home-fq__lead {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--theme-muted);
}

.theme-home-fq__brand {
  color: var(--theme-text);
  font-weight: 700;
}

.theme-home-fq__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.theme-home-fq__chips li {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.theme-home-fq__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.theme-home-fq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-home-fq__btn--primary {
  color: #0a0a0a;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  background: var(--theme-accent);
  border: 3px solid var(--theme-accent);
  box-shadow: 0 14px 40px var(--theme-pink-glow);
}

.theme-home-fq__btn--primary:hover {
  transform: translateY(-2px);
  color: var(--theme-accent);
  background: transparent;
  box-shadow: 0 20px 48px var(--theme-pink-glow);
}

.theme-home-fq__btn--ghost {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  border: 3px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.theme-home-fq__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.theme-home-fq__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 44rem;
  margin: 0 0 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--theme-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, rgba(30, 27, 75, 0.55) 0%, rgba(13, 10, 26, 0.92) 60%);
  box-shadow:
    0 1px 0 rgba(255, 45, 120, 0.12) inset,
    0 0 0 1px rgba(0, 229, 255, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.5);
}

.theme-home-fq__stat {
  padding: 0.35rem 0;
  border-right: 1px solid var(--theme-border);
}

.theme-home-fq__stat:last-child {
  border-right: none;
}

@media (max-width: 560px) {
  .theme-home-fq__stats {
    grid-template-columns: 1fr;
  }

  .theme-home-fq__stat {
    border-right: none;
    border-bottom: 1px solid var(--theme-border);
    padding-bottom: 0.85rem;
  }

  .theme-home-fq__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.theme-home-fq__stat-k {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-muted);
}

.theme-home-fq__stat-v {
  margin: 0;
  font-family: var(--theme-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--theme-text);
}

.theme-home-fq__footnote {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.42);
  max-width: 36rem;
}

.theme-home-fq__footnote strong {
  color: rgba(248, 250, 252, 0.62);
  font-weight: 600;
}

.theme-home-fq__footnote code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  color: var(--theme-pink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .theme-home-fq__btn--primary:hover,
  .theme-nav .theme-nav-cta:hover {
    transform: none;
  }

  .theme-home-fq__highlight {
    filter: none;
  }

  .theme-cms-mock,
  .theme-cms-mock__hero-glow,
  .theme-cms-mock__hero-bar,
  .theme-cms-mock__line--short,
  .theme-cms-mock__card--accent,
  .theme-cms-mock__add,
  .theme-cms-mock__toast,
  .theme-cms-mock__toast-dot {
    animation: none;
  }

  .theme-cms-mock__line--short {
    width: 55%;
  }
}

/* Staff-only draft preview */
.cms-preview-banner {
  margin: 0;
  padding: 0.65rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--theme-text);
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.18), rgba(139, 124, 246, 0.2));
  border-bottom: 1px solid var(--theme-border);
}

.cms-preview-banner strong {
  font-weight: 800;
}

/* Page & content (shared with core utility classes) */
.theme-content-entry {
  max-width: var(--theme-max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
}

.theme-cms-page .eyebrow,
.theme-content-entry .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--theme-muted);
}

.theme-cms-page h1,
.theme-content-entry h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.theme-cms-page-featured {
  margin: 0 0 1rem;
}

.theme-cms-page-featured img,
.theme-cms-page-featured-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Public CMS page — hero shell + prose (article only; theme-main; see docs/themes.md) */
.theme-main article.theme-cms-page {
  max-width: min(46rem, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.5rem clamp(2.75rem, 7vw, 5rem);
}

.theme-main article.theme-cms-page .theme-cms-page-hero {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.85rem) clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: clamp(1.25rem, 4vw, 2rem);
  border-radius: calc(var(--theme-radius) + 8px);
  border: 1px solid rgba(196, 181, 253, 0.38);
  background:
    radial-gradient(ellipse 92% 70% at 50% -45%, rgba(167, 139, 250, 0.48), transparent 56%),
    radial-gradient(ellipse 75% 55% at 0% 108%, rgba(99, 102, 241, 0.2), transparent 52%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.1) 0%, rgba(18, 20, 34, 0.97) 55%, rgba(12, 14, 24, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 0 80px -20px rgba(139, 124, 246, 0.32);
}

.theme-main article.theme-cms-page .theme-cms-page-hero .eyebrow {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: #e9d5ff;
}

.theme-main article.theme-cms-page .theme-cms-page-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  background: linear-gradient(120deg, #faf5ff 0%, #e9d5ff 35%, #c4b5fd 70%, #a78bfa 100%);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 24px rgba(139, 124, 246, 0.35));
}

.theme-main article.theme-cms-page .theme-cms-page-hero .theme-cms-page-tags {
  margin: 1rem 0 0;
}

.theme-main article.theme-cms-page .theme-cms-page-featured--hero {
  margin: 0 0 clamp(1.5rem, 4vw, 2.75rem);
}

.theme-main article.theme-cms-page .theme-cms-page-featured-frame {
  border-radius: calc(var(--theme-radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.35);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.35),
    0 0 64px -18px rgba(139, 124, 246, 0.28);
}

.theme-main article.theme-cms-page .theme-cms-page-featured-frame img {
  border-radius: 0;
  vertical-align: middle;
}

.theme-main article.theme-cms-page .theme-cms-page-sections-block {
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.theme-main article.theme-cms-page .theme-cms-page-body.theme-cms-body {
  position: relative;
  padding-top: 0.2rem;
}

.theme-main article.theme-cms-page .theme-cms-page-body.theme-cms-body::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 1.65rem;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.45), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .theme-main article.theme-cms-page .theme-cms-page-title {
    filter: none;
  }
}

.theme-cms-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: -0.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.theme-cms-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 40%, transparent);
}

.theme-cms-body {
  font-size: 1.0625rem;
  color: var(--theme-muted);
}

.theme-cms-body p {
  margin: 0 0 1rem;
}

.theme-cms-body.cms-prose h2,
.theme-cms-body.cms-prose h3,
.theme-cms-body.cms-prose h4 {
  color: var(--theme-text);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 1.35rem 0 0.65rem;
}

.theme-cms-body.cms-prose h2 {
  font-size: 1.35rem;
}

.theme-cms-body.cms-prose h3 {
  font-size: 1.12rem;
}

.theme-cms-body.cms-prose a {
  color: var(--theme-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.theme-cms-body.cms-prose ul,
.theme-cms-body.cms-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.theme-cms-body.cms-prose blockquote {
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--theme-border);
}

.theme-cms-body.cms-prose pre {
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: var(--theme-radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--theme-border);
  overflow-x: auto;
  font-size: 0.875rem;
}

.theme-cms-body.cms-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--theme-radius);
}

.theme-cms-body.cms-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.95em;
}

.theme-cms-body.cms-prose th,
.theme-cms-body.cms-prose td {
  border: 1px solid var(--theme-border);
  padding: 0.45rem 0.6rem;
}

.theme-cms-body.cms-prose p.cms-intro {
  font-size: 1.08em;
  color: var(--theme-text);
}

.theme-cms-body.cms-prose div.cms-callout {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--theme-radius);
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.08);
}

.theme-cms-body.cms-prose span.cms-caption {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.35rem;
  color: var(--theme-muted);
}

.theme-cms-body.cms-prose iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: var(--theme-radius);
  margin: 0 0 1.25rem;
}

.theme-content-meta {
  margin: -0.5rem 0 1.5rem;
  font-size: 0.875rem;
  color: var(--theme-muted);
}

.theme-content-featured {
  margin: 0 0 2rem;
  border-radius: var(--theme-radius);
  overflow: hidden;
  border: 1px solid var(--theme-border);
}

.theme-content-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-field-block {
  margin-bottom: 2rem;
}

.theme-field-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-muted);
}

.theme-field-value {
  font-size: 1.0625rem;
  color: var(--theme-muted);
}

.theme-field-value--richtext {
  color: var(--theme-text);
}

.content-entry-inline-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--theme-radius);
}

.theme-muted {
  color: var(--theme-muted);
}

.theme-entry-taxonomies {
  margin: 1rem 0 0;
}

.theme-entry-taxonomy-row {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
}

.theme-entry-taxonomy-name {
  font-weight: 700;
  margin-right: 0.5rem;
}

.theme-entry-taxonomy-link {
  color: var(--theme-accent, #8ab4ff);
  text-decoration: none;
}

.theme-entry-taxonomy-link:hover {
  text-decoration: underline;
}

.theme-entry-taxonomy-sep {
  color: var(--theme-muted);
  margin: 0 0.25rem;
}

.theme-taxonomy-archive {
  max-width: 42rem;
}

.theme-taxonomy-archive-lead {
  color: var(--theme-muted);
  margin: 0 0 1.5rem;
}

.theme-taxonomy-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.theme-taxonomy-archive-list a {
  font-weight: 700;
  color: var(--theme-text);
  text-decoration: none;
}

.theme-taxonomy-archive-list a:hover {
  text-decoration: underline;
}

.theme-taxonomy-archive-date {
  display: block;
  font-size: 0.8125rem;
  margin-top: 0.15rem;
}

.theme-pager {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.theme-pager a {
  color: var(--theme-accent, #8ab4ff);
  text-decoration: none;
}

.theme-pager a:hover {
  text-decoration: underline;
}

/* Marketing-style eyebrow (core public/styles.css is not loaded on theme storefront pages). */
@keyframes theme-eyebrow-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.88);
  }
}

.theme-main .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #e9d5ff;
}

.theme-main .section.product-catalog .eyebrow,
.theme-main section.theme-archive--catalog .eyebrow,
.theme-main .product-detail .eyebrow {
  color: #a5f3fc;
}

.theme-main .eyebrow-pulse {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow:
    0 0 12px rgba(167, 139, 250, 0.95),
    0 0 26px rgba(139, 124, 246, 0.55);
  animation: theme-eyebrow-pulse 2.2s ease-in-out infinite;
}

.theme-main .product-detail .eyebrow-pulse {
  background: #22d3ee;
  box-shadow:
    0 0 12px rgba(34, 211, 238, 0.9),
    0 0 28px rgba(6, 182, 212, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .theme-main .eyebrow-pulse {
    animation: none;
  }
}

/* Blog & product archives + singles — theme only (layouts/base does not load public/styles.css). */

.theme-main #main-content {
  width: 100%;
}

.theme-main main#main-content.theme-fq-editorial[data-fq-subpage] {
  margin-top: 50px;
  margin-bottom: 50px;
}

.theme-main .section.blog-archive,
.theme-main .section.product-catalog {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.5rem clamp(3rem, 7vw, 5rem);
}

/* Journal vs catalog: different atmosphere (violet editorial vs cyan commerce).
   Prefer .theme-archive--journal / .theme-archive--catalog (set in _index_grid.twig) so styles apply even if section class names change. */
.theme-main .section.blog-archive:not(.product-catalog),
.theme-main section.theme-archive--journal {
  background:
    radial-gradient(ellipse 85% 42% at 50% -18%, rgba(139, 124, 246, 0.28), transparent 58%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(124, 58, 237, 0.12), transparent 45%);
  border-top: 3px solid rgba(167, 139, 250, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-main .section.product-catalog,
.theme-main section.theme-archive--catalog {
  background:
    radial-gradient(ellipse 92% 48% at 78% -14%, rgba(34, 211, 238, 0.26), transparent 56%),
    radial-gradient(ellipse 65% 45% at 100% 75%, rgba(6, 182, 212, 0.14), transparent 48%);
  border-top: 3px solid rgba(34, 211, 238, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-main .section.blog-archive:not(.product-catalog) .blog-archive-head,
.theme-main section.theme-archive--journal .blog-archive-head {
  border-color: rgba(196, 181, 253, 0.42);
  background:
    linear-gradient(155deg, rgba(167, 139, 250, 0.32) 0%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(16, 20, 36, 0.97) 100%);
}

.theme-main .section.blog-archive:not(.product-catalog) .blog-archive-head .eyebrow,
.theme-main section.theme-archive--journal .blog-archive-head .eyebrow {
  color: #e9d5ff;
}

.theme-main .section.product-catalog .blog-archive-head,
.theme-main section.theme-archive--catalog .blog-archive-head {
  border-color: rgba(103, 232, 249, 0.38);
  background:
    linear-gradient(155deg, rgba(34, 211, 238, 0.28) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 16, 28, 0.97) 100%);
}

.theme-main .section.product-catalog .blog-archive-head .eyebrow,
.theme-main section.theme-archive--catalog .blog-archive-head .eyebrow {
  color: #a5f3fc;
}

.theme-main .blog-archive-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: calc(var(--theme-radius) + 2px);
  border: 1px solid var(--theme-border);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--theme-accent) 24%, transparent) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 24, 39, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.28);
}

.theme-main .blog-post:not(.product-detail) .blog-post-hero-shell .blog-archive-head,
.theme-main .product-detail .blog-archive-head,
.theme-main .product-detail-intro__head {
  margin-bottom: 1.25rem;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.theme-main .blog-archive-head .eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--theme-accent);
}

.theme-main .blog-archive-head .eyebrow a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.theme-main .blog-archive-head .eyebrow a:hover {
  text-decoration: underline;
}

.theme-main .blog-archive-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--theme-text);
}

.theme-main .blog-post .blog-archive-title {
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
}

.theme-main .blog-archive-head > p:not(.eyebrow) {
  margin: 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--theme-muted);
}

.theme-main .blog-empty {
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--theme-muted);
}

.theme-main .cards.blog-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
}

@media (min-width: 640px) {
  .theme-main .cards.blog-cards {
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
}

.theme-main .product-catalog .cards.blog-cards,
.theme-main section.theme-archive--catalog .cards.blog-cards {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18.5rem), 1fr));
}

.theme-main .card.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--theme-radius) + 4px);
  border: 1px solid var(--theme-border);
  background: linear-gradient(168deg, rgba(139, 124, 246, 0.08) 0%, var(--theme-surface) 48%, var(--theme-surface) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.theme-main .card.blog-card:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 42%, var(--theme-border));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.theme-main .section.blog-archive:not(.product-catalog) .card.blog-card,
.theme-main section.theme-archive--journal .card.blog-card {
  background: linear-gradient(168deg, rgba(139, 124, 246, 0.2) 0%, var(--theme-surface) 46%, var(--theme-surface) 100%);
  border-color: rgba(167, 139, 250, 0.35);
}

.theme-main .section.blog-archive:not(.product-catalog) .card.blog-card:hover,
.theme-main section.theme-archive--journal .card.blog-card:hover {
  border-color: rgba(196, 181, 253, 0.55);
  box-shadow:
    0 12px 40px rgba(139, 124, 246, 0.18),
    0 14px 44px rgba(0, 0, 0, 0.28);
}

.theme-main .section.product-catalog .card.blog-card,
.theme-main section.theme-archive--catalog .card.blog-card {
  background: linear-gradient(168deg, rgba(34, 211, 238, 0.18) 0%, var(--theme-surface) 48%, var(--theme-surface) 100%);
  border-color: rgba(34, 211, 238, 0.32);
}

.theme-main .section.product-catalog .card.blog-card:hover,
.theme-main section.theme-archive--catalog .card.blog-card:hover {
  border-color: rgba(103, 232, 249, 0.55);
  box-shadow:
    0 12px 40px rgba(34, 211, 238, 0.16),
    0 14px 44px rgba(0, 0, 0, 0.28);
}

.theme-main .section.product-catalog .blog-card-cta,
.theme-main section.theme-archive--catalog .blog-card-cta {
  border-color: rgba(103, 232, 249, 0.5);
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
}

.theme-main .section.product-catalog .blog-card-cta:hover,
.theme-main section.theme-archive--catalog .blog-card-cta:hover {
  background: rgba(34, 211, 238, 0.2);
  color: #ecfeff;
}

.theme-main .card-glow {
  display: none;
}

/* Archive grid templates set card--violet/cyan/rose; mirror marketing top accents (card-glow is off). */
.theme-main .card.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: calc(var(--theme-radius) + 4px) calc(var(--theme-radius) + 4px) 0 0;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.theme-main .card.card--violet.blog-card::before {
  background: linear-gradient(90deg, #8b5cf6, #c4b5fd);
}

.theme-main .card.card--cyan.blog-card::before {
  background: linear-gradient(90deg, #06b6d4, #5eead4);
}

.theme-main .card.card--rose.blog-card::before {
  background: linear-gradient(90deg, #f472b6, #fbbf24);
}

.theme-main .card.card--violet.blog-card .blog-card-body .card-tag {
  color: #ddd6fe;
}

.theme-main .card.card--cyan.blog-card .blog-card-body .card-tag {
  color: #a5f3fc;
}

.theme-main .card.card--rose.blog-card .blog-card-body .card-tag {
  color: #fecdd3;
}

.theme-main .product-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: #0c0e18;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.35);
}

.theme-main .blog-card-thumb {
  display: block;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 10;
}

.theme-main .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.theme-main .card.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.theme-main .blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(244, 246, 255, 0.25);
}

.theme-main .blog-card-thumb-placeholder__glow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--theme-accent) 35%, transparent), transparent 70%);
  opacity: 0.5;
}

.theme-main .blog-card-thumb-placeholder__icon {
  position: relative;
  width: 3rem;
  height: 3rem;
}

.theme-main .blog-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.theme-main .blog-card-body .card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--theme-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--theme-border);
}

.theme-main .blog-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.theme-main .blog-card-body h3 a {
  color: var(--theme-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.theme-main .blog-card-body h3 a:hover {
  color: var(--theme-accent);
}

.theme-main .product-card-price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-accent);
  letter-spacing: -0.02em;
}

.theme-main .blog-card-body > p:not(.product-card-price) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--theme-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.theme-main .blog-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.65rem;
}

.theme-main .blog-card-actions .blog-card-cta {
  margin-top: 0;
}

.theme-main .blog-card-cta {
  align-self: flex-start;
  margin-top: 0.65rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 45%, var(--theme-border));
  color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-accent) 12%, transparent);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-main .blog-card-cta:hover {
  background: color-mix(in srgb, var(--theme-accent) 22%, transparent);
  border-color: var(--theme-accent);
  color: var(--theme-text);
}

.theme-main .blog-pager {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--theme-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.theme-main .blog-pager-status {
  font-size: 0.875rem;
  color: var(--theme-muted);
  font-variant-numeric: tabular-nums;
}

.theme-main .blog-pager .btn {
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--theme-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--theme-text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.theme-main .blog-pager .btn:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 50%, var(--theme-border));
  color: var(--theme-accent);
}

.theme-main .blog-archive-view-all {
  margin-top: 2rem;
  text-align: center;
}

.theme-main .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.theme-main .pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--theme-border);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-main .pill--violet {
  color: #ddd6fe;
  background: rgba(139, 124, 246, 0.15);
  border-color: rgba(196, 181, 253, 0.35);
}

.theme-main .pill--cyan {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(165, 243, 252, 0.35);
}

.theme-main .pill:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 55%, var(--theme-border));
}

.theme-main .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-main .btn-primary {
  color: #0c0e18;
  background: linear-gradient(135deg, #fde68a 0%, var(--theme-accent) 55%, #6366f1 100%);
  background-size: 200% auto;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--theme-accent) 45%, transparent);
}

.theme-main .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--theme-accent) 55%, transparent);
}

.theme-main .btn-ghost {
  color: var(--theme-text);
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.05);
}

.theme-main .btn-ghost:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 45%, var(--theme-border));
  color: var(--theme-accent);
}

.theme-main .btn-lg {
  padding: 0.7rem 1.45rem;
  font-size: 0.9375rem;
}

/* Article singles */
.theme-main .blog-post {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem clamp(3rem, 7vw, 5rem);
}

.theme-main .blog-post.product-detail {
  max-width: min(72rem, 100%);
}

.theme-main .blog-post .section.blog-post-hero,
.theme-main .product-detail .section.product-detail-hero {
  padding: 0;
}

.theme-main .blog-post:not(.product-detail) .section.blog-post-hero {
  position: relative;
  padding: 0;
}

.theme-main .blog-post:not(.product-detail) .blog-post-hero-shell {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.85rem) clamp(1.65rem, 3.5vw, 2.35rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--theme-radius) + 8px);
  border: 1px solid rgba(196, 181, 253, 0.38);
  background:
    radial-gradient(ellipse 92% 70% at 50% -45%, rgba(167, 139, 250, 0.5), transparent 56%),
    radial-gradient(ellipse 75% 55% at 0% 108%, rgba(99, 102, 241, 0.22), transparent 52%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.11) 0%, rgba(18, 20, 34, 0.97) 55%, rgba(12, 14, 24, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 0 80px -20px rgba(139, 124, 246, 0.35);
}

.theme-main .blog-post:not(.product-detail) .blog-archive-title {
  background: linear-gradient(120deg, #faf5ff 0%, #e9d5ff 35%, #c4b5fd 70%, #a78bfa 100%);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 24px rgba(139, 124, 246, 0.35));
}

.theme-main .blog-post:not(.product-detail) .blog-post-body.theme-cms-body {
  position: relative;
  padding-top: 0.15rem;
}

.theme-main .blog-post:not(.product-detail) .blog-post-body.theme-cms-body::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 1.65rem;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.55), transparent);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.25);
}

.theme-main .blog-post.product-detail .product-detail-hero-shell {
  padding: clamp(1.5rem, 3.5vw, 2.35rem) clamp(1.35rem, 3vw, 2rem) clamp(1.65rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
  border-radius: calc(var(--theme-radius) + 10px);
  border: 1px solid rgba(103, 232, 249, 0.32);
  background:
    radial-gradient(ellipse 100% 75% at 78% -48%, rgba(34, 211, 238, 0.48), transparent 58%),
    radial-gradient(ellipse 60% 50% at -5% 102%, rgba(6, 182, 212, 0.22), transparent 52%),
    linear-gradient(172deg, rgba(255, 255, 255, 0.09) 0%, rgba(8, 22, 32, 0.96) 50%, rgba(10, 14, 22, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 100px -24px rgba(34, 211, 238, 0.28);
}

.theme-main .blog-post.product-detail .product-detail-stage {
  position: relative;
}

.theme-main .blog-post.product-detail .product-detail-hero-shell .product-detail-stage::before {
  display: none;
}

.theme-main .product-detail .blog-archive-title {
  background: linear-gradient(118deg, #f0fdfa 0%, #a5f3fc 38%, #22d3ee 72%, #06b6d4 100%);
  background-size: 150% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 28px rgba(34, 211, 238, 0.3));
}

.theme-main .product-detail-hero-shell .product-detail-visual {
  border-color: rgba(103, 232, 249, 0.38);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    0 0 60px -20px rgba(34, 211, 238, 0.22);
}

.theme-main .blog-post:not(.product-detail) .blog-post-hero-shell .blog-featured {
  border-color: rgba(196, 181, 253, 0.42);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(139, 124, 246, 0.18);
}

.theme-main .product-detail-hero-shell .product-detail-actions {
  margin-bottom: 0;
}

.theme-main .blog-post.product-detail .product-detail-intro,
.theme-main .blog-post.product-detail .product-detail-visual {
  position: relative;
  z-index: 1;
}

.theme-main .blog-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--theme-muted);
  margin: 0;
}

.theme-main .blog-byline time {
  font-variant-numeric: tabular-nums;
}

.theme-main .blog-taxonomies {
  margin-bottom: 1.25rem;
}

.theme-main .blog-featured,
.theme-main .content-entry-featured {
  margin: 0 0 1.75rem;
  border-radius: calc(var(--theme-radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--theme-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.theme-main .blog-featured img,
.theme-main .content-entry-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-main .blog-dek {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--theme-muted);
  margin: 0 0 1.75rem;
  font-weight: 500;
}

.theme-main .blog-post-body.theme-cms-body,
.theme-main .product-detail-prose.theme-cms-body {
  margin-top: 0.5rem;
}

/* Product body: Overview / Stack (split at second h3; see main.js) */
.theme-main .product-detail-body-tabs {
  margin-top: 0.5rem;
}

.theme-main .product-detail-body-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--theme-border);
}

.theme-main .product-detail-body-tabs__tab {
  font: inherit;
  cursor: pointer;
  margin: 0;
  padding: 0.45rem 0.95rem;
  border-radius: calc(var(--theme-radius) - 2px);
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.2);
  color: var(--theme-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.theme-main .product-detail-body-tabs__tab:hover {
  color: var(--theme-text);
  background: rgba(255, 255, 255, 0.06);
}

.theme-main .product-detail-body-tabs__tab.is-active {
  color: var(--theme-text);
  border-color: color-mix(in srgb, var(--theme-accent) 45%, var(--theme-border));
  background: color-mix(in srgb, var(--theme-accent) 12%, rgba(0, 0, 0, 0.25));
}

.theme-main .product-detail-body-tabs__panel[hidden] {
  display: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-body-tabs__bar {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-body-tabs__tab {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 234, 248, 0.65);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-body-tabs__tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-body-tabs__tab.is-active {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.12);
}

/* Product detail */
.theme-main .product-detail-stage {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .theme-main .product-detail-stage {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.theme-main .product-detail-commerce {
  margin-top: 1.15rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--theme-border);
}

.theme-main .product-detail-price-wrap {
  margin-bottom: 1.1rem;
}

.theme-main .product-detail-price-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-muted);
  margin-bottom: 0.4rem;
}

.theme-main .product-price--hero {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  color: var(--theme-accent);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.theme-main .product-detail-commerce .product-detail-actions {
  margin-bottom: 0;
}

.theme-main .product-detail-byline {
  margin-top: 0.5rem;
}

.theme-main .product-detail-intro__tax {
  margin-top: 1rem;
}

.theme-main .product-detail-visual {
  position: relative;
  border-radius: calc(var(--theme-radius) + 6px);
  border: 1px solid var(--theme-border);
  background: linear-gradient(160deg, rgba(139, 124, 246, 0.12) 0%, var(--theme-surface) 50%);
  min-height: 220px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.theme-main .product-detail-visual--empty {
  min-height: 260px;
}

.theme-main .product-detail-visual__aurora {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 30% 20%, color-mix(in srgb, var(--theme-accent) 35%, transparent), transparent 55%);
  pointer-events: none;
}

.theme-main .product-detail-visual__grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.theme-main .product-detail-visual__frame {
  position: relative;
  margin: 0;
}

.theme-main .product-detail-visual__img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-main .product-detail-visual__placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 280px;
  padding: 2rem;
  color: rgba(244, 246, 255, 0.35);
}

.theme-main .product-detail-visual__icon {
  width: 4rem;
  height: 4rem;
}

.theme-main .product-detail-visual__ph-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--theme-muted);
}

.theme-main .product-detail-dek {
  max-width: 48rem;
}

.theme-main .product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.theme-main .product-extra-field {
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
  background: rgba(255, 255, 255, 0.02);
}

.theme-main .product-detail-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--theme-border);
}

/* Product + blog singles inside editorial main — flat article chrome, Queue colours */
body.theme-queue .theme-main main.theme-fq-editorial .blog-post.product-detail .product-detail-hero-shell {
  margin: 0 0 1.5rem;
  padding: 0 0 1.35rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  box-shadow: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail .blog-archive-title {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-hero-shell .product-detail-visual {
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-price-wrap {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.15rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-price-label {
  color: rgba(253, 164, 196, 0.85);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-price--hero {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .btn-primary.product-detail-btn-buy {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 6px;
  border: 2px solid var(--theme-accent);
  color: #0a0a0a;
  background: var(--theme-accent);
  box-shadow: none;
  text-decoration: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .btn-primary.product-detail-btn-buy:hover {
  color: var(--theme-accent);
  background: transparent;
  transform: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .btn-ghost {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .product-detail-btn-back--quiet {
  opacity: 0.9;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-hero-shell {
  margin: 0 0 1.75rem;
  padding: 0 0 1.25rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  box-shadow: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-archive-title {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-hero-shell .blog-archive-head .eyebrow {
  color: rgba(253, 164, 196, 0.9);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-hero-shell .blog-featured {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-featured.blog-featured--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 28vw, 280px);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-featured-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-featured-placeholder__icon {
  width: 4rem;
  height: 4rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-featured-placeholder__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-body.theme-cms-body::before {
  display: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-byline {
  color: rgba(255, 255, 255, 0.55);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-archive-head > p:not(.eyebrow) {
  max-width: none;
}

/* Lead / excerpt — warm, readable on dark panel (not flat grey) */
body.theme-queue .theme-main main.theme-fq-editorial .blog-dek {
  color: rgba(255, 236, 244, 0.9);
  font-size: 1.125rem;
  line-height: 1.68;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-dek {
  color: rgba(236, 252, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.68;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 40rem;
  border-left: 3px solid rgba(0, 229, 255, 0.35);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

/* Long-form prose — warmer, higher-contrast body copy than base --theme-muted */
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose {
  color: rgba(232, 234, 248, 0.91);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose li,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose li {
  color: rgba(232, 234, 248, 0.88);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose strong,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose b,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose strong,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose b {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h2,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h3,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h4,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h2,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h3,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h4 {
  color: #ffffff;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose a,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose a {
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose a:hover,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose a:hover {
  color: var(--theme-accent-bright);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose blockquote,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose blockquote {
  color: rgba(244, 238, 252, 0.86);
  border-left-color: rgba(253, 164, 196, 0.45);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose th,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose td,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose th,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose td {
  color: rgba(232, 234, 248, 0.9);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose p.cms-intro,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose p.cms-intro {
  color: rgba(255, 248, 252, 0.94);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose span.cms-caption,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose span.cms-caption {
  color: rgba(255, 255, 255, 0.5);
}

/* Streamdown / Tailwind-export HTML in long-form body (utilities inactive without Tailwind) */
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h2,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h2 {
  margin: 1.85rem 0 0.55rem;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #ffffff;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h2:first-child,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h2:first-child {
  margin-top: 0;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h3,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h3 {
  margin: 1.6rem 0 0.5rem;
  padding-bottom: 0.35rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h3:first-child,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h3:first-child {
  margin-top: 0;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose h3 + p,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose h3 + p {
  margin-top: 0.5rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose ul,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0.4rem 0 1.1rem;
  padding-left: 1.3rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose ul ul,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose ul ul {
  margin-top: 0.35rem;
  margin-bottom: 0.6rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose ol,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose ol {
  list-style-position: outside;
  margin: 0.4rem 0 1.1rem;
  padding-left: 1.3rem;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose li,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose li {
  display: list-item;
  margin: 0;
  padding: 0.32rem 0;
  line-height: 1.58;
  color: rgba(232, 234, 248, 0.9);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose li > p,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose li > p {
  margin: 0;
  display: inline;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose span.font-semibold,
body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose [data-streamdown="strong"],
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose span.font-semibold,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose [data-streamdown="strong"] {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose code,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose code {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.86em;
  font-weight: 500;
  padding: 0.12em 0.42em;
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.08);
  color: rgba(165, 243, 252, 0.95);
  word-break: break-word;
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose .md-inline-path-filename-like,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose .md-inline-path-filename-like {
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.38em;
  color: rgba(232, 234, 248, 0.92);
}

body.theme-queue .theme-main main.theme-fq-editorial .product-detail-prose.theme-cms-body.cms-prose .md-inline-path-prefix,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post-body.theme-cms-body.cms-prose .md-inline-path-prefix {
  opacity: 0.65;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-actions {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-actions .btn-primary.blog-post-btn-index,
body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-actions .btn-ghost.blog-post-btn-contact {
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: none;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-actions .btn-primary.blog-post-btn-index {
  border-width: 2px;
}

body.theme-queue .theme-main main.theme-fq-editorial .blog-post:not(.product-detail) .blog-post-actions .btn-primary.blog-post-btn-index:hover {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.theme-queue .theme-main main.theme-fq-editorial .product-detail-commerce .btn-primary.product-detail-btn-buy:hover {
    transform: none;
  }

  .theme-main .card.blog-card:hover {
    transform: none;
  }

  .theme-main .card.blog-card:hover .blog-card-thumb img {
    transform: none;
  }

  .theme-main .btn-primary:hover {
    transform: none;
  }
}

/* Taxonomy term archives (blog category / tag) */
.theme-main .theme-blog-taxonomy {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.theme-main .theme-blog-taxonomy .eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--theme-accent);
}

.theme-main .theme-blog-taxonomy .eyebrow a {
  color: inherit;
  text-decoration: none;
}

.theme-main .theme-blog-taxonomy .eyebrow a:hover {
  text-decoration: underline;
}

.theme-main .theme-blog-taxonomy-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--theme-text);
}

.theme-blog-taxonomy-header {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid var(--theme-border);
}

.theme-blog-taxonomy-lead {
  margin: 0.5rem 0 0;
  color: var(--theme-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.theme-blog-taxonomy-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 44rem;
  display: grid;
  gap: 1rem;
}

.theme-blog-taxonomy-list li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--theme-border);
}

.theme-blog-taxonomy-list a {
  font-weight: 700;
  color: var(--theme-text);
  text-decoration: none;
}

.theme-blog-taxonomy-list a:hover {
  color: var(--theme-accent);
}

.theme-taxonomy-row-date {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
}

/* —— Showcase: reviews —— */
.theme-review-index-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.theme-review-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.theme-review-card {
  position: relative;
  padding: 1.25rem 1.35rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
  background: linear-gradient(165deg, rgba(139, 124, 246, 0.08), var(--theme-surface));
}

.theme-review-score {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--theme-accent);
}

.theme-review-score span {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
}

.theme-review-card h2 {
  margin: 0 0 0.5rem;
  padding-right: 3rem;
  font-size: 1.1rem;
}

.theme-review-card h2 a {
  color: var(--theme-text);
  text-decoration: none;
}

.theme-review-readmore {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--theme-accent);
  text-decoration: none;
}

.theme-review-single {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
}

.theme-review-single-score {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
}

.theme-review-summary {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--theme-muted);
}

.theme-review-pc-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  margin: 2rem 0;
}

.theme-review-pc {
  padding: 1.1rem 1.2rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
}

.theme-review-pc--pros {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.06);
}

.theme-review-pc--cons {
  border-color: rgba(251, 146, 60, 0.35);
  background: rgba(251, 146, 60, 0.06);
}

.theme-review-verdict {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--theme-radius);
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
}

.theme-review-affiliate {
  margin-top: 2rem;
  font-size: 0.9375rem;
}

.theme-review-affiliate a {
  color: var(--theme-accent);
}

/* —— Showcase: team / agency —— */
.theme-team-index-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.theme-team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.theme-team-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
  background: var(--theme-surface);
}

.theme-team-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.theme-team-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.theme-team-card h2 a {
  color: var(--theme-text);
  text-decoration: none;
}

.theme-team-card-role {
  margin: 0;
  font-size: 0.875rem;
  color: var(--theme-muted);
}

.theme-team-single {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
}

.theme-team-single-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.theme-team-single-photo {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--theme-border);
}

.theme-team-single-role {
  font-size: 1.05rem;
  color: var(--theme-muted);
  margin: 0.35rem 0 0.75rem;
}

.theme-team-bio {
  margin-top: 1rem;
}

/* Agency homepage sections (HTML in pages) */
.theme-agency-hero {
  margin-bottom: 2.5rem;
}

.theme-agency-hero h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.theme-agency-lead {
  font-size: 1.125rem;
  color: var(--theme-muted);
  max-width: 36rem;
}

.theme-agency-cta {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--theme-accent), #6366f1);
  color: #fff;
  text-decoration: none;
}

.theme-agency-section {
  margin: 2.5rem 0;
}

.theme-agency-section h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.theme-agency-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.theme-agency-grid article {
  padding: 1rem 1.1rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
  background: rgba(255, 255, 255, 0.02);
}

.theme-agency-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.theme-agency-section--muted {
  padding: 1.5rem;
  border-radius: var(--theme-radius);
  background: rgba(139, 124, 246, 0.06);
  border: 1px solid var(--theme-border);
}

.theme-content-index {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
}

.theme-content-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.theme-content-index-card {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--theme-border);
}

@media (max-width: 520px) {
  .theme-content-index-card {
    grid-template-columns: 1fr;
  }
}

.theme-content-index-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--theme-border);
}

.theme-content-index-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.theme-content-index-title a {
  color: var(--theme-text);
  text-decoration: none;
}

.theme-content-index-excerpt {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--theme-muted);
}

.theme-content-index-date {
  font-size: 0.8125rem;
  color: var(--theme-muted);
}

/* —— Strux section builder (public pages) —— */
.theme-cms-sections,
.cms-page-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strux-section {
  width: 100%;
}

.strux-section-inner {
  max-width: min(72rem, 100%);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.strux-section-inner--compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.strux-section-inner--comfortable {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.strux-section-inner--spacious {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

/* Queue — builder sections: match header/footer column; calmer vertical rhythm than generic 72rem / tall clamps */
body.theme-queue .strux-section-inner {
  max-width: min(var(--theme-home-max), 100%);
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

body.theme-queue .strux-section-inner--comfortable {
  padding-top: clamp(1.5rem, 4vw, 2.35rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.35rem);
}

body.theme-queue .strux-section-inner--compact {
  padding-top: clamp(1rem, 2.8vw, 1.5rem);
  padding-bottom: clamp(1rem, 2.8vw, 1.5rem);
}

body.theme-queue .strux-section-inner--spacious {
  padding-top: clamp(2.1rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.1rem, 5vw, 3.25rem);
}

body.theme-queue .theme-cms-sections .strux-section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-cms-sections .strux-section-title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.theme-queue .theme-cms-sections .strux-section-intro {
  color: rgba(232, 234, 248, 0.66);
  line-height: 1.6;
}

.strux-bg--muted {
  background: rgba(255, 255, 255, 0.02);
}

.strux-bg--contrast {
  background: rgba(139, 124, 246, 0.08);
}

.strux-section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.strux-section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--theme-muted);
  margin: 0 0 0.5rem;
}

.strux-section-intro {
  margin: 0 0 1.5rem;
  color: var(--theme-muted);
}

.strux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.strux-btn--primary {
  background: linear-gradient(135deg, var(--theme-accent), #6366f1);
  color: #fff;
}

.strux-btn--ghost {
  border-color: var(--theme-border);
  color: var(--theme-text);
  background: transparent;
}

.strux-btn--contrast {
  background: #fff;
  color: #0c0e18;
}

.theme-strux-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .theme-strux-hero-inner--split {
    grid-template-columns: 1fr 1fr;
  }
}

.theme-strux-hero-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.theme-strux-hero-sub {
  font-size: 1.1rem;
  color: var(--theme-muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.theme-strux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.theme-strux-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
}

.theme-strux-hero-media--dark .theme-strux-hero-img {
  opacity: 0.92;
  filter: saturate(0.95);
}

.theme-strux-faq-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 1.25rem;
}

.theme-strux-faq-item {
  border: 1px solid var(--theme-border);
  border-radius: var(--theme-radius);
  padding: 0.65rem 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.theme-strux-faq-q {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.theme-strux-faq-q::-webkit-details-marker {
  display: none;
}

.theme-strux-faq-a {
  margin-top: 0.65rem;
  color: var(--theme-muted);
  font-size: 0.9375rem;
}

.strux-features__grid,
.strux-pricing__grid,
.strux-quotes__grid,
.strux-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

/*
 * Features grid — SaaS-style block: centered headline, soft radial glow, bordered cards,
 * pill badges, faint watermark icons (matches marketing reference).
 */
body.theme-queue .theme-main .strux-features.strux-bg--default {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(139, 92, 246, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(0, 229, 255, 0.05), transparent 50%);
  border: none;
}

body.theme-queue .theme-main .strux-features.strux-bg--muted {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(139, 92, 246, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.theme-queue .theme-main .strux-features.strux-bg--contrast {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255, 45, 120, 0.12), transparent 55%),
    rgba(255, 45, 120, 0.04);
  border-top: 1px solid rgba(255, 45, 120, 0.12);
}

body.theme-queue .theme-main .strux-features .strux-section-inner--comfortable {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

body.theme-queue .theme-main .strux-features .strux-features__lead {
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
  max-width: 48rem;
  text-align: center;
  border-bottom: none;
}

body.theme-queue .theme-main .strux-features .strux-features__lead .strux-section-eyebrow {
  margin: 0 auto 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(253, 164, 196, 0.88);
}

body.theme-queue .theme-main .strux-features .strux-features__lead .strux-section-title {
  margin: 0 auto 0.75rem;
  font-family: var(--theme-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #ffffff;
}

body.theme-queue .theme-main .strux-features .strux-features__lead .strux-section-intro {
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: #a1a1aa;
}

body.theme-queue .theme-main .strux-features .strux-features__lead .strux-section-intro p:first-child {
  margin-top: 0;
}

body.theme-queue .theme-main .strux-features .strux-features__lead .strux-section-intro p:last-child {
  margin-bottom: 0;
}

body.theme-queue .theme-main .strux-features .strux-features__grid {
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  body.theme-queue .theme-main .strux-features .strux-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.theme-queue .theme-main .strux-features .strux-features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.theme-queue .theme-main .strux-features .strux-features__item::before {
  display: none;
}

/* Large faint watermark — color per card */
body.theme-queue .theme-main .strux-features .strux-features__item::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: 9rem;
  height: 9rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body.theme-queue .theme-main .strux-features .strux-features__item[data-strux-feature="0"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a78bfa'%3E%3Cpath d='M13 2L3 14h8l-1 8 10-12h-8l1-8z'/%3E%3C/svg%3E");
}

body.theme-queue .theme-main .strux-features .strux-features__item[data-strux-feature="1"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2360a5fa'%3E%3Cpath d='M4 4h7v7H4V4zm9 0h7v7h-7V4zM4 13h7v7H4v-7zm9 0h7v7h-7v-7z'/%3E%3C/svg%3E");
}

body.theme-queue .theme-main .strux-features .strux-features__item[data-strux-feature="2"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334d399'%3E%3Cpath d='M18 16v-3h-3v-2h3V8l4 4-4 4zM5 8v8h7v2H5c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h7v2H5zm9-2h6v2h-6V6zm0 12h6v2h-6v-2zm0-6h6v2h-6v-2z'/%3E%3C/svg%3E");
}

body.theme-queue .theme-main .strux-features .strux-features__item:nth-child(n + 4)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fbbf24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
  opacity: 0.07;
}

body.theme-queue .theme-main .strux-features .strux-features__item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

body.theme-queue .theme-main .strux-features .strux-features__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

body.theme-queue .theme-main .strux-features .strux-features__badge--free {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-queue .theme-main .strux-features .strux-features__badge--soon {
  background: rgba(79, 70, 229, 0.45);
  border: 1px solid rgba(129, 140, 248, 0.35);
}

body.theme-queue .theme-main .strux-features .strux-features__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

body.theme-queue .theme-main .strux-features .strux-features__item--badged .strux-features__body {
  padding-right: 5.5rem;
}

body.theme-queue .theme-main .strux-features .strux-features__icon {
  margin: 0 0 0.85rem;
}

body.theme-queue .theme-main .strux-features .strux-features__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-queue .theme-main .strux-features .strux-features__item-title {
  margin: 0 0 0.5rem;
  font-family: var(--theme-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
}

body.theme-queue .theme-main .strux-features .strux-features__item-body {
  margin: 0;
  font-size: 0.96875rem;
  line-height: 1.6;
  color: #a1a1aa;
}

.strux-pricing__card {
  padding: 1.25rem;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
  background: rgba(255, 255, 255, 0.02);
}

.strux-pricing__card--highlight {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 1px rgba(139, 124, 246, 0.35);
}

.strux-compare__wrap {
  overflow-x: auto;
}

.strux-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.strux-compare__table th,
.strux-compare__table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--theme-border);
  text-align: left;
}

.strux-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.strux-cta--muted .strux-cta__inner {
  opacity: 0.95;
}

.strux-split__layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 720px) {
  .strux-split__layout--left {
    grid-template-columns: 1fr 1fr;
  }

  .strux-split__layout--right {
    grid-template-columns: 1fr 1fr;
  }

  .strux-split__layout--right .strux-split__media {
    order: 2;
  }

  .strux-split__layout--right .strux-split__copy {
    order: 1;
  }
}

.strux-split__img {
  width: 100%;
  height: auto;
  border-radius: var(--theme-radius);
  border: 1px solid var(--theme-border);
}

/* Shared utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*
 * Builder Queue — journal / catalog “lane” slabs only when NOT using flat editorial main.
 * (main.theme-fq-editorial gets hairline rules above — avoids 3px top border past rounded wrappers.)
 */
body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.blog-archive:not(.product-catalog),
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--journal {
  background:
    radial-gradient(ellipse 92% 44% at 50% -20%, rgba(255, 45, 120, 0.24), transparent 58%),
    radial-gradient(ellipse 48% 36% at 102% 102%, rgba(0, 229, 255, 0.06), transparent 52%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.05) 0%, rgba(18, 8, 24, 0.92) 42%, var(--theme-bg) 100%);
  border-top: 3px solid rgba(255, 45, 120, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 45, 120, 0.07);
}

body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.blog-archive:not(.product-catalog) .blog-archive-head,
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--journal .blog-archive-head {
  border-color: rgba(255, 45, 120, 0.22);
  background:
    linear-gradient(155deg, rgba(255, 45, 120, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(13, 10, 26, 0.98) 100%);
}

body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.blog-archive:not(.product-catalog) .blog-archive-head .eyebrow,
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--journal .blog-archive-head .eyebrow {
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.product-catalog,
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--catalog {
  background:
    radial-gradient(ellipse 88% 44% at 78% -14%, rgba(0, 229, 255, 0.14), transparent 52%),
    linear-gradient(155deg, rgba(30, 27, 75, 0.85) 0%, var(--theme-bg) 58%);
  border-top: 3px solid rgba(0, 229, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 45, 120, 0.04);
}

body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.product-catalog .blog-archive-head,
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--catalog .blog-archive-head {
  border-color: rgba(0, 229, 255, 0.22);
  background:
    linear-gradient(155deg, rgba(0, 229, 255, 0.1) 0%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(13, 10, 26, 0.98) 100%);
}

body.theme-queue .theme-main main:not(.theme-fq-editorial) .section.product-catalog .blog-archive-head .eyebrow,
body.theme-queue .theme-main main:not(.theme-fq-editorial) section.theme-archive--catalog .blog-archive-head .eyebrow {
  color: var(--theme-accent-bright);
}

/*
 * CMS featured products — `section.theme-archive--catalog` + `.section.product-catalog` apply the /products “lane”
 * to ANY matching section in .theme-main. Reset the embed aggressively, then use the same editorial head as Features.
 */
body.theme-queue .theme-main .theme-fq-products-shell section.theme-fq-products-embed.theme-archive--catalog,
body.theme-queue .theme-main .theme-fq-products-shell section.theme-fq-products-embed.section.product-catalog {
  background: none !important;
  background-image: none !important;
  border: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Full-bleed featured products — depth + pink/cyan wash (break out of .theme-home-fq max-width). */
body.theme-queue .theme-main .theme-fq-products-shell.theme-home-fq--section-products {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: clamp(2rem, 5vw, 3.35rem) clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 90% 60% at 12% -5%, rgba(255, 45, 120, 0.16), transparent 58%),
    radial-gradient(ellipse 75% 55% at 95% 102%, rgba(0, 229, 255, 0.11), transparent 52%),
    linear-gradient(180deg, rgba(20, 16, 36, 0.98) 0%, #100d1a 42%, #0b0912 100%);
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: visible;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-home-fq__inner {
  position: relative;
  max-width: var(--theme-home-max);
  margin-left: auto;
  margin-right: auto;
}

/* Kill cyan archive head slab from section.theme-archive--catalog .blog-archive-head */
body.theme-queue .theme-main .theme-fq-products-shell section.theme-fq-products-embed .theme-fq-products-head.blog-archive-head {
  margin: 0 0 clamp(1.5rem, 3.8vw, 2.1rem);
  padding: 0 0 clamp(1.25rem, 3vw, 1.65rem);
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.32rem 0.65rem;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(253, 164, 196, 0.95);
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 92, 154, 0.28);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 45, 120, 0.08);
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__title {
  margin: 0 0 0.65rem;
  font-family: var(--theme-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  letter-spacing: -0.038em;
  line-height: 1.08;
  background: linear-gradient(120deg, #ffffff 0%, #fce7f3 42%, #a5f3fc 95%);
  background-size: 115% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 28px rgba(0, 0, 0, 0.35));
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products-head .blog-archive-intro,
body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products-head > p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: rgba(232, 234, 248, 0.62);
  font-weight: 500;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products-head .blog-archive-intro p:first-child {
  margin-top: 0;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products-head .blog-archive-intro p:last-child {
  margin-bottom: 0;
}

/* Card grid — glass tiles, calmer default; lift + glow on hover */
body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid.cards.blog-cards {
  display: grid;
  gap: clamp(1.25rem, 3.2vw, 1.65rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
}

@media (min-width: 640px) {
  body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid.cards.blog-cards {
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card {
  border-radius: calc(var(--theme-radius) + 4px);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(16, 13, 26, 0.88) 38%,
    rgba(10, 8, 18, 0.95) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.35) !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

@supports (backdrop-filter: blur(1px)) {
  body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card {
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
  }
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card:hover {
  border-color: rgba(255, 92, 154, 0.38) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 229, 255, 0.12),
    0 16px 48px rgba(255, 45, 120, 0.12),
    0 20px 56px rgba(0, 0, 0, 0.38) !important;
  transform: translateY(-4px);
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card::before {
  background: linear-gradient(90deg, #ff2d78, #ff5c9a, #22d3ee);
  opacity: 1;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card .blog-card-body .card-tag {
  color: rgba(253, 164, 196, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card h3 a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card h3 a:hover {
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .product-card-price {
  font-family: var(--theme-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--theme-pink-soft);
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .product-card-badge {
  background: linear-gradient(135deg, #ff2d78, #e91e6b);
  color: #0a0a0a;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px var(--theme-pink-glow);
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .blog-card-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .blog-card-cta:hover {
  border-color: var(--theme-accent) !important;
  color: #ffffff !important;
  background: rgba(255, 45, 120, 0.14) !important;
}

body.theme-queue .theme-main .theme-fq-products-shell .blog-archive-view-all {
  margin-top: clamp(2rem, 4.5vw, 2.65rem);
  padding-top: clamp(1.35rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

body.theme-queue .theme-main .theme-fq-products-shell .blog-archive-view-all .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.22s ease,
    background-color 0.2s ease;
}

body.theme-queue .theme-main .theme-fq-products-shell .blog-archive-view-all .btn:hover {
  border-color: rgba(0, 229, 255, 0.45);
  color: #ffffff;
  background: rgba(0, 229, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.15),
    0 10px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

body.theme-queue .theme-main .theme-fq-products-shell .blog-empty {
  padding: 2.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.42);
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  body.theme-queue .theme-main .theme-fq-products-shell .theme-fq-products__grid .card.blog-card:hover,
  body.theme-queue .theme-main .theme-fq-products-shell .blog-archive-view-all .btn:hover {
    transform: none;
  }
}

/* Storefront buttons + pills: use FeedbackQueue brand gradient instead of leftover violet */
body.theme-queue .theme-main .btn-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #ff2d78, #e91e6b);
  background-size: 100% auto;
  box-shadow: 0 8px 28px var(--theme-pink-glow);
}

body.theme-queue .theme-main .btn-primary:hover {
  box-shadow: 0 12px 40px var(--theme-pink-glow);
}

body.theme-queue .theme-main .pill--violet {
  color: #fecdd3;
  background: rgba(255, 45, 120, 0.14);
  border-color: rgba(255, 92, 154, 0.35);
}

