    .grain-warm {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.14  0 0 0 0 0.14  0 0 0 0 0.14  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    /* Override shared nav-scrolled with cream tint for bg-base body */
    .nav-scrolled { background: rgba(248,248,247,0.78); }
    /* Phones have no backdrop blur (mobile.css) — near-opaque so text can't bleed through */
    @media (max-width: 767.98px) {
      .nav-scrolled { background: rgba(248,248,247,0.96); }
    }

    .lum {
      box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 30px 80px -40px rgba(36,36,36,0.18),
        0 4px 16px -8px rgba(36,36,36,0.06);
    }

    @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    .rise { animation: rise 900ms cubic-bezier(.2,.7,.2,1) both; }
    .rise-1 { animation-delay: 60ms; }
    .rise-2 { animation-delay: 160ms; }
    .rise-3 { animation-delay: 260ms; }

    /* ---- Plan card ---- */
    .plan-card {
      position: relative;
      background: #FFFFFF;
      border: 1px solid #ECECE9;
      border-radius: 22px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    @media (min-width: 768px) {
      .plan-card { border-radius: 26px; padding: 36px 30px; }
    }

    .plan-name {
      font-size: 17px;
      font-weight: 500;
      color: #242424;
      letter-spacing: -0.01em;
    }
    .plan-blurb {
      font-size: 14px;
      line-height: 1.55;
      color: #4D4B48;
      font-weight: 300;
      min-height: 44px;
    }
    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      padding-top: 2px;
    }
    .plan-price-num {
      font-size: 44px;
      font-weight: 500;
      letter-spacing: -0.035em;
      color: #242424;
      line-height: 1;
    }
    .plan-unit { font-size: 13.5px; color: #6B7280; font-weight: 400; }

    .plan-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 18px;
      border-radius: 9999px;
      background: var(--c-accent, #0000EE);
      color: #FFFFFF;
      font-size: 14.5px;
      font-weight: 500;
      transition: background .2s;
    }
    .plan-cta:hover { background: var(--c-accent-hover, #0000C4); }
    .plan-cta.cta-outline {
      background: transparent;
      color: #242424;
      border: 1px solid #242424;
    }
    .plan-cta.cta-outline:hover { background: #242424; color: #F8F8F7; }

    .plan-features {
      display: flex;
      flex-direction: column;
      gap: 11px;
      padding-top: 18px;
      border-top: 1px solid #ECECE9;
    }
    .plan-features li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      line-height: 1.5;
      color: #3F3D3A;
    }
    .plan-features .bullet-icon {
      width: 18px; height: 18px;
      display: inline-grid; place-items: center;
      color: var(--c-check, #0057FF);
      flex: none;
      margin-top: 2px;
    }
    .plan-features .bullet-icon .material-symbols-rounded {
      font-size: 18px !important;
      font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

    /* ---- Comparison table ---- */
    .compare-card {
      background: #FFFFFF;
      border: 1px solid #ECECE9;
      border-radius: 22px;
      /* The table's min content width (~366px) exceeds small phones — scroll,
         don't clip. Still clips square corners to the radius when it fits. */
      overflow-x: auto;
      overflow-y: hidden;
    }
    @media (min-width: 768px) {
      .compare-card { border-radius: 26px; }
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .compare-table thead th {
      text-align: left;
      padding: 22px 22px 18px;
      font-weight: 500;
      color: #242424;
      font-size: 14px;
      background: #F8F8F7;
      vertical-align: bottom;
      border-bottom: 1px solid #ECECE9;
    }
    .compare-table thead th .col-price {
      display: block;
      margin-top: 4px;
      font-size: 12.5px;
      font-weight: 400;
      color: #6B7280;
      letter-spacing: 0;
    }
    .compare-table thead th.col-feature { width: 31%; }
    .compare-table thead th.col-plan    { width: 23%; }

    .compare-table tbody td {
      padding: 18px 22px;
      vertical-align: top;
      border-top: 1px solid #EFEEEC;
      color: #3F3D3A;
      line-height: 1.5;
      font-weight: 300;
    }
    .compare-table tbody tr:first-child td { border-top: none; }
    .compare-table tbody td.feature-name {
      color: #242424;
      font-weight: 500;
    }

    .yes-mark, .no-mark {
      display: inline-flex;
      width: 22px;
      height: 22px;
      border-radius: 9999px;
      align-items: center;
      justify-content: center;
    }
    .yes-mark {
      background: rgba(0,87,255,0.12);
      color: var(--c-check, #0057FF);
    }
    .no-mark {
      background: #F2F1EE;
      color: #9CA3AF;
    }
    .yes-mark .material-symbols-rounded,
    .no-mark  .material-symbols-rounded {
      font-size: 14px !important;
      font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 20;
    }

    @media (max-width: 767px) {
      .compare-table thead th,
      .compare-table tbody td { padding: 14px 14px; font-size: 13px; }
      .compare-table thead th.col-feature,
      .compare-table thead th.col-plan { width: auto; }
    }

    /* FAQ — JS-toggled to avoid <details>/<summary> rendering quirks */
    .faq-item { padding: 20px 0; }
    @media (min-width: 640px) { .faq-item { padding: 24px 0; } }
    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: transparent;
      border: 0;
      padding: 0;
      text-align: left;
      cursor: pointer;
      font: inherit;
      color: inherit;
    }
    .faq-question {
      font-size: 15px;
      font-weight: 500;
      color: #242424;
      line-height: 1.4;
    }
    @media (min-width: 640px) { .faq-question { font-size: 16px; } }
    .faq-icon {
      flex: none;
      color: #3F3D3A;
      transition: transform .2s ease;
    }
    .faq-item.is-open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      display: none;
      margin-top: 14px;
      max-width: 640px;
      color: #4D4B48;
      font-size: 15px;
      line-height: 1.6;
      font-weight: 300;
    }
    .faq-item.is-open .faq-answer { display: block; }
    .faq-answer a { color: #0000EE; }
    .faq-answer a:hover { text-decoration: underline; }
