/* Shared styles for non-SPA pages: pricing, why, privacy, 404, and the
   build-generated programmatic pages (variant, audience hub, use-case, blog).
   Class names mirror Letterhead Lab so the build templates line up. */

.page {
  padding-bottom: 80px;
}

.page-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 max(20px, 4vw);
}

.page-hero {
  padding: 64px 0 28px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.page-hero .lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
}

/* ============ Tier cards ============ */
.tier-section {
  margin: 56px 0 18px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.tier-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tier-card.is-featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

/* Tinted icon tile at the top of each tier card. */
.tier-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--paper-tint);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tier-icon svg { display: block; }
.tier-icon.featured-icon {
  background: var(--brand-tint);
  color: var(--brand-ink);
}

.tier-flag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.tier-card h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.tier-price {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 12px;
}
.tier-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.tier-sub {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.tier-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.45;
}
.tier-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.tier-best {
  margin: auto 0 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

.tier-card .primary,
.tier-card a.primary {
  margin-top: auto;
  text-decoration: none;
}

/* ============ CTA section ============ */
.page-cta {
  margin-top: 72px;
  padding: 36px 0;
  background: var(--paper-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px;
}
.page-cta p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  max-width: 720px;
}

.link-arrow {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
}
.link-arrow:hover {
  border-bottom-color: var(--brand);
}

/* ============ FAQ ============ */
.page-faq {
  margin-top: 72px;
}
.page-faq h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 0 0 28px;
}
.page-faq dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px 32px;
}
.page-faq dt {
  font-weight: 600;
  color: var(--ink);
}
.page-faq dd {
  margin: 0;
  color: var(--ink-soft);
}

/* ============ Long-form prose ============ */
.prose {
  max-width: 680px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.prose h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}
.prose ul {
  padding-left: 20px;
}
.prose li {
  margin-bottom: 6px;
}

/* ============ Side-by-side comparison ============ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}
.compare-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.compare-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.compare-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.compare-card.bad {
  border-color: #fecaca;
  background: #fef2f2;
}
.compare-card.good {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

@media (max-width: 760px) {
  .tier-cards {
    grid-template-columns: 1fr;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .page-faq dl {
    grid-template-columns: 1fr;
  }
}

/* ============ Hero CTAs (404 / vertical pages) ============ */
.hero-ctas {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-ctas .primary,
.hero-ctas .secondary {
  width: auto;
  padding: 0 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ============ Blog index ============ */
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.post-card a {
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.05s ease;
}
.post-card a:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.post-card-cover { margin: 0; }
.post-card-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--line);
}
.post-card h2 {
  margin: 18px 24px 8px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.post-card p {
  margin: 0 24px 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.post-meta {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card .post-meta { display: block; margin: 0 24px 20px; }

/* ============ Blog post page ============ */
.post {
  max-width: 1004px;
  margin: 0 auto;
  padding-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 224px;
  column-gap: 60px;
  align-items: start;
}
.post > :not(.post-aside) {
  grid-column: 1;
  min-width: 0;
}
.post-aside {
  grid-column: 2;
  grid-row: 1 / span 50;
  align-self: stretch;
}
.post--solo {
  display: block;
  max-width: 720px;
}
.post-header {
  margin-bottom: 32px;
}
.post-header h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.post-header .post-meta {
  display: block;
  margin-bottom: 12px;
}
.post-header .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.post-cover {
  margin: 0 0 28px;
}
.post-cover img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: block;
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.post-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.7rem;
  margin: 40px 0 14px;
  letter-spacing: -0.005em;
  scroll-margin-top: 84px;
}
.post-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 10px;
  scroll-margin-top: 84px;
}
.post-body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.post-body ul,
.post-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--ink-soft);
}
.post-body li {
  margin-bottom: 8px;
}
.post-body code {
  background: var(--paper-tint);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}
.post-body blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--brand);
  background: var(--paper-tint);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--ink-soft);
}
.post-body strong {
  color: var(--ink);
  font-weight: 600;
}
.post-cta {
  margin-top: 48px;
  padding: 24px;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.post-cta h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.post-cta p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.post-cta .primary {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 0 24px;
  text-decoration: none;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

/* ============ Vertical / variant landing pages ============ */
.vertical-hero {
  text-align: center;
  padding: 64px 0 32px;
}
.vertical-hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
}
.vertical-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
}
.vertical-feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.vertical-feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.vertical-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .vertical-features { grid-template-columns: 1fr; }
}

/* ICP hub — breadcrumbs + jobs-to-be-done list */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.breadcrumbs span[aria-hidden] {
  margin: 0 6px;
  opacity: 0.5;
}
.icp-jobs {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.icp-jobs li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.icp-jobs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand, #2e7d5b);
}
.icp-jobs li strong {
  color: var(--ink);
}

/* ============ Related reading (blog post) ============ */
.post-related {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.post-related h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.post-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-related li {
  margin-bottom: 8px;
}
.post-related a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.post-related a:hover {
  border-bottom-color: var(--brand);
}

/* ============ Reading-progress bar (injected by blog.js) ============ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand, #2e7d5b);
  z-index: 60;
  transition: width 0.1s linear;
}

/* ============ Table of contents — sticky right-hand rail ============ */
.post-toc {
  position: sticky;
  top: 84px;
  margin: 0;
}
.post-toc-label {
  margin: 0 0 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}
.post-toc li { margin: 0; }
.post-toc a {
  display: block;
  border-left: 2px solid var(--line);
  padding: 5px 0 5px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.4;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.post-toc-sub a { padding-left: 26px; }
.post-toc a:hover { color: var(--ink); }
.post-toc a.is-active {
  color: var(--brand-ink, #1f5a40);
  border-left-color: var(--brand);
  font-weight: 600;
}

@media (max-width: 960px) {
  .post {
    display: block;
    max-width: 720px;
    padding-top: 40px;
  }
  .post-aside {
    margin: 0 0 30px;
  }
  .post-toc {
    position: static;
    padding: 16px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
  }
  .post-toc ol { gap: 4px; }
  .post-toc a {
    border-left: 0;
    padding: 4px 0;
  }
  .post-toc-sub a { padding-left: 16px; }
  .post-toc a.is-active { border-left: 0; }
}

/* ============ Markdown shortcodes ============ */
.post-callout {
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand, #2e7d5b);
  border-radius: 8px;
}
.post-callout p:last-child { margin-bottom: 0; }
.post-callout p:first-child { margin-top: 0; }

ol.post-steps {
  margin: 24px 0;
  padding-left: 22px;
}
ol.post-steps li { margin-bottom: 10px; }
.post-steps { margin: 24px 0; }

.post-tool-embed {
  margin: 32px 0;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.post-faq {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.post-faq h2 { margin: 0 0 16px; }
.post-faq dl { margin: 0; }
.post-faq dt {
  font-weight: 600;
  margin-top: 18px;
}
.post-faq dd {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.blog-feeds {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============ Internal linking & topical graph ============ */
.contextual-links {
  margin: 36px 0 0;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.contextual-links h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.contextual-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.contextual-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}
.contextual-links a:hover {
  color: var(--brand, #2e7d5b);
}

.page-updated {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 8px 0;
}
.post-nav a {
  display: block;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.15s ease;
}
.post-nav a:hover { border-color: var(--ink); }
.post-nav a span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}
.post-nav-next { text-align: right; }
.post-nav .is-empty { display: block; }
@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ============ HTML sitemap page ============ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.sitemap-section h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.sitemap-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sitemap-section a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
}
.sitemap-section a:hover { color: var(--brand, #2e7d5b); }
@media (max-width: 680px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ============ GEO / AI-overview elements ============ */
dfn { font-style: normal; }

.key-facts {
  margin: 0 0 28px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.key-facts h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.key-facts ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.key-facts li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============ Conversion layer ============ */

/* Sticky CTA — fixed, so it never causes layout shift */
.sticky-cta {
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink, #0b0b0f);
  color: #fff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.18);
}
.sticky-cta[hidden] { display: none; }
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta-text strong { font-size: 0.92rem; }
.sticky-cta-text span { font-size: 0.78rem; opacity: 0.7; }
.sticky-cta-go {
  background: var(--brand, #2e7d5b);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-cta-close {
  background: none;
  border: 0;
  color: #fff;
  opacity: 0.6;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}
.sticky-cta-close:hover { opacity: 1; }
.sticky-cta { left: 0; right: 0; bottom: 0; padding: 12px max(16px, 4vw); }
@media (min-width: 760px) {
  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    border-radius: 12px;
    padding: 14px 16px;
    max-width: 380px;
  }
}

/* Exit-intent modal */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 11, 15, 0.55);
}
.exit-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px 26px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.exit-modal h2 { margin: 0 0 12px; font-size: 1.4rem; }
.exit-modal p { margin: 0 0 12px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.exit-modal-price { font-size: 1.5rem; color: var(--ink); }
.exit-modal-price s { color: var(--muted); font-size: 1.1rem; margin-right: 6px; }
.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.exit-modal-go { width: 100%; margin: 8px 0 10px; }
.exit-modal-dismiss {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
}
.exit-modal-dismiss:hover { color: var(--ink); }

/* Preview nudge toast */
.preview-nudge {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(440px, 92vw);
  padding: 13px 16px;
  background: var(--ink, #0b0b0f);
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, 24px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.preview-nudge.is-in { transform: translate(-50%, 0); opacity: 1; }
.preview-nudge.is-leaving { transform: translate(-50%, 24px); opacity: 0; }
.preview-nudge-close {
  background: none;
  border: 0;
  color: #fff;
  opacity: 0.6;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}
.preview-nudge-close:hover { opacity: 1; }

/* Trust strip */
.trust-strip {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.trust-strip li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.trust-strip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand, #2e7d5b);
  font-weight: 700;
}
.trust-band { padding: 8px 0; }

/* Compact tier picker (ICP + blog bottoms) */
.tier-compact {
  margin: 8px 0;
  padding: 26px 0;
}
.tier-compact .page-inner {
  text-align: center;
}
.tier-compact h2 { margin: 0 0 8px; }
.tier-compact-line {
  margin: 0 0 14px;
  color: var(--ink-soft);
}
.tier-compact-ctas { margin: 0; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* A/B pricing-card order — keyed on <html data-ab> set from the cookie */
.tier-cards--ab { align-items: stretch; }
html[data-ab="pack-first"] .tier-card--pack { order: -1; }

/* ?ref=studio — highlight the Studio tier for studio referrals */
html[data-ref="studio"] .tier-card-studio {
  border-color: var(--brand, #2e7d5b);
  box-shadow: 0 0 0 1px var(--brand, #2e7d5b);
}
html[data-ref="studio"] .tier-card-studio::before {
  content: "Recommended for working studios";
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand, #2e7d5b);
  margin-bottom: 8px;
}

/* ============ Pricing page comparison rows ============ */
.pricing-grid { padding: 8px 0 0; }

/* Admin / studio dashboard primitives (left minimal — owned by other agents) */
.dfn-pricing dfn { font-style: normal; font-weight: 600; }
