  /* ── Pricing page - Solo 2027 brand pass ─────────────────── */

  /* Hero rules moved to .solo-marketing-hero in solocogs-theme.css
     (2026-06-11). The pricing page hero now uses the canonical class. */

  /* ── Plan cards (B2C) ──────────────────────────────────────────
     Using CSS subgrid so every row across the two cards is the SAME
     height (name, price, period, desc, features, cta, note). This
     guarantees the first tick in the features list - and every other
     row boundary - lines up across both cards regardless of how the
     description prose wraps. */
  .pr-plans-shell { max-width: 920px; margin: 0 auto; padding: 3.5rem 1.5rem 1rem; }
  .pr-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 7 row tracks corresponding to each card's internal sections. */
    grid-template-rows:
      auto    /* 1: name eyebrow */
      auto    /* 2: price */
      auto    /* 3: period */
      auto    /* 4: description */
      1fr     /* 5: features (expand to fill) */
      auto    /* 6: cta button */
      auto;   /* 7: note */
    gap: 1.5rem;
  }
  @media (max-width: 720px) {
    .pr-plans-grid {
      grid-template-columns: 1fr;
      grid-template-rows: none;
    }
  }

  .pr-card {
    background: var(--solo-bg-elevated);
    border: 1.5px solid var(--solo-divider);
    border-radius: var(--solo-radius);
    box-shadow: var(--solo-shadow-1);
    padding: 1.75rem 1.75rem 1.5rem;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 7;
    gap: 0;
    position: relative;
    overflow: hidden;
  }
  /* On phone, cards revert to natural block flow */
  @media (max-width: 720px) {
    .pr-card {
      display: flex;
      flex-direction: column;
      grid-row: auto;
    }
  }
  .pr-card::before {
    content: '';
    position: absolute; inset: 0 auto 0 0;
    width: 3px;
    background: var(--solo-mastery);
  }
  .pr-card.featured {
    border: 2px solid var(--solo-mastery);
    box-shadow: var(--solo-shadow-2), 0 0 0 4px rgba(45, 212, 191, 0.10);
  }
  .pr-card.featured::before { width: 4px; }

  .pr-card-pill {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--solo-mastery-pale);
    color: var(--solo-mastery-deep);
    font-family: var(--solo-font-head);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 0.6rem; border-radius: 999px;
  }

  .pr-card-name {
    font-family: var(--solo-font-head);
    font-size: 0.78rem; font-weight: 600;
    color: var(--solo-text-mute);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .pr-card-price {
    font-family: var(--solo-font-head);
    font-size: 2.6rem; font-weight: 700;
    color: var(--solo-heading-color, var(--solo-navy));
    line-height: 1; letter-spacing: -0.02em;
  }
  .pr-card-price small {
    font-size: 0.85rem; font-weight: 500;
    color: var(--solo-text-mute);
    margin-left: 0.3rem;
  }
  .pr-card-period {
    font-family: var(--solo-font-body);
    font-size: 0.78rem; color: var(--solo-text-mute);
    margin-top: 0.3rem;
  }
  .pr-card-desc {
    font-family: var(--solo-font-body);
    font-size: 0.92rem;
    color: var(--solo-text);
    line-height: 1.55;
    margin: 1rem 0 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--solo-divider);
    /* Subgrid (on .pr-plans-grid + .pr-card) aligns row 4 across both
       cards automatically, so this block now needs no min-height hack. */
  }
  .pr-card-features {
    list-style: none; padding: 0;
    margin: 0 0 1.25rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    /* No flex: 1 needed - subgrid row 5 is 1fr so this fills automatically. */
  }
  .pr-card-features li {
    font-family: var(--solo-font-body);
    font-size: 0.88rem;
    color: var(--solo-text);
    line-height: 1.4;
    display: flex; gap: 0.55rem; align-items: flex-start;
  }
  .pr-card-features li svg {
    flex-shrink: 0;
    width: 16px; height: 16px;
    color: var(--solo-mastery-deep);
    margin-top: 2px;
  }
  /* Colour/hover/text-shadow handled by theme.css :: solo-cta-primary block.
     Page-local rule only carries layout (width, padding, border-radius). */
  .pr-card-cta {
    width: 100%;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }
  /* Layout-only rule for the secondary Annual CTA. Colours live in
     solocogs-theme.css (exception under the .pr-card-cta primary block). */
  .pr-card-cta.pr-card-cta-secondary {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }
  /* Bundle-mode toggle (1 child / Family up to 4). Two-pill segmented control
     sitting between the families section intro and the plan cards. */
  .pr-bundle-toggle {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 4px;
    background: var(--solo-bg-elevated, #FFFFFF);
    border: 1px solid var(--solo-divider);
    border-radius: 999px;
    box-shadow: var(--solo-shadow-1);
  }
  .pr-bundle-pill {
    min-height: 44px;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--solo-text);
    font-family: var(--solo-font-head);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
  }
  .pr-bundle-pill small {
    font-weight: 500;
    color: var(--solo-text-mute);
    margin-left: 0.25rem;
  }
  .pr-bundle-pill:hover,
  .pr-bundle-pill:focus-visible {
    color: var(--solo-mastery-deep);
    outline: none;
  }
  .pr-bundle-pill.is-active {
    background: var(--solo-mastery);
    color: var(--solo-heading-color, var(--solo-navy));
  }
  .pr-bundle-pill.is-active small {
    color: var(--solo-heading-color, var(--solo-navy));
    opacity: 0.75;
  }
  /* Visibility swap driven by body[data-bundle-mode]. Default = single. */
  body[data-bundle-mode="single"] [data-bundle-show="family"],
  body[data-bundle-mode="family"] [data-bundle-show="single"] { display: none; }
  /* Active price-row highlight: the row matching the current bundle mode
     gets a subtle teal halo so the user can see exactly which price applies. */
  .pr-tier-row-label,
  .pr-tier-row-price {
    color: var(--solo-text);
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background .15s ease, color .15s ease, font-weight .15s ease;
  }
  .pr-tier-row-price {
    text-align: right;
    color: var(--solo-heading-color, var(--solo-navy));
  }
  body[data-bundle-mode="single"] [data-bundle-row="family"],
  body[data-bundle-mode="family"] [data-bundle-row="single"] {
    opacity: 0.55;
  }
  body[data-bundle-mode="single"] [data-bundle-row="single"],
  body[data-bundle-mode="family"] [data-bundle-row="family"] {
    background: rgba(45, 212, 191, 0.14);
    color: var(--solo-mastery-deep);
    font-weight: 700;
  }
  body[data-bundle-mode="single"] [data-bundle-row="single"].pr-tier-row-price,
  body[data-bundle-mode="family"] [data-bundle-row="family"].pr-tier-row-price {
    color: var(--solo-mastery-deep);
  }
  .pr-card-note {
    text-align: center;
    font-family: var(--solo-font-body);
    font-size: 0.75rem;
    color: var(--solo-text-mute);
    margin-top: 0.65rem;
  }

  /* ── Indicative per-seat bands table (Round 2 persona-audit) ── */
  .pr-seats-table {
    max-width: 980px;
    margin: 2rem auto 1.25rem;
    padding: 1.75rem 1.5rem 1.5rem;
    background: var(--solo-bg-elevated, #FFFFFF);
    border: 1px solid var(--solo-divider, #E2E8F0);
    border-radius: 16px;
    box-shadow: var(--solo-shadow-1);
  }
  .pr-seats-title {
    font-family: var(--solo-font-head, 'Lexend', sans-serif);
    font-size: 1.25rem; font-weight: 700;
    color: var(--solo-heading-color, var(--solo-navy, #1E293B));
    margin: 0 0 .5rem;
  }
  .pr-seats-lede {
    color: var(--solo-text-mute, #64748B);
    font-size: .92rem; margin: 0 0 1.25rem;
    line-height: 1.55;
  }
  .pr-seats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .75rem;
  }
  .pr-seat-tier {
    padding: 1rem 1.1rem;
    background: var(--solo-bg, #F8FAFC);
    border: 1px solid var(--solo-divider, #E2E8F0);
    border-radius: 12px;
    display: flex; flex-direction: column;
  }
  .pr-seat-cta {
    display: inline-flex; align-items: center; justify-content: center;
    align-self: flex-start;
    margin-top: .8rem;
    min-height: 44px;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: var(--solo-mastery, #2DD4BF);
    color: var(--solo-heading-color, var(--solo-navy, #0F172A));
    font-family: var(--solo-font-head, 'Lexend', sans-serif);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
  }
  .pr-seat-cta:hover,
  .pr-seat-cta:focus-visible {
    background: var(--solo-mastery-deep, #14B8A6);
    color: #FFFFFF;
    transform: translateY(-1px);
    outline: none;
  }
  .pr-seat-cta--enterprise {
    background: var(--solo-navy, #1E293B);
    color: #FFFFFF;
  }
  .pr-seat-cta--enterprise:hover,
  .pr-seat-cta--enterprise:focus-visible {
    background: #0F172A;
    color: #FFFFFF;
  }
  .pr-seat-tier--enterprise {
    background: linear-gradient(135deg, var(--solo-bg-elevated, #FFFFFF) 0%, var(--solo-mastery-pale, #CCFBF1) 100%);
    border-color: rgba(45, 212, 191, 0.5);
  }
  .pr-seat-name {
    font-family: var(--solo-font-head, 'Lexend', sans-serif);
    font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--solo-text-mute, #64748B);
    margin-bottom: .35rem;
  }
  .pr-seat-rate {
    font-family: var(--solo-font-head, 'Lexend', sans-serif);
    font-size: 1.6rem; font-weight: 800;
    color: var(--solo-heading-color, var(--solo-navy, #1E293B));
    line-height: 1.1;
  }
  .pr-seat-unit { font-size: .85rem; font-weight: 600; color: var(--solo-text-mute, #64748B); margin-left: .15rem; }
  .pr-seat-detail {
    font-size: .85rem; color: var(--solo-text, #334155);
    margin-top: .55rem; line-height: 1.45;
  }
  .pr-seat-band {
    font-size: .78rem; color: var(--solo-mastery-deep, #14B8A6);
    font-weight: 600; margin-top: .45rem;
  }
  .pr-seat-band a { color: inherit; border-bottom: 1px solid currentColor; text-decoration: none; }
  .pr-seats-foot {
    font-size: .8rem; color: var(--solo-text-mute, #64748B);
    margin: 1.25rem 0 0; font-style: italic;
  }

  /* ── Schools / tutors panel (B2B) ──────────────────────────── */
  .pr-b2b-shell { max-width: 920px; margin: 0 auto; padding: 2.5rem 1.5rem 1rem; }
  .pr-b2b-card {
    background: linear-gradient(135deg, var(--solo-navy) 0%, #1B3A6B 100%);
    color: #F8FAFC;
    border-radius: var(--solo-radius);
    padding: 2.25rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    box-shadow: var(--solo-shadow-2);
  }
  @media (max-width: 720px) {
    .pr-b2b-card {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 1.75rem 1.25rem;
    }
  }
  .pr-b2b-icon {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: rgba(45, 212, 191, 0.18);
    color: #5EEAD4;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  @media (max-width: 720px) { .pr-b2b-icon { margin: 0 auto; } }
  .pr-b2b-icon svg { width: 30px; height: 30px; }
  /* High specificity (body.theme-solo) so we beat body.theme-solo h2 navy default. */
  body.theme-solo .pr-b2b-text h2 {
    font-family: var(--solo-font-head);
    font-size: 1.35rem; font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
  }
  .pr-b2b-text p {
    font-family: var(--solo-font-body);
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.82);
    line-height: 1.6;
    margin: 0;
  }
  .pr-b2b-text p + p { margin-top: 0.55rem; }
  /* Colour/hover handled by theme.css :: solo-cta-primary block.
     Page-local rule only carries layout. */
  .pr-b2b-cta {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.45rem;
    white-space: nowrap;
  }

  /* ── FAQs ──────────────────────────────────────────────────── */
  .pr-faq-shell { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
  .pr-faq-shell h2 {
    font-family: var(--solo-font-head);
    font-size: 1.5rem; font-weight: 700;
    color: var(--solo-heading-color, var(--solo-navy));
    text-align: center;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }
  .pr-faq {
    background: var(--solo-bg-elevated);
    border: 1px solid var(--solo-divider);
    border-radius: var(--solo-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .pr-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-family: var(--solo-font-head);
    font-size: 0.95rem; font-weight: 600;
    color: var(--solo-heading-color, var(--solo-navy));
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  }
  .pr-faq summary::-webkit-details-marker { display: none; }
  .pr-faq summary::after {
    content: '';
    width: 12px; height: 12px;
    border-right: 2px solid var(--solo-text-mute);
    border-bottom: 2px solid var(--solo-text-mute);
    transform: rotate(45deg);
    transition: transform var(--solo-fast) var(--solo-ease);
    flex-shrink: 0;
  }
  .pr-faq[open] summary::after { transform: rotate(-135deg); }
  .pr-faq summary:hover { background: var(--solo-bg); }
  .pr-faq-body {
    padding: 0 1.25rem 1.1rem;
    font-family: var(--solo-font-body);
    font-size: 0.9rem;
    color: var(--solo-text);
    line-height: 1.65;
  }
  .pr-faq-body p { margin: 0 0 0.55rem; }
  .pr-faq-body p:last-child { margin: 0; }
  .pr-faq-body a {
    color: var(--solo-mastery-deep);
    font-weight: 600;
    text-decoration: none;
  }
  .pr-faq-body a:hover { text-decoration: underline; }

  /* ── Trust line ───────────────────────────────────────────── */
  .pr-trust {
    max-width: 720px; margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
    text-align: center;
    font-family: var(--solo-font-body);
    font-size: 0.78rem;
    color: var(--solo-text-mute);
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    flex-wrap: wrap;
  }
  .pr-trust svg {
    width: 14px; height: 14px;
    color: var(--solo-mastery-deep);
  }
  .pr-trust a {
    color: var(--solo-mastery-deep);
    text-decoration: none;
    font-weight: 600;
  }
  .pr-trust a:hover { text-decoration: underline; }

  /* ── Waitlist modal ───────────────────────────────────────── */
  .wl-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center; justify-content: center;
    padding: 1.5rem;
    z-index: 9000;
  }
  .wl-overlay.open { display: flex; }
  .wl-modal {
    background: var(--solo-bg-elevated);
    border-radius: var(--solo-radius);
    box-shadow: var(--solo-shadow-3);
    width: 100%; max-width: 460px;
    padding: 2rem 1.75rem;
    position: relative;
  }
  .wl-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: none; border: none;
    font-size: 1.5rem; line-height: 1;
    cursor: pointer; color: var(--solo-text-mute);
    width: 32px; height: 32px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }
  .wl-close:hover { background: var(--solo-bg); color: var(--solo-text); }
  .wl-modal h3 {
    font-family: var(--solo-font-head);
    font-size: 1.25rem; font-weight: 700;
    color: var(--solo-heading-color, var(--solo-navy));
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
  }
  .wl-modal-sub {
    font-family: var(--solo-font-body);
    font-size: 0.88rem;
    color: var(--solo-text-mute);
    margin: 0 0 1.25rem;
    line-height: 1.55;
  }
  .wl-form-group { margin-bottom: 1rem; }
  .wl-label {
    display: block;
    font-family: var(--solo-font-head);
    font-size: 0.78rem; font-weight: 600;
    color: var(--solo-text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
  }
  .wl-input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid var(--solo-border);
    border-radius: var(--solo-radius-sm);
    font-family: var(--solo-font-body);
    font-size: 0.95rem;
    color: var(--solo-text);
    background: var(--solo-bg-elevated);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .wl-input:focus {
    border-color: var(--solo-mastery);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
  }
  /* Colour/hover handled by theme.css :: solo-cta-primary block. */
  .wl-submit {
    width: 100%;
    border-radius: var(--solo-radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }
  .wl-submit:disabled { opacity: 0.65; cursor: not-allowed; }
  .wl-msg {
    margin-top: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--solo-radius-sm);
    font-family: var(--solo-font-body);
    font-size: 0.85rem; line-height: 1.5;
    display: none;
  }
  .wl-msg.show { display: block; }
  .wl-msg.success {
    background: var(--solo-mastery-pale);
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: var(--solo-mastery-deep);
  }
  .wl-msg.error {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
  }
  .wl-fineprint {
    font-family: var(--solo-font-body);
    font-size: 0.72rem;
    color: var(--solo-text-mute);
    margin-top: 0.85rem;
    line-height: 1.5;
    text-align: center;
  }
  .wl-fineprint a {
    color: var(--solo-mastery-deep);
    text-decoration: none;
  }
  .wl-fineprint a:hover { text-decoration: underline; }
