    /* ── Page layout ────────────────────────────────────────────────────── */
    .pricing-page {
      max-width: 860px;
      margin: 0 auto;
      padding: 2rem 1.5rem 5rem;
    }
    .pricing-breadcrumb {
      font-size: .8rem; color: var(--text-dim);
      margin-bottom: 1.75rem;
    }
    .pricing-breadcrumb a { color: var(--text-muted); }
    .pricing-breadcrumb a:hover { color: var(--text); }

    /* ── Pricing stage — premium background treatment ───────────────────── */
    .pricing-stage {
      position: relative;
      border: 1px solid var(--border-2);
      border-radius: 1.25rem;
      padding: 2.5rem 2rem 2rem;
      overflow: hidden;
      margin-bottom: 2.5rem;
    }
    /* Radial glow: soft rose/gold centered behind the cards */
    .pricing-stage::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 460px;
      background: radial-gradient(ellipse at 50% 30%,
        color-mix(in srgb, var(--gold) 9%, transparent) 0%,
        color-mix(in srgb, var(--pink) 5%, transparent) 35%,
        transparent 68%);
      pointer-events: none;
      z-index: 0;
    }
    /* Subtle grid texture */
    .pricing-stage::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(color-mix(in srgb, var(--glass) 2.2%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--glass) 2.2%, transparent) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
      z-index: 0;
    }
    .pricing-stage > * { position: relative; z-index: 1; }

    /* Stage header */
    .pricing-stage h1 {
      font-size: clamp(1.65rem, 3.5vw, 2.2rem);
      font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
      margin-bottom: .75rem;
    }
    .pricing-intro {
      font-size: .92rem; color: var(--text-muted); line-height: 1.65;
      max-width: 540px; margin-bottom: 2rem;
    }

    /* ── Plan grid ──────────────────────────────────────────────────────── */
    .plan-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
      align-items: start;
    }
    @media (max-width: 640px) { .plan-grid { grid-template-columns: 1fr; } }

    /* ── Base plan card ─────────────────────────────────────────────────── */
    .plan-card {
      background: color-mix(in srgb, var(--bg-card) 90%, transparent);
      border: 1px solid color-mix(in srgb, var(--glass) 10%, transparent);
      border-radius: 1rem;
      padding: 1.6rem;
    }

    /* ── Growth card — elevated, premium ───────────────────────────────── */
    .plan-card--growth {
      background: linear-gradient(150deg, var(--bg-card-2) 0%, color-mix(in srgb, var(--gold) 7%, transparent) 60%, color-mix(in srgb, var(--pink) 4%, transparent) 100%);
      border: 1.5px solid color-mix(in srgb, var(--gold) 48%, transparent);
      box-shadow:
        0 0 0 1px color-mix(in srgb, var(--gold) 13%, transparent),
        0 8px 40px color-mix(in srgb, var(--gold) 11%, transparent),
        0 1px 4px rgba(0,0,0,.45);
    }

    /* ── Plan badge (above card title) ─────────────────────────────────── */
    .plan-badge {
      display: inline-block;
      background: color-mix(in srgb, var(--gold) 14%, transparent); color: var(--gold);
      font-size: .62rem; font-weight: 700; letter-spacing: .07em;
      padding: .2rem .6rem; border-radius: .3rem;
      text-transform: uppercase; margin-bottom: .85rem;
    }

    /* ── Title row (name + best-for label) ─────────────────────────────── */
    .plan-title-row {
      display: flex; align-items: center; gap: .6rem;
      flex-wrap: wrap; margin-bottom: .25rem;
    }
    .plan-title-row h3 {
      font-size: 1.1rem; font-weight: 800; margin: 0;
    }
    .plan-best-label {
      font-size: .65rem; font-weight: 600; letter-spacing: .03em;
      color: var(--pink-light);
      background: color-mix(in srgb, var(--pink) 10%, transparent);
      border: 1px solid color-mix(in srgb, var(--pink) 20%, transparent);
      padding: .15rem .5rem; border-radius: .25rem;
      white-space: nowrap;
    }

    .plan-tagline {
      font-size: .83rem; color: var(--text-muted);
      margin-bottom: 1.15rem; line-height: 1.55;
    }
    .plan-price {
      font-size: 2.1rem; font-weight: 800; letter-spacing: -.04em;
      line-height: 1; color: var(--text); margin-bottom: .3rem;
    }
    .plan-price-sub {
      font-size: .78rem; color: var(--text-dim);
      margin-bottom: 1.35rem; line-height: 1.5;
    }

    /* ── Feature list ───────────────────────────────────────────────────── */
    .plan-features {
      list-style: none; padding: 0;
      margin: 0 0 1.5rem;
      display: flex; flex-direction: column; gap: .5rem;
    }
    .plan-features li {
      display: flex; align-items: flex-start;
      gap: .6rem; font-size: .85rem; line-height: 1.5;
      color: var(--text-muted);
    }
    .plan-check {
      color: var(--gold); flex-shrink: 0;
      font-weight: 700; font-size: .72rem;
      margin-top: .18rem;
    }

    /* ── Upgrade callout (inside Starter features) ──────────────────────── */
    .plan-upgrade-block {
      margin-top: .5rem;
      background: color-mix(in srgb, var(--gold) 5%, transparent);
      border: 1px solid color-mix(in srgb, var(--gold) 14%, transparent);
      border-radius: .5rem;
      padding: .7rem .85rem .65rem;
      width: 100%;
    }
    .plan-upgrade-label {
      font-size: .68rem; font-weight: 700; color: var(--gold);
      text-transform: uppercase; letter-spacing: .07em;
      margin-bottom: .4rem;
    }
    .plan-upgrade-item {
      font-size: .81rem; color: var(--text-dim);
      padding: .1rem 0; display: flex; align-items: center; gap: .45rem;
    }
    .plan-upgrade-item::before {
      content: '';
      display: inline-block;
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--text-dim); flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── CTAs ───────────────────────────────────────────────────────────── */
    .btn-plan {
      display: block; width: 100%; text-align: center;
      background: var(--gold-btn); color: var(--on-accent);
      font-weight: 700; font-size: .9rem;
      padding: .82rem; border-radius: .5rem;
      border: none; cursor: pointer; transition: background .15s;
    }
    .btn-plan:hover { background: var(--gold-btn-h); color: var(--on-accent); }
    .btn-plan--outline {
      background: transparent;
      border: 1.5px solid color-mix(in srgb, var(--gold) 32%, transparent);
      color: var(--text-muted);
    }
    .btn-plan--outline:hover {
      background: color-mix(in srgb, var(--gold) 7%, transparent);
      border-color: color-mix(in srgb, var(--gold) 50%, transparent);
      color: var(--text);
    }

    /* ── Revenue share note (below cards) ───────────────────────────────── */
    .rev-note {
      font-size: .82rem; color: var(--text-dim);
      text-align: center; line-height: 1.65;
      padding: .85rem 1rem;
      border-top: 1px solid var(--border);
      margin-top: 1.25rem;
    }

    /* ── How payouts work ───────────────────────────────────────────────── */
    .rev-section { margin-bottom: 2.5rem; }
    .rev-section h2 {
      font-size: 1.05rem; font-weight: 700;
      margin-bottom: 1.1rem; color: var(--text);
    }
    .rev-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: .9rem;
    }
    .rev-card {
      background: var(--bg-card); border: 1px solid var(--border-2);
      border-radius: .85rem; padding: 1.25rem 1.35rem;
    }
    .rev-card h3 {
      font-size: .75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .07em;
      color: var(--text-muted); margin-bottom: .45rem;
    }
    .rev-card .num {
      font-size: 1.55rem; font-weight: 800;
      color: var(--text); letter-spacing: -.03em;
      margin-bottom: .5rem; line-height: 1;
    }
    .rev-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
    .example-line {
      font-size: .77rem; color: var(--text-dim);
      background: var(--bg-panel); border-radius: .4rem;
      padding: .4rem .65rem; margin-top: .55rem;
    }

    /* ── FAQ ────────────────────────────────────────────────────────────── */
    .faq-section { margin-top: 2.5rem; }
    .faq-section h2 {
      font-size: 1.05rem; font-weight: 700;
      color: var(--text); margin-bottom: .25rem;
    }
    .faq-item { border-top: 1px solid var(--border); padding: 1rem 0; }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-item h3 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
    .faq-item p { font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
