/* Open Sans (variable, SIL OFL), self-hosted so no visitor data goes to Google Fonts. latin-ext covers Romanian and other diacritics. */
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 300 800; font-display: swap; src: url(fonts/open-sans-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 300 800; font-display: swap; src: url(fonts/open-sans-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
:root {
  --font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-h1: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --bg: #f7f8fc; --surface: #fff; --text: #0f1224; --muted: #626883; --line: #e6e8f2;
  --slot-off: #d3d6e6;
  --accent: #637df1;
  --accent-2: #8b5cf6;
  --ok: #10b981; --warn: #f59e0b; --bad: #ef4444;
  --ok-bg: #d1fae5; --warn-bg: #fef3c7; --bad-bg: #fee2e2;
  --shadow: 0 1px 2px rgba(15,18,36,.05), 0 8px 24px rgba(15,18,36,.06);
  --radius: 16px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b0d1a; --surface: #131628; --text: #eceffd; --muted: #9096b3; --line: #23274a;
    --slot-off: var(--line);
    --ok-bg: #0d3a2c; --warn-bg: #45320a; --bad-bg: #4a1518;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0b0d1a; --surface: #131628; --text: #eceffd; --muted: #9096b3; --line: #23274a;
  --slot-off: var(--line);
  --ok-bg: #0d3a2c; --warn-bg: #45320a; --bad-bg: #4a1518;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { position: relative; margin: 0; background: var(--bg); color: var(--text); font: 16px/1.55 var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-family: var(--font-h1); }
.muted { color: var(--muted); } .small { font-size: .85rem; }

/* Buttons */
.btn[hidden] { display: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 12px; padding: 12px 22px; font: 600 .95rem var(--font); cursor: pointer; transition: transform .1s, box-shadow .2s, background .2s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 6px 18px rgba(99,102,241,.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(99,102,241,.45); }
.btn-primary:disabled { opacity: .6; cursor: progress; transform: none; }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); padding: 9px 16px; }
.btn-ghost:hover { border-color: var(--accent); }

/* Hero */
.hero { text-align: center; padding: 64px 24px 40px; max-width: 820px; margin: 0 auto; position: relative; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 99px; background: var(--surface); border: 1px solid var(--line); font-size: .85rem; font-weight: 500; color: var(--muted); }
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px var(--ok-bg); }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; margin: 8px 0 16px; }
.grad { background: linear-gradient(135deg, var(--accent), #ec4899); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto 32px; }

.scan-box { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 8px 8px 8px 18px; box-shadow: var(--shadow); max-width: 660px; margin: 0 auto; transition: border-color .2s, box-shadow .2s; }
.scan-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(99,102,241,.15), var(--shadow); }
.scan-box .ico { color: var(--muted); flex: none; }
.scan-box input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--text); font: 500 1.05rem var(--font); padding: 12px 0; }
.scan-box .btn { padding: 14px 24px; }
.form-error { color: var(--bad); margin: 12px 0 0; font-size: .9rem; }
.hint { color: var(--muted); font-size: .85rem; margin-top: 16px; }
@media (max-width: 520px) { .scan-box { flex-wrap: wrap; padding: 12px; } .scan-box input { flex: 1 1 calc(100% - 40px); } .scan-box .btn { width: 100%; } }

/* Results */
.results { max-width: 1120px; margin: 0 auto; padding: 24px; animation: rise .5s ease both; scroll-margin-top: 2rem; }   /* a little air above the report when scrolled to */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
.results-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.results-head h2 { font-size: 1.8rem; word-break: break-all; }
.grid { display: grid; grid-template-columns: 280px 1fr 320px; gap: 20px; align-items: stretch; }
@media (max-width: 1000px) { .grid { grid-template-columns: 1fr 1fr; } .shot { grid-column: 1 / -1; order: 3; } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; font-weight: 600; }

/* Verdict gauge */
.verdict { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.gauge { position: relative; width: 160px; height: 160px; }
.gauge svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge circle { fill: none; stroke-width: 10; }
.g-bg { stroke: var(--line); }
.g-fg { stroke: var(--muted); stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1s ease, stroke .4s; }
#v-text { line-height: 1.5; min-height: 3em; }   /* room for two lines, so the card does not resize when the verdict text changes */
.g-txt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.g-txt b { font-size: 2.6rem; line-height: 1; font-weight: 800; color: var(--muted); }   /* same color as the ring: grey until there is a verdict */
.g-txt span { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 4px; }
.verdict.ok .g-fg { stroke: var(--ok); } .verdict.ok .g-txt span, .verdict.ok .g-txt b { color: var(--ok); }
.verdict.warn .g-fg { stroke: var(--warn); } .verdict.warn .g-txt span, .verdict.warn .g-txt b { color: var(--warn); }
.verdict.bad .g-fg { stroke: var(--bad); } .verdict.bad .g-txt span, .verdict.bad .g-txt b { color: var(--bad); }
.progress { width: 100%; height: 6px; border-radius: 9px; background: var(--line); overflow: hidden; }
.progress div { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .5s ease; }

/* Browser mock / screenshot */
.browser { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.browser .bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: var(--bg); border-bottom: 1px solid var(--line); }
.browser .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.browser .bar span { margin-left: 10px; flex: 1; font: 500 .75rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: var(--muted); background: var(--surface); padding: 3px 10px; border-radius: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.view { aspect-ratio: 16 / 10; background: var(--bg); position: relative; }
.view img, .view svg { width: 100%; height: 100%; object-fit: cover; display: block; animation: rise .5s ease; }

/* Info list */
.info dl { margin: 0; }
.info dl div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.info dl div[hidden] { display: none; }
.info dl div:last-child { border: 0; }
.info dt { color: var(--muted); }
.info dd { margin: 0; font-weight: 600; text-align: right; }
.sk, .skeleton { display: inline-block; width: 70px; height: 14px; border-radius: 6px; vertical-align: middle; }
.skeleton { width: 100%; height: 100%; border-radius: 0; }
.sk, .skeleton { background: linear-gradient(90deg, var(--line) 25%, var(--bg) 50%, var(--line) 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Checks */
.section-title { margin: 36px 0 16px; font-size: 1.3rem; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 800px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: border-color .3s; }
.check[data-demo="1"] { opacity: .5; }
.check .status { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--bg); }
.check h4 { font-size: 1.02rem; margin-bottom: 2px; }
.check .summary { margin: 10px 0 0; font-weight: 500; font-size: .93rem; }
.check .summary:empty { display: none; }
.items { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; font-size: .86rem; color: var(--muted); }
.items li { display: flex; gap: 8px; align-items: flex-start; }
.items li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; background: var(--c); }
.li-ok { --c: var(--ok); } .li-warn { --c: var(--warn); } .li-bad { --c: var(--bad); } .li-unknown, .li-na { --c: var(--muted); }
.spin { width: 18px; height: 18px; border: 2.5px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.is-wait { opacity: .7; }
.is-ok .status { background: var(--ok-bg); color: var(--ok); }
.is-warn .status { background: var(--warn-bg); color: var(--warn); }
.is-bad .status { background: var(--bad-bg); color: var(--bad); }
.is-na .status, .is-unknown .status { background: var(--bg); color: var(--muted); }   /* not applicable / could not tell: neutral, not a finding */
.is-ok, .is-warn, .is-bad, .is-na, .is-unknown { animation: rise .4s ease; }
.is-warn { border-color: color-mix(in srgb, var(--warn) 45%, var(--line)); }
.is-bad { border-color: color-mix(in srgb, var(--bad) 45%, var(--line)); }

/* Marketing sections */
.section { max-width: 1120px; margin: 0 auto; padding: 72px 24px 0; }
.section h2 { font-size: 2rem; text-align: center; margin-bottom: 36px; }
.steps, .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .steps, .features { grid-template-columns: 1fr; } }
.steps > div b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; margin-bottom: 14px; }
.steps h4, .features h4 { font-size: 1.1rem; margin-bottom: 6px; }
.steps p, .features p { margin: 0; color: var(--muted); font-size: .95rem; }
.features em { font-style: normal; font-size: .75rem; color: var(--accent); font-weight: 600; }
.footer { max-width: 1120px; margin: 80px auto 0; padding: 28px 24px 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px 20px; }
.footer-love { text-align: center; }
.footer-pay { justify-self: end; display: flex; }
.footer-pay img { display: block; height: 22px; width: auto; }
.footer-pay .np-dark, [data-theme="dark"] .footer-pay .np-light { display: none; }
[data-theme="dark"] .footer-pay .np-dark { display: block; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; }
.footer .footer-brand { font-size: 1rem; color: var(--text); gap: 8px; }
.footer-about { max-width: 420px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; min-width: 240px; }
.footer-links h4 { margin: 0 0 4px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
.footer a { color: var(--muted); } .footer a:hover { color: var(--accent); }
.footer-note { margin: 12px 0 0; font-size: .8rem; line-height: 1.6; opacity: .85; }
.footer-row { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 760px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; } .footer-about { display: grid; justify-items: center; } .footer-links { align-items: center; min-width: 0; }
  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; } .footer-pay { justify-self: center; }
}

/* Nav */
.nav { max-width: 1120px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 24px; position: relative; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); font-size: 18pt; font-family: var(--font-h1); letter-spacing: -1px; }
.nav-panel { display: flex; align-items: center; gap: 22px; margin-left: auto; order: 2; }
.nav-panel > a:not(.btn) { color: var(--muted); font-weight: 500; font-size: .95rem; white-space: nowrap; }
.nav-panel .btn { white-space: nowrap; }
.nav-panel > a:not(.btn):hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; order: 3; }
.btn-sm { padding: 9px 16px; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; padding: 0; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s, opacity .2s, top .25s; }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
/* Hamburger menu: on phones, and wherever the full menu does not fit on one line (longer languages,
   logged in); app.js measures that and sets .compact on the nav. */
@media (max-width: 820px) {
  .nav { gap: 12px; } .nav-right { margin-left: auto; order: 2; }
  .burger { display: block; }
  .nav-panel { display: none; position: absolute; left: 16px; right: 16px; top: 100%; z-index: 20; order: 3; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
  .nav-panel.open { display: flex; animation: rise .2s ease; }
  .nav-panel > a:not(.btn) { padding: 12px; border-radius: 10px; } .nav-panel > a:not(.btn):hover { background: var(--bg); }
  .nav-panel .btn { width: 100%; margin-top: 4px; }
}
.nav.compact { gap: 12px; } .nav.compact .nav-right { margin-left: auto; order: 2; }
.nav.compact .burger { display: block; }
.nav.compact .nav-panel { display: none; position: absolute; left: 16px; right: 16px; top: 100%; z-index: 20; order: 3; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.nav.compact .nav-panel.open { display: flex; animation: rise .2s ease; }
.nav.compact .nav-panel > a:not(.btn) { padding: 12px; border-radius: 10px; } .nav.compact .nav-panel > a:not(.btn):hover { background: var(--bg); }
.nav.compact .nav-panel .btn { width: 100%; margin-top: 4px; }

/* Language dropdown */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font: 600 .85rem var(--font); cursor: pointer; }
.lang-btn:hover { border-color: var(--accent); }
.flag { border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); flex: none; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); z-index: 30; min-width: 170px; margin: 0; padding: 6px; list-style: none; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; color: var(--text); font-weight: 500; font-size: .92rem; }
.lang-menu a:hover, .lang-menu a[aria-current] { background: var(--bg); }
.lang-menu a[aria-current] { font-weight: 700; }

/* Extra buttons */
.btn-danger { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; box-shadow: 0 6px 18px rgba(239,68,68,.32); }
.btn-danger:hover { transform: translateY(-1px); }
.btn-ghost.btn { padding: 12px 22px; }
.nav-panel .btn-ghost { padding: 9px 16px; }
.link { background: none; border: 0; color: var(--accent); font: 500 .9rem var(--font); cursor: pointer; padding: 14px 0 0; }
.link:hover { text-decoration: underline; }

/* Next steps */
.next { margin-top: 12px; animation: rise .5s ease both; }
.next-sub { margin: -8px 0 20px; }
.next-ok { padding: 14px 18px; border-radius: 12px; background: var(--ok-bg); color: var(--ok); font-weight: 600; margin: 0 0 20px; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: st; }
.step { counter-increment: st; position: relative; padding: 24px 24px 24px 76px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.step::before { content: counter(st); position: absolute; left: 24px; top: 24px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.step-danger { border-color: color-mix(in srgb, var(--bad) 50%, var(--line)); }
.step-danger::before { background: var(--bad); }
.step[hidden] { display: none; }
.step-head h4 { font-size: 1.2rem; margin-bottom: 4px; } .step-head p { margin: 0 0 18px; max-width: 680px; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px; }
.plan { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); }
.plan-hot { max-width: 460px; border-color: color-mix(in srgb, var(--bad) 40%, var(--line)); }
.plan h5 { margin: 0; font-size: 1rem; }
.plan .btn { margin-top: auto; align-self: stretch; }
.plan .tick { margin: 8px 0 18px; }
.plans-3 { grid-template-columns: repeat(3, 1fr); margin: 24px 0 16px; }
.plans-3 .plan { background: var(--surface); padding: 24px; }
.plan-pick { border-color: var(--accent); box-shadow: var(--shadow); }
.plan-current { border-color: var(--ok); }
.badge.badge-accent { background: var(--accent); }
.btn.is-static { pointer-events: none; opacity: .7; }
@media (max-width: 900px) { .plans-3 { grid-template-columns: 1fr; } }
.badge { position: absolute; right: 16px; top: -11px; background: var(--bad); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .04em; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0; }
.price b { font-size: 2.2rem; line-height: 1; letter-spacing: -.03em; } .price b.quote { font-size: 1.4rem; }
.price s { color: var(--muted); font-size: 1.2rem; } .price span { color: var(--muted); font-size: .85rem; font-weight: 500; }
.tick { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .92rem; }
.tick li { position: relative; padding-left: 26px; }
.tick li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ok-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.2 4.8-4.9' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
.tick.diy li::before { background-color: var(--warn-bg); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.5v4.5M8 11.5h.01' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.tick li[hidden] { display: none; }
.mon { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mon[hidden] { display: none; }   /* .mon's own display:flex would otherwise override the hidden attribute */
.mon-ok { display: inline-flex; align-items: center; gap: 8px; color: var(--ok); font-weight: 600; }
.mon-err { color: var(--bad); }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } .step { padding: 70px 18px 20px; } .step::before { left: 18px; top: 18px; } }

/* Modal */
.modal { border: 0; padding: 32px; width: min(440px, calc(100vw - 32px)); border-radius: 20px; background: var(--surface); color: var(--text); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.modal::backdrop { background: rgba(11,13,26,.55); backdrop-filter: blur(3px); }
.modal[open] { animation: rise .25s ease; }
.modal h2 { font-size: 1.5rem; margin-bottom: 6px; } .modal p { margin: 0 0 18px; }
.modal-x { position: absolute; right: 14px; top: 12px; width: 36px; height: 36px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-size: 1.6rem; cursor: pointer; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; }
.modal-x:hover { background: var(--bg); color: var(--text); }
.stack { display: grid; gap: 14px; }
.stack label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; }
.stack input { font: 500 1rem var(--font); padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--text); outline: 0; }
.stack input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.stack input[readonly] { color: var(--muted); }
.stack .form-error { margin: 0; } .stack p.small { margin: 0; }
.stack label[hidden] { display: none; }
.done { text-align: center; } .done .btn { margin-top: 4px; }
.done-ico { width: 60px; height: 60px; margin: 4px auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); color: var(--accent); }
.done-ico.ok { background: var(--ok-bg); color: var(--ok); }

/* Confirm page */
.confirm { padding-top: 72px; } .confirm h1 { font-size: 2.4rem; margin: 8px 0 12px; } .confirm .lead { margin-bottom: 24px; }
.slots { display: grid; gap: 8px; justify-items: center; margin-bottom: 28px; }
.slot-bar { display: flex; gap: 6px; } .slot-bar i { width: 44px; height: 8px; border-radius: 6px; background: linear-gradient(to right, var(--ok) calc(var(--f, 0) * 100%), var(--slot-off) 0); }   /* --f: how full, 0..1 (see slot_bar()) */

/* Checkout and contact pages */
.page { max-width: 1120px; margin: 0 auto; padding: 32px 24px 0; }
.page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.page-sub { margin: 8px 0 28px; }
.howto-toc { margin-bottom: 20px; } .howto-toc ol { margin: 8px 0 0; padding-left: 20px; columns: 2 220px; } .howto-toc li { margin: 4px 0; }
.howto-sec { margin-bottom: 20px; scroll-margin-top: 16px; } .howto-sec h2 { font-size: 1.3rem; margin: 0 0 10px; }
.howto-sec p, .howto-sec ul { line-height: 1.6; } .howto-sec ul { padding-left: 20px; }
.howto code { font: .88em ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: var(--bg); padding: 1px 5px; border-radius: 5px; }
.snippet { margin: 12px 0; } .snippet figcaption { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.snippet pre { margin: 0; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; overflow-x: auto; }
.snippet pre code { background: none; padding: 0; font-size: .85rem; line-height: 1.5; white-space: pre; }
.tick.diy a { white-space: nowrap; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; align-items: start; }
aside.summary { position: sticky; top: 16px; }
aside.summary h4 { font-size: 1.15rem; margin-bottom: 2px; }
aside.summary .tick { margin: 14px 0 18px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } aside.summary { position: static; order: -1; } }
.form { display: grid; gap: 22px; padding: 28px; }
.form-narrow { max-width: 420px; margin: 24px auto 60px; }
.form-narrow h1 { font-size: 1.5rem; margin-bottom: 6px; }
.form-narrow .link { display: inline-block; text-align: center; justify-self: center; }
.form fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 14px; min-width: 0; }
.form fieldset[hidden] { display: none; }
.form legend { padding: 0; margin-bottom: 12px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.field { display: grid; gap: 6px; min-width: 0; }
.field > label { font-size: .85rem; font-weight: 600; }
.field input:not([type=checkbox]):not([type=radio]), .field select, .field textarea { width: 100%; font: 500 1rem var(--font); padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--text); outline: 0; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.field .bad { border-color: var(--bad); }
.ferr { color: var(--bad); font-size: .8rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row3 { display: grid; grid-template-columns: 140px 1fr; gap: 14px; }
@media (max-width: 560px) { .row2, .row3 { grid-template-columns: 1fr; } .form { padding: 20px; } }
.inline { display: flex; gap: 10px; } .inline input { flex: 1; min-width: 0; }
.inline .btn { flex: none; padding: 0 16px; white-space: nowrap; }
.vat-status { margin: 4px 0 0; padding: 8px 12px; border-radius: 10px; }
.vat-status.ok { background: var(--ok-bg); color: var(--ok); } .vat-status.bad { background: var(--bad-bg); color: var(--bad); }
.vat-status.warn { background: var(--warn-bg); color: var(--warn); } .vat-status.wait { background: var(--bg); color: var(--muted); }
.vat-status[hidden] { display: none; }

.seg { display: inline-grid; grid-auto-flow: column; gap: 4px; padding: 4px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); justify-self: start; }
.seg label { cursor: pointer; } .seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; padding: 9px 18px; border-radius: 9px; font-weight: 600; font-size: .92rem; color: var(--muted); }
.seg input:checked + span { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.seg input:focus-visible + span { outline: 2px solid var(--accent); }
.seg-sm span { padding: 7px 14px; font-size: .85rem; }

.pay { display: grid; gap: 10px; }
.pay label { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; background: var(--bg); }
.pay label:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg)); }
.pay input { margin-top: 4px; accent-color: var(--accent); }
.pay span { display: grid; gap: 2px; } .pay small { color: var(--muted); font-size: .82rem; }

.chip { cursor: pointer; } .chip input { position: absolute; opacity: 0; }
.chip span { display: inline-block; padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; font-size: .9rem; font-weight: 500; background: var(--bg); }
.chip input:checked + span { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--bg)); color: var(--accent); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); }
.checks-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.field.check label { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; font-size: .9rem; }
.field.check input { margin-top: 3px; accent-color: var(--accent); }
.btn-lg { padding: 16px 24px; font-size: 1.05rem; }
.form > .btn { width: 100%; } .form > .form-error { margin: 0; }
.done-box { padding: 18px; border-radius: 14px; background: var(--ok-bg); text-align: center; }
.done-box b { display: block; color: var(--ok); font-size: 1.1rem; } .done-box p { margin: 6px 0 0; color: var(--text); }
.done-box[hidden] { display: none; }

.totals { margin: 0 0 8px; } .totals div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.totals dt { color: var(--muted); } .totals dd { margin: 0; font-weight: 600; } .totals s { color: var(--muted); font-weight: 500; }
.totals .grand { border: 0; padding-top: 14px; } .totals .grand dt { color: var(--text); font-weight: 700; } .totals .grand dd { font-size: 1.5rem; letter-spacing: -.02em; }
.mini-steps { margin: 0 0 18px; padding-left: 20px; display: grid; gap: 8px; font-size: .95rem; }
.contact-lines { font-weight: 600; line-height: 1.8; margin: 0; }
.contact-lines .wa { display: inline-flex; align-items: center; gap: 6px; color: #1faa55; }

.link-btn { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; border: 0; background: none; color: var(--accent); font: 500 .95rem var(--font); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.link-btn:hover { text-decoration-thickness: 2px; }
.info dd { white-space: nowrap; }
.tls-ok, .tls-bad { display: inline-flex; vertical-align: middle; margin-right: 6px; }
.tls-ok { color: var(--ok); }
.tls-bad { color: var(--bad); }
.tls-ok svg, .tls-bad svg { width: 16px; height: 16px; }

/* Soft glow behind the hero: page wide and faded inside its own box, so it has no visible edges. */
body::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 600px; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 620px 300px at 30% 200px, rgba(99,102,241,.18), transparent),
              radial-gradient(ellipse 520px 280px at 72% 230px, rgba(139,92,246,.16), transparent); }

/* Theme toggle */
.theme-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); cursor: pointer; }
.theme-btn:hover { border-color: var(--accent); }
.theme-btn .ic-sun, :root[data-theme="dark"] .theme-btn .ic-moon { display: none; }
:root[data-theme="dark"] .theme-btn .ic-sun { display: block; }
.theme-label { display: none; font: 500 .95rem var(--font); }
@media (max-width: 820px) { .theme-btn { width: 100%; justify-content: flex-start; padding: 0 12px; height: 46px; border-color: transparent; background: none; } .theme-btn:hover { background: var(--bg); } .theme-label { display: inline; } }

/* Site info: hosting env */
.info dd .env { color: var(--muted); font-weight: 500; }
.info dd { white-space: normal; }
.info dd[data-k="tls"] { white-space: nowrap; }
.report-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

/* Account dashboard */
.acct-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.acct-head h1 { margin-bottom: 6px; } .acct-head p { margin: 0; max-width: 620px; }
.acct-add { display: flex; align-items: center; gap: 18px; }
.slots-mini { display: grid; gap: 6px; justify-items: end; }
.slots-mini .slot-bar i { width: 26px; }
.notice { margin: 0 0 20px; padding: 12px 16px; border-radius: 12px; background: var(--warn-bg); font-size: .92rem; }
.notice[hidden], .empty[hidden] { display: none; }
.sites { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr)); gap: 18px; }
.site { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: opacity .2s; }
.site.busy { opacity: .6; }
.site-shot { display: block; } .site-shot .browser { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.site-body { padding: 16px 18px 18px; display: grid; gap: 12px; flex: 1; }
.site-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.site-top h3 { font-size: 1.05rem; word-break: break-all; }
.state { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 99px; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.state i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.state.ok { background: var(--ok-bg); color: var(--ok); } .state.warn { background: var(--warn-bg); color: var(--warn); } .state.bad { background: var(--bad-bg); color: var(--bad); }
.site-meta { margin: 0; font-size: .88rem; } .site-meta div { display: flex; justify-content: space-between; gap: 10px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.site-meta div:last-child { border: 0; } .site-meta dt { color: var(--muted); } .site-meta dd { margin: 0; font-weight: 600; text-align: right; }
.site-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid transparent; border-radius: 10px; background: none; color: var(--muted); cursor: pointer; flex: none; }
.icon-btn:hover { background: var(--bg); border-color: var(--line); }
.icon-btn.danger { color: var(--bad); }
.icon-btn.danger:hover { background: var(--bad-bg); border-color: var(--bad); }
.site-actions .icon-btn { margin-left: auto; }
.side { display: grid; gap: 20px; }
.view-toggle { display: flex; justify-content: flex-end; gap: 4px; margin: -8px 0 10px; }
.view-toggle .icon-btn[aria-pressed="true"] { color: var(--accent); background: var(--surface); border-color: var(--line); }
/* List layout: a plain table for accounts with many sites. One box, thin lines between the rows,
   a numbered first column; every row (and the header) uses the same column grid. */
.sites-head { display: none; }
.site-actions .act-ico { display: none; }   /* cards: text buttons */
.sites.as-list { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; counter-reset: site; }
.sites.as-list .sites-head, .sites.as-list .site {
  display: grid; grid-template-columns: 1.6rem minmax(0, 1fr) 4.8rem 5.6rem 4rem 110px; align-items: center; gap: 12px; padding: 8px 16px;
}
.sites.as-list .sites-head { color: var(--muted); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding-top: 11px; padding-bottom: 11px; background: var(--bg); }
.sites.as-list:not(:has(.site)) { display: none; }
.sites.as-list .site { border: 0; border-top: 1px solid var(--line); border-radius: 0; box-shadow: none; counter-increment: site; }
.sites.as-list .site::before { content: counter(site); color: var(--muted); font-size: .85rem; font-variant-numeric: tabular-nums; }
.sites.as-list .site-shot { display: none; }
.sites.as-list .site-body, .sites.as-list .site-meta { display: contents; }
.sites.as-list .site-top { justify-content: flex-start; min-width: 0; }
.sites.as-list .site-top h3 { font-size: .95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: normal; }
.sites.as-list .site-meta div { display: block; padding: 0; border: 0; font-size: .9rem; }
.sites.as-list .site-meta dt { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }   /* the header names the columns */
.sites.as-list .site-meta dd { text-align: left; font-weight: 500; font-variant-numeric: tabular-nums; }
.sites.as-list .site-meta div:last-child { display: none; }   /* last scan date: too wide for a row */
/* Icon-only actions, all the same white style; the text stays for screen readers. */
.sites.as-list .site-actions { grid-column: 6; justify-content: flex-end; flex-wrap: nowrap; gap: 4px; margin-top: 0; }
.sites.as-list .site-actions .act { width: 34px; height: 34px; padding: 0; background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.sites.as-list .site-actions .act:hover { border-color: var(--accent); color: var(--accent); transform: none; box-shadow: none; }
.sites.as-list .site-actions .act-ico { display: block; }
.sites.as-list .site-actions .act-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sites.as-list .site-actions .icon-btn { margin-left: 0; width: 34px; height: 34px; }
@media (max-width: 700px) {
  /* Phones: number, site and actions on the first line, the values on a second line under them. */
  .sites.as-list .sites-head { display: none; }
  .sites.as-list .site { grid-template-columns: 1.2rem minmax(0, 1fr) auto; gap: 6px 10px; padding: 10px 12px; }
  .sites.as-list .site::before { grid-row: 1; }
  .sites.as-list .site-top { grid-column: 2; grid-row: 1; gap: 6px; }
  .sites.as-list .site-top .state { font-size: 0; gap: 0; padding: 0; background: none; }   /* just the coloured dot: room for the name */
  .sites.as-list .site-top .state i { width: 9px; height: 9px; }
  .sites.as-list .site-actions { grid-column: 3; grid-row: 1; }
  .sites.as-list .site-actions .act, .sites.as-list .site-actions .icon-btn { width: 32px; height: 32px; }
  .sites.as-list .site-meta { display: flex; flex-wrap: wrap; gap: 2px 14px; grid-column: 2 / 4; grid-row: 2; }
  .sites.as-list .site-meta div { font-size: .8rem; }
  .sites.as-list .site-meta dt { position: static; width: auto; height: auto; clip: auto; display: inline; margin-right: 4px; color: var(--muted); }
  .sites.as-list .site-meta dd { display: inline; }
}
.me { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.plan-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; } .plan-line .link { padding: 0; font-size: .82rem; }
.badge-free { padding: 3px 10px; border-radius: 99px; background: var(--ok-bg); color: var(--ok); font-size: .75rem; font-weight: 700; }
.switch { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; }
.switch .track { flex: none; width: 40px; height: 24px; border-radius: 99px; background: var(--line); position: relative; transition: background .2s; margin-top: 2px; }
.switch .track::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.switch input:checked + .track { background: var(--ok); } .switch input:checked + .track::after { transform: translateX(16px); }
.switch input:focus-visible + .track { outline: 2px solid var(--accent); outline-offset: 2px; }
.switch-text { display: grid; gap: 2px; font-size: .92rem; } .switch-text small { font-size: .8rem; }
.events { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.events li { display: grid; gap: 2px; padding-left: 14px; position: relative; font-size: .9rem; }
.events li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.events li.warn::before { background: var(--warn); } .events li.bad::before { background: var(--bad); }
.upsell h4 { margin-bottom: 6px; } .upsell p { margin: 0 0 12px; }
.card .two-col, .side .card h3 { margin-bottom: 14px; }
.page .two-col:has(.side) { grid-template-columns: minmax(0, 1fr) 340px; }
@media (max-width: 900px) {
  .page .two-col:has(.side) { grid-template-columns: minmax(0, 1fr); }
  /* On phones "Your account" comes first, then the sites, then the rest of the sidebar. */
  .page .two-col:has(.side) > .side { display: contents; }
  .page .two-col:has(.side) > .sites-col { order: 2; }
  .page .two-col .acct-card { order: 1; }
  .page .two-col:has(.side) > .side > .card:not(.acct-card) { order: 3; }
}   /* stack on phones; must come after the rule above to win */

.done-ico.bad { background: var(--bad-bg); color: var(--bad); }
.confirm .btn + .btn { margin-left: 8px; }
.state.wait { background: var(--bg); color: var(--muted); }
.nav-panel .logout { margin: 0; }
.site-shot .view img { aspect-ratio: 16 / 10; }

/* Contact form, legal pages, profile, pricing */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice.ok { background: var(--ok-bg); }
.hero-notice { max-width: 640px; margin: 0 auto 20px; }
.cu-about { margin: 0; } .cu-hint { font-size: .8rem; } .cu-hint[hidden] { display: none; }
.company-lines { line-height: 1.7; margin: 0 0 16px; }
.report-problem { margin: 22px 0 0; text-align: center; }
.legal-intro { font-size: 1.05rem; line-height: 1.6; margin: 0 0 24px; }
.legal .howto-sec a { word-break: break-word; }
.crumbs { margin: 0 0 8px; font-size: .9rem; } .crumbs a { color: var(--muted); }
.profile h1 { margin-bottom: 22px; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 20px; align-items: start; }
.profile-grid .form { gap: 16px; }
.profile-grid .row2 { align-items: start; }
.profile-grid .form > .btn { width: auto; justify-self: start; }
.profile-grid h3 { margin: 0; } .profile-grid .sub-h { margin-top: 10px; }
.profile-grid .form .small { margin: -8px 0 0; }
.field input[readonly] { color: var(--muted); }
.profile-side { display: grid; gap: 20px; }
.kv { margin: 14px 0; font-size: .92rem; }
.kv div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.kv div:last-child { border: 0; } .kv dt { color: var(--muted); } .kv dd { margin: 0; font-weight: 600; text-align: right; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.danger-zone { border-color: color-mix(in srgb, var(--bad) 35%, var(--line)); }
.danger-zone h3 { color: var(--bad); margin-bottom: 8px; }
.danger-zone .form-error { margin: 0 0 12px; }
@media (max-width: 900px) { .profile-grid { grid-template-columns: 1fr; } }
.price-sec { margin-bottom: 20px; } .price-sec h2 { font-size: 1.3rem; margin: 0 0 6px; }
.table-wrap { overflow-x: auto; margin: 14px 0 10px; }
.price-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.price-table th, .price-table td { text-align: left; padding: 12px 10px; border-top: 1px solid var(--line); vertical-align: middle; }
.price-table thead th { border-top: 0; color: var(--muted); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.price-table tbody th { font-weight: 700; }
.price-table tbody th small { display: block; font-weight: 400; font-size: .85rem; margin-top: 3px; max-width: 520px; line-height: 1.45; }
.price-table td b { font-size: 1.05rem; }
.price-table .price-cta { text-align: right; white-space: nowrap; }
.price-table .badge { margin-top: 4px; display: inline-block; }
@media (max-width: 640px) {
  /* Services: one block per service, the price and button under its description. */
  .price-table.svc thead { display: none; }
  .price-table.svc tr { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 12px; padding: 14px 0; border-top: 1px solid var(--line); }
  .price-table.svc th, .price-table.svc td { border: 0; padding: 0; }
  .price-table.svc tbody th { grid-column: 1 / -1; }
  .price-table.svc tbody tr:first-child { border-top: 0; }
}
.pay-note { margin: 0; font-size: .92rem; line-height: 1.55; color: var(--muted); }
