/* ======================================================================
   Parameter Onboarding - v2 (redesign) front end
   Self-contained. All rules scoped to .po2 so they can never collide with
   the legacy onboarding.css. Tokens lifted from the Parameter design system
   (colors_and_type.css) - only the subset v2 uses.
   ====================================================================== */

.po2 {
  --p-brand-900:#4E2DE3; --p-brand:#7A5AF8;
  --p-accent-dark:#0F766E;
  --p-text:#0B0F1A; --p-muted:#475569;
  --p-soft:#F6F7FF; --p-border:rgba(15,23,42,0.10);
  --p-bg-success:#CCFBF1; --p-fg-success:#0F766E;
  --p-grad:linear-gradient(135deg,#4E2DE3 0%,#7A5AF8 100%);
  --p-radius-sm:10px; --p-radius:16px;
  --p-shadow-brand:0 8px 24px rgba(78,45,227,0.25);
  --p-font:"Space Grotesk",system-ui,-apple-system,"Segoe UI",sans-serif;

  font-family:var(--p-font);
  color:var(--p-text);
  line-height:1.5;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  /* Fill the viewport so .po2-main grows and the footer anchors to the bottom
     even on short screens (e.g. the confirmation screen). 100% collapses when
     the WordPress page ancestors have no explicit height. */
  min-height:100vh;
}
.po2 *, .po2 *::before, .po2 *::after { box-sizing:border-box; }
.po2 :where(h1,h2,h3,p) { margin:0; }
.po2 a { color:var(--p-brand-900); text-decoration:none; }
.po2 a:hover { color:var(--p-brand); }
.po2 :where(button) { font-family:inherit; }
.po2 [hidden] { display:none !important; }
.po2 .po2-hidden { display:none !important; }
.po2 [tabindex="-1"]:focus { outline:none; }
.po2 :focus-visible { outline:2px solid var(--p-brand); outline-offset:2px; border-radius:6px; }
.po2 svg { display:block; }
.po2 .po2-i12 { width:12px; height:12px; }
.po2 .po2-i14 { width:14px; height:14px; }
.po2 .po2-i16 { width:16px; height:16px; }
.po2 .po2-i22 { width:22px; height:22px; }
.po2 .po2-teal { color:var(--p-accent-dark); }

/* ── Header ─────────────────────────────────────────────────────────── */
.po2-header {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:18px 40px;
  background:#fff;
  border-bottom:1px solid var(--p-border);
}
.po2-logo { display:inline-flex; }
.po2-logo img { height:26px; width:auto; display:block; }
.po2-header-right { display:flex; align-items:center; gap:18px; }
.po2-secure {
  display:inline-flex; align-items:center; gap:7px;
  font-size:12.5px; font-weight:600; color:var(--p-muted);
}
.po2-secure svg { color:var(--p-accent-dark); }
.po2-header-link { font-size:12.5px; font-weight:600; color:var(--p-brand-900); }

/* ── Main / container ───────────────────────────────────────────────── */
.po2-main {
  flex:1 0 auto;
  background:var(--p-soft);
  position:relative;
}
.po2-container {
  max-width:1080px;
  margin:0 auto;
  padding:36px 40px 48px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.po2-footer {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:16px 40px;
  background:#fff;
  border-top:1px solid var(--p-border);
}
.po2-footer-copy { font-size:12px; color:var(--p-muted); }
.po2-footer-links { display:flex; gap:16px; font-size:12px; }
.po2-footer-links a { color:var(--p-muted); }
.po2-footer-links a:hover { color:var(--p-brand-900); }

/* ── Return overlay (Stripe return) ─────────────────────────────────── */
.po2-overlay {
  position:absolute; inset:0; z-index:20;
  background:rgba(246,247,255,0.92);
  backdrop-filter:blur(2px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px;
  text-align:center;
  padding:40px;
}
.po2-overlay-copy strong { font-size:17px; font-weight:700; color:var(--p-text); display:block; }
.po2-overlay-copy p { font-size:13.5px; color:var(--p-muted); margin-top:4px; }
.po2-spinner {
  width:34px; height:34px; border-radius:50%;
  border:3px solid rgba(122,90,248,0.25);
  border-top-color:var(--p-brand);
  animation:po2-spin .8s linear infinite;
}
@keyframes po2-spin { to { transform:rotate(360deg); } }

/* ── Title row + stepper ────────────────────────────────────────────── */
.po2-titlerow {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:8px;
}
.po2-kicker {
  display:block;
  font-size:11.5px; font-weight:800; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--p-muted);
  margin-bottom:6px;
}
.po2-h1 { font-size:28px; font-weight:700; letter-spacing:-0.02em; color:var(--p-text); line-height:1.1; }
.po2-subtitle { margin:0 0 28px; font-size:14.5px; color:var(--p-muted); max-width:60ch; }

.po2-stepper { display:flex; align-items:center; gap:10px; padding-bottom:4px; flex-shrink:0; }
.po2-step { display:inline-flex; align-items:center; gap:8px; }
.po2-step-dot {
  width:22px; height:22px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(15,23,42,0.16);
  color:var(--p-muted);
  flex-shrink:0;
}
.po2-step-num { font-size:11px; font-weight:700; }
.po2-step-label { font-size:13px; font-weight:500; color:var(--p-muted); white-space:nowrap; }
.po2-step.is-active .po2-step-dot { background:var(--p-grad); border-color:transparent; color:#fff; }
.po2-step.is-active .po2-step-num { font-weight:800; }
.po2-step.is-active .po2-step-label { font-weight:700; color:var(--p-text); }
.po2-step.is-done .po2-step-dot { background:var(--p-bg-success); border-color:transparent; color:var(--p-fg-success); }
.po2-step-line { width:28px; height:1px; background:rgba(15,23,42,0.16); }

/* ── Grid ───────────────────────────────────────────────────────────── */
.po2-grid { display:grid; grid-template-columns:1.55fr 1fr; gap:24px; align-items:start; }
.po2-col-main { display:grid; gap:20px; min-width:0; }
.po2-summary-col { min-width:0; }

/* ── Card + tokens ──────────────────────────────────────────────────── */
.po2-card {
  background:#fff;
  border:1px solid var(--p-border);
  border-radius:var(--p-radius);
}
.po2-plan-title { font-size:15px; font-weight:700; color:var(--p-text); }

/* Numeric alignment everywhere */
.po2-price, .po2-price-alt, .po2-sum-amt, .po2-due-amt, .po2-order-amt { font-variant-numeric:tabular-nums; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.po2-btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:var(--p-radius-sm);
  background:var(--p-grad);
  color:#fff; font-weight:700; font-size:15px;
  box-shadow:var(--p-shadow-brand);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.po2-btn-primary:hover { transform:translateY(-2px); color:#fff; box-shadow:0 12px 32px rgba(78,45,227,0.30); }
.po2-btn-primary:disabled { opacity:.6; cursor:default; transform:none; box-shadow:var(--p-shadow-brand); }
.po2-btn-ghost {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px;
  border:1px solid var(--p-border);
  border-radius:var(--p-radius-sm);
  background:transparent; color:var(--p-text); font-weight:700; font-size:15px;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}
.po2-btn-ghost:hover { background:var(--p-soft); border-color:rgba(15,23,42,0.18); }
.po2-linkbtn, .po2-remove {
  display:inline-block;
  background:none; border:none; padding:0;
  font-size:12px; font-weight:600; color:var(--p-muted);
  text-decoration:underline; text-underline-offset:2px;
  cursor:pointer; margin-top:6px;
}
.po2-linkbtn:hover, .po2-remove:hover { color:var(--p-brand-900); }
/* "Add to plan" is a real button so a recommended add-on never looks already-in-plan. */
.po2-btn-add {
  display:inline-flex; align-items:center; gap:5px;
  margin-top:8px; padding:7px 13px;
  border:1px solid rgba(122,90,248,0.35); border-radius:999px;
  background:#fff; color:var(--p-brand-900);
  font-size:12.5px; font-weight:700; cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}
.po2-btn-add span { font-size:15px; line-height:1; }
.po2-btn-add:hover { background:rgba(122,90,248,0.08); border-color:var(--p-brand); }
.po2-link-strong { font-weight:600; color:var(--p-brand-900); }

/* ── Field ──────────────────────────────────────────────────────────── */
.po2-field { display:flex; flex-direction:column; gap:6px; }
.po2-field > span:first-child {
  font-size:12px; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--p-muted);
}
.po2-field input, .po2-field textarea, .po2-field select {
  font:inherit; font-size:14px;
  padding:12px 14px;
  border:1px solid var(--p-border);
  border-radius:var(--p-radius-sm);
  background:#fff; color:var(--p-text);
  width:100%;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.po2-field textarea { resize:vertical; min-height:64px; }
.po2-field input:focus, .po2-field textarea:focus, .po2-field select:focus {
  outline:none; border-color:var(--p-brand);
  box-shadow:0 0 0 3px rgba(122,90,248,0.18);
}
.po2-field.po2-invalid input, .po2-field.po2-invalid textarea { border-color:#EF4444; }
.po2-field-err { font-size:11.5px; color:#B91C1C; text-transform:none; letter-spacing:0; font-weight:500; min-height:0; }
.po2-field-err:empty { display:none; }
.po2-field-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.po2-field-grid--21 { grid-template-columns:2fr 1fr; }
.po2-field-stack { display:grid; gap:14px; }

/* ── Icon tile ──────────────────────────────────────────────────────── */
.po2-icon-tile {
  width:32px; height:32px; border-radius:9px;
  display:inline-flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,rgba(122,90,248,0.14),rgba(122,90,248,0.04));
  border:1px solid rgba(122,90,248,0.18);
  color:var(--p-brand-900);
  flex-shrink:0;
}

/* ── Segmented toggle ───────────────────────────────────────────────── */
.po2-seg {
  display:inline-flex; gap:2px;
  border:1px solid var(--p-border);
  border-radius:var(--p-radius-sm);
  padding:3px;
}
.po2-seg-btn {
  padding:6px 12px; border-radius:8px;
  border:1px solid transparent; background:transparent;
  font-size:12.5px; font-weight:600; color:var(--p-muted);
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease, color .15s ease;
}
.po2-seg-btn.is-active {
  font-weight:700; color:var(--p-brand-900);
  background:rgba(122,90,248,0.08);
  border-color:rgba(122,90,248,0.32);
}
.po2-seg-sm { margin-top:10px; }
.po2-seg-sm .po2-seg-btn { padding:5px 10px; font-size:12px; }

/* ── Plan card ──────────────────────────────────────────────────────── */
.po2-plan-head {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 22px; border-bottom:1px solid var(--p-border);
}
.po2-service {
  display:grid; grid-template-columns:32px 1fr auto; gap:14px; align-items:start;
  padding:18px 22px; border-bottom:1px solid var(--p-border);
}
.po2-plan-rows .po2-service:last-child { border-bottom:1px solid var(--p-border); }
.po2-service-main { min-width:0; }
.po2-service-name { display:block; font-size:15px; font-weight:700; color:var(--p-text); }
.po2-service-tag { font-weight:500; color:var(--p-muted); }
.po2-service-desc { font-size:13px; color:var(--p-muted); line-height:1.5; margin-top:2px; }
.po2-service-desc p { margin:0 0 4px; }
.po2-service-desc p:last-child { margin-bottom:0; }
.po2-service-desc.po2-clamp {
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden;
}
.po2-service-price { text-align:right; }
.po2-price { display:block; font-size:15px; font-weight:700; color:var(--p-text); }
.po2-price-suffix { font-size:12.5px; font-weight:500; color:var(--p-muted); }
.po2-price-alt { display:block; font-size:12px; color:var(--p-muted); margin-top:2px; }
.po2-remove { display:block; }

/* Recommended add-ons — visually separated from "Your plan" so it's obvious
   these are NOT included and must be added. */
.po2-recommend {
  padding:16px 22px; border-bottom:1px solid var(--p-border);
  background:var(--p-soft);
  border-top:1px dashed rgba(15,23,42,0.16);
}
.po2-recommend-head { display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.po2-recommend-label {
  font-size:11.5px; font-weight:800; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--p-muted);
}
.po2-recommend-note { font-size:12px; color:var(--p-muted); font-weight:500; }
.po2-recommend-rows .po2-service {
  padding:12px 0; border-bottom:1px dashed var(--p-border);
}
.po2-recommend-rows .po2-service:last-child { border-bottom:none; }
/* Dim the icon + price of a not-yet-added item so it doesn't read as active. */
.po2-recommend-rows .po2-icon-tile { opacity:.7; }
.po2-recommend-rows .po2-price { color:var(--p-muted); font-weight:600; }

/* Bundle / switch strip */
.po2-strip { display:flex; align-items:center; gap:10px; padding:14px 22px; }
.po2-strip svg { flex-shrink:0; }
.po2-strip-good { color:var(--p-text); }
.po2-strip-good svg { color:var(--p-accent-dark); }
.po2-strip-good span { font-size:13px; }
.po2-strip-muted { color:var(--p-muted); }
.po2-strip-muted svg { color:var(--p-muted); }
.po2-strip-muted span { font-size:13px; }
.po2-strip-muted a { font-weight:700; color:var(--p-brand-900); cursor:pointer; }
.po2-strip-wrap:empty { display:none; }

/* ── FAQ card ───────────────────────────────────────────────────────── */
.po2-faq-head { padding:16px 22px; border-bottom:1px solid var(--p-border); }
.po2-faq-item { border-bottom:1px solid var(--p-border); }
.po2-faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  width:100%; padding:14px 22px;
  background:none; border:none; text-align:left; cursor:pointer;
}
.po2-faq-q > span { font-size:13.5px; font-weight:700; color:var(--p-text); }
.po2-faq-chev { color:var(--p-muted); flex-shrink:0; transition:transform .15s ease; }
.po2-faq-q[aria-expanded="true"] .po2-faq-chev { transform:rotate(180deg); }
.po2-faq-a { padding:0 22px 14px; }
.po2-faq-a p { font-size:13px; color:var(--p-muted); line-height:1.55; }
.po2-faq-foot { padding:13px 22px; }
.po2-faq-foot a { font-size:12.5px; font-weight:700; color:var(--p-brand-900); }

/* ── Order summary (checkout) ───────────────────────────────────────── */
.po2-summary {
  border-color:transparent;
  box-shadow:0 0 0 1.5px var(--p-brand);
  padding:22px;
  position:sticky; top:16px;
}
.po2-summary-title { display:block; font-size:15px; font-weight:700; color:var(--p-text); margin-bottom:16px; }
.po2-summary-lines { display:grid; gap:10px; }
.po2-sum-row { display:flex; justify-content:space-between; gap:12px; font-size:13.5px; }
.po2-sum-label { color:var(--p-muted); }
.po2-sum-amt { color:var(--p-text); font-weight:600; }
.po2-sum-orig { color:var(--p-muted); text-decoration:line-through; font-weight:400; margin-right:4px; }
.po2-sum-discount span { color:var(--p-accent-dark); font-weight:600; }
.po2-summary-due {
  display:flex; justify-content:space-between; align-items:baseline;
  border-top:1px solid var(--p-border); margin-top:14px; padding-top:14px;
}
.po2-due-label { font-size:14px; font-weight:700; color:var(--p-text); }
.po2-due-amt { font-size:26px; font-weight:700; letter-spacing:-0.02em; color:var(--p-text); }
.po2-renewal { display:block; font-size:12px; color:var(--p-muted); margin-top:4px; }
.po2-email-field { margin-top:18px; }
.po2-pay { width:100%; margin-top:16px; }
.po2-payhint { display:block; text-align:center; font-size:12px; color:var(--p-muted); margin-top:10px; }
.po2-alert {
  margin-top:16px; padding:12px 14px; border-radius:var(--p-radius-sm);
  background:#FEE2E2; color:#B91C1C; font-size:13px;
}
.po2-trust {
  border-top:1px solid var(--p-border); margin-top:18px; padding-top:16px;
  display:grid; gap:9px;
}
.po2-trust-row { display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--p-muted); }
.po2-trust-row svg { flex-shrink:0; }
.po2-summary-foot { border-top:1px solid var(--p-border); margin-top:16px; padding-top:14px; }
.po2-summary-foot span { font-size:12.5px; color:var(--p-muted); }
.po2-summary-foot a { font-weight:700; color:var(--p-brand-900); }

/* ── Intake form ────────────────────────────────────────────────────── */
.po2-form-section { padding:20px 22px; border-bottom:1px solid var(--p-border); }
.po2-form-section .po2-kicker { margin-bottom:14px; }
.po2-help { font-size:12.5px; color:var(--p-muted); line-height:1.5; margin-bottom:2px; }
.po2-access-note { font-size:13px; color:var(--p-muted); line-height:1.5; margin-bottom:4px; }

.po2-acc-group { display:grid; gap:10px; }
.po2-acc { border:1px solid var(--p-border); border-radius:12px; overflow:hidden; }
.po2-acc-head {
  display:flex; align-items:center; gap:10px; width:100%;
  padding:13px 14px; background:none; border:none; text-align:left; cursor:pointer;
}
.po2-acc-head > span { font-size:13.5px; font-weight:700; color:var(--p-text); }
.po2-acc-chev { color:var(--p-muted); margin-left:auto; flex-shrink:0; transition:transform .15s ease; transform:rotate(180deg); }
.po2-acc-head.is-collapsed .po2-acc-chev { transform:rotate(0deg); }
.po2-acc-body { padding:2px 14px 14px; display:grid; gap:12px; }

.po2-form-foot { padding:18px 22px; }
.po2-form-actions { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.po2-save-note { font-size:13px; color:var(--p-fg-success); font-weight:600; margin-top:6px; }
.po2-secure-foot {
  display:flex; gap:8px; align-items:center; font-size:12px; color:var(--p-muted); margin-top:14px;
}
.po2-secure-foot svg { flex-shrink:0; }

/* ── Right rail (intake) ────────────────────────────────────────────── */
.po2-summary-col > .po2-card + .po2-card { margin-top:20px; }
.po2-rail-order, .po2-rail-true, .po2-rail-stuck { padding:20px 22px; }
.po2-rail-order-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.po2-chip-paid { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--p-fg-success); }
.po2-order-lines { display:grid; gap:8px; }
.po2-order-row { display:flex; justify-content:space-between; gap:12px; font-size:13px; }
.po2-order-label { color:var(--p-muted); }
.po2-order-amt { font-weight:700; color:var(--p-text); }
.po2-order-sub { font-weight:600; color:var(--p-text); }
.po2-order-row--strong .po2-order-label { font-weight:700; color:var(--p-text); }
.po2-true-list { display:grid; gap:11px; }
.po2-true-row { display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--p-text); line-height:1.5; }
.po2-true-row svg { flex-shrink:0; margin-top:2px; }
.po2-rail-stuck-title { display:block; font-size:13.5px; font-weight:700; color:var(--p-text); margin-bottom:4px; }
.po2-rail-stuck p { font-size:13px; color:var(--p-muted); line-height:1.55; }
.po2-rail-stuck a { display:inline-block; margin-top:10px; font-size:13px; font-weight:700; }

/* ── Confirmation ───────────────────────────────────────────────────── */
.po2-screen--narrow { max-width:560px; margin:0 auto; }
.po2-conf { display:grid; gap:16px; }
.po2-conf-head { display:flex; align-items:center; gap:14px; margin-bottom:4px; }
.po2-conf-icon {
  width:44px; height:44px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--p-bg-success); color:var(--p-fg-success);
  border:1px solid rgba(15,118,110,0.25);
  flex-shrink:0;
}
.po2-conf-title { display:block; font-size:23px; font-weight:700; letter-spacing:-0.02em; color:var(--p-text); }
.po2-conf-sub { display:block; font-size:13.5px; color:var(--p-muted); margin-top:2px; }
.po2-conf-order, .po2-conf-next { padding:18px 20px; }
.po2-billed-to { font-size:12px; color:var(--p-muted); }
.po2-next-list { display:grid; gap:12px; margin-top:14px; }
.po2-next-row { display:flex; align-items:flex-start; gap:12px; }
.po2-next-num {
  width:22px; height:22px; border-radius:50%;
  background:var(--p-grad); color:#fff; font-size:11px; font-weight:800;
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
}
.po2-next-copy { font-size:13.5px; color:var(--p-text); line-height:1.5; }
.po2-next-sub { color:var(--p-muted); }
.po2-conf-foot { display:flex; justify-content:center; align-items:center; gap:8px; flex-wrap:wrap; margin-top:4px; }
.po2-conf-foot span { font-size:12.5px; color:var(--p-muted); }
.po2-conf-foot a { font-weight:700; color:var(--p-brand-900); }
.po2-dot { width:3px; height:3px; border-radius:50%; background:var(--p-border); }

/* ── Toast ──────────────────────────────────────────────────────────── */
.po2-toast {
  position:fixed; left:50%; bottom:28px; transform:translateX(-50%);
  z-index:9999;
  padding:12px 18px; border-radius:var(--p-radius-sm);
  background:var(--p-text); color:#fff; font-size:13.5px; font-weight:600;
  box-shadow:0 12px 40px rgba(15,23,42,0.2);
  max-width:90vw;
  opacity:1; transition:opacity .3s ease, transform .3s ease;
}
.po2-toast.po2-toast-error { background:#B91C1C; }
.po2-toast.po2-toast-success { background:var(--p-accent-dark); }
.po2-toast.po2-hidden { opacity:0; transform:translateX(-50%) translateY(8px); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width:1023px) {
  .po2-grid { grid-template-columns:1fr; }
  /* Summary/rail first so the price stays visible above the plan/form. */
  .po2-summary-col { order:-1; }
  .po2-summary { position:static; }
}
@media (max-width:767px) {
  .po2-header { padding:14px 20px; }
  .po2-header-link { display:none; }
  .po2-container { padding:20px; }
  .po2-footer { flex-direction:column; gap:8px; align-items:flex-start; padding:16px 20px; }
  .po2-titlerow { flex-direction:column; align-items:flex-start; gap:14px; }
  .po2-stepper { gap:6px; }
  /* Collapse stepper to dots + active label only. */
  .po2-step:not(.is-active) .po2-step-label { display:none; }
  .po2-step-line { width:16px; }
  .po2-field-grid, .po2-field-grid--21 { grid-template-columns:1fr; }
  .po2-h1 { font-size:24px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion:reduce) {
  .po2 * { transition:none !important; animation:none !important; }
  .po2-btn-primary:hover { transform:none; }
}
