/* public.css — the shopfront design system (v2.5.320).

   Deliberately the inverse of the app: the product is a calm dark
   operational console, the public site is warm Nordic daylight. Shared by
   the landing page, Help and Status so the three cannot drift apart — the
   review's "different prototypes" finding applied to the public side too.
*/
  /* ── Public palette (v2.5.320) ──────────────────────────────────────────
     Deliberately the inverse of the app: the product is a calm dark
     operational console, the shopfront is warm Nordic daylight. The neutral
     is warmed toward the green accent rather than being a flat grey, and the
     accent is a deeper green than the app's #34d399, which is built for a
     dark ground and goes illegible on a pale one. */
  :root {
    --p-bg:     #fbfaf7;
    --p-panel:  #ffffff;
    --p-warm:   #f3f1ea;
    --p-line:   #e2ded2;
    --p-ink:    #14201c;
    --p-ink2:   #55605c;
    --p-ink3:   #7d8783;
    --p-acc:    #0f7a5a;
    --p-acc-sf: #e6f2ec;
    --p-dark:   #0b0e15;
    /* Text drawn ON a --p-ink fill. It MUST flip with the theme: --p-ink is
       near-black on light and near-white on dark, so a hard-coded #fff made
       the selected language pill and the selected equipment filter white-on-
       white in dark mode (v2.5.466). Never write a literal here again. */
    --p-on-ink: #ffffff;
    --p-radius: 14px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--p-bg); color: var(--p-ink);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px; line-height: 1.62;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
  h1, h2, h3 { line-height: 1.15; letter-spacing: -0.021em; text-wrap: balance; margin: 0; }
  h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); font-weight: 700; }
  h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); font-weight: 700; }
  h3 { font-size: 1.06rem; font-weight: 650; }
  p  { margin: 0; }
  a  { color: var(--p-acc); }
  .kicker {
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--p-acc);
  }
  section { padding: clamp(3.2rem, 7vw, 5.4rem) 0; }
  .lede { color: var(--p-ink2); font-size: 1.08rem; max-width: 60ch; }

  /* ── header ── */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 250, 247, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--p-line);
  }
  .hd { display: flex; align-items: center; gap: 1.4rem; height: 62px; }
  .brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 700;
           color: var(--p-ink); text-decoration: none; font-size: 1.06rem; }
  .brand img { width: 30px; height: 30px; }
  .hd nav { display: flex; gap: 1.35rem; margin-left: auto; align-items: center; }
  .hd nav a { color: var(--p-ink2); text-decoration: none; font-size: 0.93rem; font-weight: 500; }
  .hd nav a:hover { color: var(--p-ink); }
  .lang { display: flex; gap: 0.1rem; border: 1px solid var(--p-line);
          border-radius: 999px; padding: 2px; background: var(--p-panel); }
  .lang a { padding: 2px 9px; border-radius: 999px; font-size: 0.78rem;
            font-weight: 700; color: var(--p-ink3); text-decoration: none; }
  .lang a.on { background: var(--p-ink); color: var(--p-on-ink); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    padding: 0.72rem 1.3rem; border-radius: 10px; font-weight: 650;
    font-size: 0.97rem; text-decoration: none; cursor: pointer;
    border: 1px solid transparent; transition: background 0.15s, border-color 0.15s;
  }
  .btn-p { background: var(--p-acc); color: #fff; }
  .btn-p:hover { background: #0c6349; }
  .btn-s { background: var(--p-panel); border-color: var(--p-line); color: var(--p-ink); }
  .btn-s:hover { border-color: var(--p-ink3); }
  .btn-q { color: var(--p-ink2); padding: 0.5rem 0.7rem; }
  .btn:focus-visible, a:focus-visible, button:focus-visible, details > summary:focus-visible {
    outline: 2px solid var(--p-acc); outline-offset: 2px;
  }
  @media (max-width: 800px) { .hd nav .hide-sm { display: none; } }

  /* ── hero ── */
  .hero { padding: clamp(3rem, 8vw, 5.6rem) 0 clamp(2rem, 4vw, 3rem); }
  .hero h1 { max-width: 16ch; }
  .hero h1 span { color: var(--p-acc); display: block; }
  .hero .lede { margin-top: 1.15rem; font-size: 1.16rem; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.9rem; }
  .hero-note { margin-top: 1.05rem; color: var(--p-ink3); font-size: 0.9rem; }

  /* ── demo panel ──────────────────────────────────────────────────────────
     v2.5.466: this used to be a permanently dark mockup pinned to --p-dark
     with hard-coded inks (#e7eaf0 / #8b94a6 / #34d399). On the light page it
     read as a black hole in the middle of a warm daylight layout, and the
     #34d399 accent is the very colour this file's header warns "goes illegible
     on a pale ground". It now follows the theme like every other surface —
     the tokens do the work, so it is legible in both. */
  .demo {
    background: var(--p-panel); color: var(--p-ink); border: 1px solid var(--p-line);
    border-radius: var(--p-radius);
    padding: 1.5rem; box-shadow: 0 22px 50px -26px rgba(11, 14, 21, 0.18);
  }
  .demo-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .dm b { display: block; font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em;
          font-variant-numeric: tabular-nums; line-height: 1.2; }
  .dm span { font-size: 0.79rem; color: var(--p-ink3); }
  .dm.acc b { color: var(--p-acc); }
  .demo-why { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--p-line);
              font-size: 0.9rem; color: var(--p-ink2); }
  .demo-live { display: inline-flex; align-items: center; gap: 0.4rem;
               font-size: 0.72rem; color: var(--p-ink3); text-transform: uppercase;
               letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.9rem; }
  .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--p-acc); }

  /* ── cards ── */
  .cards { display: grid; gap: 1.1rem; margin-top: 2.1rem;
           grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
  .card {
    background: var(--p-panel); border: 1px solid var(--p-line);
    border-radius: var(--p-radius); padding: 1.35rem;
  }
  .card p { color: var(--p-ink2); font-size: 0.95rem; margin-top: 0.5rem; }
  .warm { background: var(--p-warm); }

  /* ── steps: numbered because setup genuinely IS a sequence ── */
  ol.steps { list-style: none; counter-reset: s; padding: 0; margin: 2.1rem 0 0;
             display: grid; gap: 1.1rem;
             grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
  ol.steps li { counter-increment: s; background: var(--p-panel);
                border: 1px solid var(--p-line); border-radius: var(--p-radius);
                padding: 1.3rem; }
  ol.steps li::before {
    content: counter(s); display: flex; align-items: center; justify-content: center;
    width: 27px; height: 27px; border-radius: 50%;
    background: var(--p-acc-sf); color: var(--p-acc);
    font-weight: 700; font-size: 0.85rem; margin-bottom: 0.7rem;
  }
  ol.steps p { color: var(--p-ink2); font-size: 0.93rem; margin-top: 0.4rem; }

  /* ── compatibility table ── */
  .filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.6rem 0 1rem; }
  .filters button {
    font: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer;
    padding: 0.4rem 0.9rem; border-radius: 999px;
    border: 1px solid var(--p-line); background: var(--p-panel); color: var(--p-ink2);
  }
  .filters button[aria-pressed="true"] { background: var(--p-ink); color: var(--p-on-ink); border-color: var(--p-ink); }
  .tbl-scroll { overflow-x: auto; border: 1px solid var(--p-line);
                border-radius: var(--p-radius); background: var(--p-panel); }
  table.compat { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 560px; }
  table.compat th, table.compat td { padding: 0.78rem 1rem; text-align: left;
                                     border-bottom: 1px solid var(--p-line); }
  table.compat th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em;
                    color: var(--p-ink3); font-weight: 700; background: var(--p-warm); }
  table.compat tr:last-child td { border-bottom: 0; }
  .pill { display: inline-block; font-size: 0.73rem; font-weight: 700; padding: 2px 9px;
          border-radius: 999px; letter-spacing: 0.02em; }
  .pill.verified { background: var(--p-acc-sf); color: var(--p-acc); }
  .pill.beta     { background: #fdf1dc; color: #96620a; }
  .pill.planned  { background: var(--p-warm); color: var(--p-ink3); }
  .yes { color: var(--p-acc); font-weight: 700; }
  .no  { color: var(--p-ink3); }
  .legend { margin-top: 1rem; font-size: 0.88rem; color: var(--p-ink2); }
  .legend div { margin-top: 0.3rem; }

  /* ── safety list ── */
  ul.safe { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.9rem;
            grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
  ul.safe li { display: flex; gap: 0.75rem; }
  ul.safe svg { width: 20px; height: 20px; flex: none; color: var(--p-acc); margin-top: 3px; }
  ul.safe p { color: var(--p-ink2); font-size: 0.93rem; margin-top: 0.2rem; }

  /* ── pilot ── */
  .pilot { background: var(--p-warm); border: 1px solid var(--p-line);
           border-radius: var(--p-radius); padding: clamp(1.6rem, 3.5vw, 2.6rem); }
  .pilot ul { margin: 1.2rem 0 1.6rem; padding-left: 1.1rem; color: var(--p-ink2); }
  .pilot li { margin: 0.35rem 0; }
  .pilot .after { margin-top: 1.1rem; font-size: 0.9rem; color: var(--p-ink3); max-width: 62ch; }

  /* ── faq ── */
  details.faq { border-bottom: 1px solid var(--p-line); }
  details.faq summary { cursor: pointer; list-style: none; padding: 1.05rem 0;
                        font-weight: 650; display: flex; justify-content: space-between;
                        gap: 1rem; align-items: center; }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::after { content: "+"; color: var(--p-ink3); font-size: 1.3rem;
                               font-weight: 400; line-height: 1; }
  details.faq[open] summary::after { content: "–"; }
  details.faq p { padding: 0 0 1.15rem; color: var(--p-ink2); max-width: 68ch; }

  /* ── footer ── */
  footer { border-top: 1px solid var(--p-line); background: var(--p-warm);
           padding: 2.4rem 0; margin-top: 1rem; font-size: 0.9rem; color: var(--p-ink2); }
  .ft { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; align-items: center; }
  footer a { color: var(--p-ink2); text-decoration: none; }
  footer a:hover { color: var(--p-ink); text-decoration: underline; }
  .ft-legal { width: 100%; color: var(--p-ink3); font-size: 0.82rem; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
  }

/* ── Auth pages (v2.5.326) ───────────────────────────────────────────────
   Sign-in used to be a second marketing splash in a different visual world —
   cyan glassmorphism over its own hero, with the login form in a modal on top.
   Now "/" carries the marketing and this is simply the door: the same warm
   surfaces, the same type, one job. */
.auth-wrap {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 7vw, 4.5rem) 22px 4rem;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--p-panel);
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: 0 18px 44px -34px rgba(20, 32, 28, 0.5);
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.auth-card .lede { font-size: 0.95rem; margin-bottom: 1.5rem; }
.fg { margin-bottom: 0.95rem; }
.fg label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--p-ink2);
  margin-bottom: 0.32rem;
}
.fg input {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  padding: 0.62rem 0.75rem;
  border-radius: 9px;
  border: 1px solid var(--p-line);
  background: var(--p-bg);
  color: var(--p-ink);
}
.fg input:focus {
  outline: none;
  border-color: var(--p-acc);
  box-shadow: 0 0 0 3px var(--p-acc-sf);
}
.auth-submit { width: 100%; margin-top: 0.35rem; }
.auth-alt {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--p-line);
  font-size: 0.9rem;
  color: var(--p-ink2);
  text-align: center;
}
.auth-alt button {
  font: inherit;
  font-weight: 650;
  color: var(--p-acc);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.auth-alt button:hover { text-decoration: underline; }
.auth-msg {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 1.15rem;
  line-height: 1.45;
}
.auth-msg.err  { background: #fbeae7; color: #a3301f; }
.auth-msg.ok   { background: var(--p-acc-sf); color: var(--p-acc); }
.auth-msg.warn { background: #fdf1dc; color: #8a5a08; }
/* The plan offer on the signup panel (v2.5.489). Tinted, not boxed-in-a-box:
   it is context for the form below it, not a competing card. */
.auth-offer {
  background: var(--p-acc-sf);
  border: 1px solid var(--p-edge);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0 0 1.3rem;
  font-size: 0.855rem;
  line-height: 1.55;
  color: var(--p-ink2);
}
.auth-offer p { margin: 0 0 0.55rem; }
.auth-offer p:last-child { margin-bottom: 0; }
.auth-offer strong { color: var(--p-ink); }
.auth-offer-fine { font-size: 0.79rem; opacity: 0.75; }

.auth-consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--p-ink2);
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  line-height: 1.5;
}
.auth-consent input { margin-top: 0.25rem; accent-color: var(--p-acc); flex: none; }
.auth-foot {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--p-ink3);
}
.auth-foot a { color: var(--p-ink3); }


/* ── Dark theme (v2.5.327) ───────────────────────────────────────────────
   Designed, not inverted. A flipped warm off-white becomes a muddy brown, so
   the dark ground is the app's own near-black — which also means a visitor
   who picks dark on the public site walks into a signed-in app that already
   matches. The accent moves the other way: #0f7a5a is built for a pale
   ground and disappears on a dark one, so dark uses the app's #34d399.

   Precedence follows the standard: the media query carries the OS
   preference, and data-theme on <html> overrides it in BOTH directions so an
   explicit choice always wins. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --p-bg:     #0b0e15;
    --p-panel:  #131824;
    --p-warm:   #10141e;
    --p-line:   #232b3b;
    --p-ink:    #e7eaf0;
    --p-ink2:   #a2acbd;
    --p-ink3:   #79839a;
    --p-acc:    #34d399;
    --p-acc-sf: rgba(52, 211, 153, 0.13);
    --p-dark:   #060910;
    --p-on-ink: #0b0e15;
  }
}
:root[data-theme="dark"] {
  --p-bg:     #0b0e15;
  --p-panel:  #131824;
  --p-warm:   #10141e;
  --p-line:   #232b3b;
  --p-ink:    #e7eaf0;
  --p-ink2:   #a2acbd;
  --p-ink3:   #79839a;
  --p-acc:    #34d399;
  --p-acc-sf: rgba(52, 211, 153, 0.13);
  --p-dark:   #060910;
  --p-on-ink: #0b0e15;
}

/* Surfaces that were hand-tinted for the light ground need their dark twin. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) header { background: rgba(11, 14, 21, 0.9); }
  :root:not([data-theme="light"]) .btn-p { color: #06281c; }
}
:root[data-theme="dark"] header { background: rgba(11, 14, 21, 0.9); }
:root[data-theme="dark"] .btn-p { color: #06281c; }

/* The demo panel is already a dark mockup — on a dark page it needs an edge
   instead of a shadow, or it dissolves into the background. */
:root[data-theme="dark"] .demo,
:root[data-theme="dark"] .banner.ok,
:root[data-theme="dark"] .banner.bad { box-shadow: none; }
:root[data-theme="dark"] .demo { border: 1px solid var(--p-line); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .demo { border: 1px solid var(--p-line); box-shadow: none; }
}

/* Status/tier colours: readable on both grounds. */
:root[data-theme="dark"] .pill.beta     { background: rgba(240, 168, 0, 0.16); color: #f0b429; }
:root[data-theme="dark"] .auth-msg.err  { background: rgba(229, 84, 75, 0.14); color: #f4a49c; }
:root[data-theme="dark"] .auth-msg.warn { background: rgba(240, 168, 0, 0.14); color: #f0b429; }
:root[data-theme="dark"] .banner.bad    { background: rgba(229, 84, 75, 0.14); color: #f4a49c; }
:root[data-theme="dark"] .st-warn       { background: #f0b429; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .pill.beta     { background: rgba(240, 168, 0, 0.16); color: #f0b429; }
  :root:not([data-theme="light"]) .auth-msg.err  { background: rgba(229, 84, 75, 0.14); color: #f4a49c; }
  :root:not([data-theme="light"]) .auth-msg.warn { background: rgba(240, 168, 0, 0.14); color: #f0b429; }
  :root:not([data-theme="light"]) .banner.bad    { background: rgba(229, 84, 75, 0.14); color: #f4a49c; }
}

/* ── The switch: one quiet icon button ────────────────────────────────── */
.hbtheme { display: inline-flex; }
.hbtheme-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0; cursor: pointer;
  border: 1px solid var(--p-line); border-radius: 50%;
  background: var(--p-panel); color: var(--p-ink2);
  transition: color .15s, border-color .15s, background .15s;
}
.hbtheme-btn svg { width: 17px; height: 17px; display: block; }
.hbtheme-btn:hover { color: var(--p-ink); border-color: var(--p-ink3); }
.hbtheme-btn:focus-visible { outline: 2px solid var(--p-acc); outline-offset: 2px; }
/* Following the device is the resting state, so it stays visually quiet. */
.hbtheme-btn[data-mode="auto"] { opacity: .75; }
.hbtheme-btn[data-mode="auto"]:hover { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hbtheme-btn { transition: none; } }

/* ── pricing (v2.5.467) ───────────────────────────────────────────────────
   Two plans, and the membership one is the point — it carries the claim the
   whole product rests on (the hub costs nothing). Tokens only: this section
   has to survive a theme flip like everything else. */
.plans { display: grid; gap: 1.1rem; margin-top: 2rem;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.plan { background: var(--p-panel); border: 1px solid var(--p-line);
        border-radius: var(--p-radius); padding: 1.5rem; }
.plan.feat { border-color: var(--p-acc); box-shadow: 0 0 0 1px var(--p-acc); }
.plan h3 { font-size: 1rem; color: var(--p-ink2); font-weight: 650; }
.plan-price { font-size: 2.05rem; font-weight: 700; letter-spacing: -0.025em;
              margin-top: 0.35rem; font-variant-numeric: tabular-nums; }
.plan.feat .plan-price { color: var(--p-acc); }
.plan-note { color: var(--p-ink3); font-size: 0.87rem; margin-top: 0.15rem; }
.plan ul { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.6rem; }
.plan li { position: relative; padding-left: 1.5rem; font-size: 0.94rem;
           color: var(--p-ink2); line-height: 1.5; }
.plan li::before { content: "✓"; position: absolute; left: 0; top: 0;
                   color: var(--p-acc); font-weight: 700; }
.plan-offer { margin-top: 1.6rem; padding: 0.9rem 1.1rem; border-radius: 10px;
              background: var(--p-acc-sf); color: var(--p-ink);
              font-size: 0.95rem; font-weight: 550; }
.plan-fine { margin-top: 1rem; color: var(--p-ink3); font-size: 0.85rem; max-width: 62ch; }

/* ── Plan comparison table (v2.5.492) ─────────────────────────────────────
   The two plan cards say what each plan offers; this answers the question a
   visitor actually has, which is what changes if they pay. Scrolls inside its
   own container so a narrow phone never scrolls the whole page sideways. */
.cmp-wrap { overflow-x: auto; margin-top: 1.6rem; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%;
  min-width: 30rem;
  text-align: left;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}
.cmp th, .cmp td {
  padding: 0.62rem 0.8rem;
  border-bottom: 1px solid var(--p-line);
  vertical-align: middle;
}
.cmp thead th {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--p-ink);
  border-bottom: 2px solid var(--p-line);
  white-space: nowrap;
}
.cmp tbody th {
  font-weight: 500;
  color: var(--p-ink2);
  width: 46%;
  text-align: left;
}
.cmp thead th:not(:first-child), .cmp td { text-align: center; }
.cmp td { color: var(--p-ink); white-space: nowrap; }
/* The membership column is the recommendation, so it is tinted end to end. */
.cmp th.feat, .cmp td.feat { background: var(--p-acc-sf); }
.cmp thead th.feat { border-bottom-color: var(--p-acc); }
.cmp .yes { color: var(--p-acc); font-weight: 700; }
.cmp .no  { color: var(--p-ink2); opacity: 0.5; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }

/* "Get started" sits beside "Log in"; on a phone the nav is tight, so the
   secondary links hide (.hide-sm) and these two remain. */
.btn-join { margin-left: 0.15rem; }

/* Plan choice at sign-up (v2.5.493): two flat option cards, radio semantics. */
.plan-pick { display: grid; gap: 0.55rem; }
.plan-opt {
  display: flex; gap: 0.6rem; align-items: flex-start;
  border: 1px solid var(--p-line); border-radius: 10px;
  padding: 0.65rem 0.8rem; cursor: pointer;
}
.plan-opt:has(input:checked) { border-color: var(--p-acc); background: var(--p-acc-sf); }
.plan-opt input { margin-top: 0.3rem; accent-color: var(--p-acc); flex: none; }
.plan-opt-body { display: block; font-size: 0.85rem; line-height: 1.45; }
.plan-opt-body strong { display: block; color: var(--p-ink); }
.plan-opt-body small { color: var(--p-ink2); font-size: 0.78rem; }
