/* Public pricing page (/pricing). Additive styles only — the page reuses the .ocl-landing scope
   (dark marketing theme, header, buttons, footer) from landing.css, so every selector here MUST
   stay under .ocl-landing (Vite injects CSS globally; see web/customer/CLAUDE.md). */

.ocl-landing .price-hero{padding-top:150px}
.ocl-landing .price-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:880px;margin:0 auto}
.ocl-landing .price-card{position:relative;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-card);padding:34px 30px;display:flex;flex-direction:column;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025)}
.ocl-landing .price-card.featured{border-color:rgba(34,211,238,.45);
  box-shadow:0 24px 60px -36px rgba(34,211,238,.45),inset 0 1px 0 rgba(255,255,255,.025)}
/* Tier name is the card's headline — the eyebrow above it stays small and muted. */
.ocl-landing .price-card .plan{font-family:var(--font-display);font-size:23px;font-weight:700;
  letter-spacing:-.01em;color:var(--text)}
.ocl-landing .price-card.featured .plan{color:var(--cyan)}
.ocl-landing .price-card .amount{font-family:var(--font-display);font-weight:700;font-size:42px;
  letter-spacing:-.02em;margin:8px 0 4px}
/* Only the billing-period suffix is small — the amount itself (currency mark AND digits, the
   latter wrapped in its own span so the Monthly/Annual toggle can swap it) keeps the 42px
   display size. */
.ocl-landing .price-card .amount .amount-per{font-family:var(--font-body);font-weight:500;font-size:15px;color:var(--muted)}
.ocl-landing .plist{list-style:none;margin:18px 0 26px;padding:0;display:flex;flex-direction:column;gap:11px;flex:1}
.ocl-landing .plist li{display:flex;gap:11px;align-items:flex-start;font-size:14px;color:var(--text);line-height:1.5}
.ocl-landing .plist li b{font-weight:600}
.ocl-landing .plist li.off{color:var(--muted)}
.ocl-landing .plist li code{font-family:var(--font-mono);font-size:12.5px;color:var(--cyan);white-space:nowrap}
.ocl-landing .pl-ck{width:18px;height:18px;flex-shrink:0;color:var(--green);margin-top:2px}
.ocl-landing .pl-x{width:18px;height:18px;flex-shrink:0;color:var(--muted);opacity:.5;margin-top:2px}
.ocl-landing .price-cta{justify-content:center}
.ocl-landing .plan-tag{margin:6px 0 0;color:var(--muted);font-size:13.5px;line-height:1.5}
/* Annual saving line under the amount — quiet emphasis, the cyan marks the deal. Shows only
   when Annual is selected (mirrors the in-app /subscription Pro card). */
.ocl-landing .annual-note{margin:0 0 2px;color:var(--cyan);font-size:13px;font-weight:600}
/* Tier name + billing toggle share one row, toggle pushed to the top-right (mirrors the in-app
   /subscription Pro card header). */
.ocl-landing .plan-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
/* Monthly/Annual segmented toggle on the Pro card — selected pill uses the cyan accent, matching
   the in-app subscription toggle. */
.ocl-landing .pl-toggle{display:inline-flex;flex-shrink:0;gap:3px;padding:3px;
  border:1px solid var(--border);border-radius:999px;background:var(--bg)}
.ocl-landing .pl-toggle button{appearance:none;border:0;cursor:pointer;font-family:var(--font-mono);
  font-size:12px;font-weight:600;letter-spacing:.02em;padding:5px 14px;border-radius:999px;
  background:transparent;color:var(--muted);transition:color .15s,background .15s}
.ocl-landing .pl-toggle button:hover{color:var(--text)}
.ocl-landing .pl-toggle button.is-on{background:rgba(34,211,238,.12);color:var(--cyan)}
.ocl-landing .plan-eyebrow{font-family:var(--font-mono);font-size:11px;letter-spacing:.08em;
  text-transform:uppercase;color:var(--muted);margin-bottom:4px}
.ocl-landing .pl-sub{display:block;margin-top:3px;font-size:12.5px;color:var(--muted);line-height:1.45}

@media(max-width:760px){
.ocl-landing .price-grid{grid-template-columns:1fr}
}
