:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --ink: #16302f;
  --muted: #7a8590;
  --accent: #0e9c8f;
  --accent-ink: #ffffff;
  --line: #dde4ea;
  --ok-bg: #e6f5f3;
  --ok-ink: #0f5f57;
  --bad-bg: #fdeaea;
  --bad-ink: #7c1d1d;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Archivo, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 1rem; }

header {
  background: var(--header-bg, #16302f);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.07), 0 6px 22px rgba(11, 30, 25, 0.26);
}
header .wrap { display: flex; align-items: stretch; justify-content: space-between; gap: 1rem; min-height: 64px; }

/* The logo keeps its full width and its clearspace; the nav starts after a hairline. */
.hgroup { display: flex; align-items: stretch; min-width: 0; }
.brand {
  display: flex; align-items: center; flex: 0 0 auto;
  color: #fff; text-decoration: none;
  padding-right: 1.4rem; margin-right: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.brand em { font-style: normal; color: #3fd0c0; }
.brand-img { flex: 0 0 auto; }

header nav { display: flex; align-items: stretch; gap: 0.15rem; }
header nav a {
  position: relative;
  display: flex; align-items: center;
  color: #cfe3df; text-decoration: none;
  font-weight: 600; font-size: 0.93rem; letter-spacing: 0.01em;
  padding: 0 1rem; border: 0; border-radius: 0;
  transition: color 0.15s ease, background 0.15s ease;
}
header nav a::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0;
  height: 3px; border-radius: 3px 3px 0 0;
  background: transparent; transition: background 0.15s ease;
}
header nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); text-decoration: none; }
header nav a:hover::after { background: rgba(63, 208, 192, 0.45); }
header nav a.on { color: #fff; }
header nav a.on::after { background: #3fd0c0; }

header nav a.nav-cta {
  align-self: center;
  background: #3fd0c0; color: #16302f; font-weight: 700;
  padding: 0.5rem 1.15rem; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
header nav a.nav-cta:hover { background: #6fe0d3; color: #16302f; }
header nav a.nav-cta::after { display: none; }

/* Jump links must clear the sticky header, not hide under it. */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 96px; }

/* In-page sections are a nav destination too: when #pricing is the target,
   it takes the active marker from Home (no JavaScript needed). */
body:has(#pricing:target) header nav a[href="/"] { color: #cfe3df; }
body:has(#pricing:target) header nav a[href="/"]::after { background: transparent; }
body:has(#pricing:target) header nav a[href="/#pricing"] { color: #fff; }
body:has(#pricing:target) header nav a[href="/#pricing"]::after { background: #3fd0c0; }

/* Phones: two rows instead of a hamburger — logo and Sign in on top, the full
   menu underneath as one strip (it scrolls sideways if a language makes the
   labels longer). Every destination stays visible and one tap away. */
@media (max-width: 820px) {
  header .wrap { flex-wrap: wrap; align-items: center; min-height: 0; gap: 0.4rem; padding-top: 0.5rem; }
  .hgroup { display: contents; }
  .brand { order: 1; border-right: 0; padding-right: 0; margin-right: 0; }
  .lockup-md img { width: 28px; height: 28px; }
  .lockup-md .lockup-word { font-size: 1.12rem; }
  nav.hcta { order: 2; margin-left: auto; align-items: center; }
  nav.hmain {
    order: 3; width: 100%; margin-top: 0.4rem;
    overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  nav.hmain::-webkit-scrollbar { display: none; }
  header nav a { flex: 0 0 auto; padding: 0.55rem 0.7rem; font-size: 0.9rem; }
  header nav a::after { left: 0.7rem; right: 0.7rem; }
  header nav a.nav-cta { padding: 0.42rem 0.9rem; font-size: 0.88rem; }
  [id] { scroll-margin-top: 104px; }
}
@media (max-width: 380px) {
  .lockup-md .lockup-word { font-size: 1rem; }
  .lockup-md img { width: 26px; height: 26px; }
  header nav a { padding: 0.55rem 0.6rem; font-size: 0.88rem; }
}

/* Secondary links under the closing CTA — the mobile home for Guides & co. */
.lp-closing-links { margin-top: 1.2rem; font-size: 0.92rem; }
.lp-closing-links a { color: #cfe3df; text-decoration: none; font-weight: 600; padding: 0 0.15rem; }
.lp-closing-links a:hover { color: #fff; text-decoration: underline; }
.lp-closing-links span { color: rgba(255, 255, 255, 0.35); padding: 0 0.4rem; }
form.inline { display: inline; margin: 0; }
button.linklike {
  background: none; border: none; color: #d5e6e3; cursor: pointer;
  font: inherit; padding: 0; text-decoration: underline;
}

main { padding: 1.5rem 0 2.5rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 2px rgba(16, 40, 32, 0.05);
}
.card.narrow { max-width: 420px; margin-left: auto; margin-right: auto; }

h1 { font-size: 1.5rem; margin: 0 0 0.6rem; }
h2 { font-size: 1.1rem; margin: 1.2rem 0 0.5rem; }
a { color: var(--accent); }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.mono { font-family: Consolas, "Courier New", monospace; word-break: break-all; }

table { width: 100%; border-collapse: collapse; margin: 0.5rem 0; }
th, td { text-align: left; padding: 0.45rem 0.6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.kv th { width: 40%; color: var(--muted); font-weight: 600; }
tr.current { background: #eef7f5; }

label { display: block; margin: 0.6rem 0; font-weight: 600; font-size: 0.92rem; }
input, select {
  display: block; width: 100%; margin-top: 0.25rem; padding: 0.5rem 0.6rem;
  border: 1px solid var(--line); border-radius: 6px; font: inherit; font-weight: 400;
  background: #fff; color: var(--ink);
}
input:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

button[type="submit"] {
  background: var(--accent); color: var(--accent-ink);
  border: none; border-radius: 6px; padding: 0.6rem 1.2rem;
  font: inherit; font-weight: 600; cursor: pointer;
}
button[type="submit"]:hover { background: #0b7f75; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0 1.2rem; }
.split { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.split > div:first-child { flex: 1 1 420px; }
.qrbox { text-align: center; padding-top: 0.5rem; }
.row { display: flex; gap: 0.6rem; align-items: end; flex-wrap: wrap; }
.row label { flex: 1 1 300px; margin: 0; }
.row button { margin-bottom: 2px; }

.ok  { background: var(--ok-bg);  color: var(--ok-ink);  border: 1px solid #b9e3dd; border-radius: 8px; padding: 0.7rem 1rem; margin: 0.8rem 0; }
.bad { background: var(--bad-bg); color: var(--bad-ink); border: 1px solid #efc4c4; border-radius: 8px; padding: 0.7rem 1rem; margin: 0.8rem 0; }
.bad ul, .ok ul { margin: 0.3rem 0 0 1.1rem; padding: 0; }

.lock {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  background: #eef2f5; color: var(--muted);
  border: 1px solid var(--line); border-radius: 99px; padding: 0.05rem 0.55rem;
  vertical-align: middle;
}

footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; padding: 1rem 0 2rem; }

/* ================= landing page ================= */

.lp-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.2rem 0 2.4rem;
}
.lp-eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; font-weight: 800;
  color: var(--accent);
  background: #e6f5f3;
  border: 1px solid #b9e3dd;
  border-radius: 99px;
  padding: 0.25rem 0.9rem;
  margin: 0 0 1rem;
}
.lp-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
  font-weight: 800;
}
.lp-title .hl {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: #3fd0c0;
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}
.lp-lead { font-size: 1.12rem; color: #4a5661; max-width: 32rem; margin: 0 0 1.4rem; }
.lp-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.lp-cta-center { justify-content: center; }
.lp-note { color: var(--muted); font-size: 0.85rem; margin-top: 1rem; }
.lp-hero-art { min-width: 0; }
.lp-art-svg { width: 100%; height: auto; filter: drop-shadow(0 18px 35px rgba(16, 49, 43, 0.16)); }

.btn {
  display: inline-block; padding: 0.65rem 1.25rem; border-radius: 10px;
  font-weight: 700; text-decoration: none; transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1.02rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(11, 110, 79, 0.35); }
.btn-primary:hover { background: #0b7f75; }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: #e6f5f3; }
.btn-outline-dark { border: 2px solid #16302f; color: #16302f; }
.btn-outline-dark:hover { background: #16302f; color: #fff; }

.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: #244f4b;
  border-radius: 16px;
  overflow: hidden;
  margin: 0.5rem 0 3rem;
  box-shadow: 0 14px 30px rgba(16, 49, 43, 0.22);
}
.lp-stat {
  background: linear-gradient(160deg, #16302f, #1c4744);
  color: #fff;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.lp-stat-n { display: block; font-size: 1.9rem; font-weight: 800; color: #3fd0c0; }
.lp-stat-l { display: block; font-size: 0.82rem; color: #d5e6e3; margin-top: 0.2rem; }

.lp-sec-title { text-align: center; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 0.4rem; letter-spacing: -0.3px; }
.lp-sec-lead { text-align: center; color: var(--muted); max-width: 42rem; margin: 0 auto 1.8rem; }

.lp-tiles-wrap { padding: 1rem 0 2rem; }
.lp-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.lp-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 2px 6px rgba(16, 49, 43, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 49, 43, 0.12); }
.lp-tile h3 { margin: 0.9rem 0 0.4rem; font-size: 1.05rem; }
.lp-tile p { margin: 0; font-size: 0.92rem; color: #4a5661; }
.lp-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
}
.lp-ico svg { width: 24px; height: 24px; }
.lp-ico-green { background: #e6f5f3; color: #0e9c8f; }
.lp-ico-dark  { background: #e8edf2; color: #16302f; }
.lp-ico-amber { background: #fef3e2; color: #b45309; }
.lp-ico-blue  { background: #e5edfd; color: #2563eb; }

.lp-show { padding: 1rem 0; }
.lp-show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3.2rem 0;
}
.lp-show-rev .lp-show-art { order: 2; }
.lp-show-text h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); letter-spacing: -0.3px; margin: 0 0 0.7rem; }
.lp-show-text p { color: #4a5661; }
.lp-checks { list-style: none; padding: 0; margin: 1rem 0 0; }
.lp-checks li { padding-left: 1.9rem; position: relative; margin: 0.55rem 0; }
.lp-checks li::before {
  content: "";
  position: absolute; left: 0; top: 0.18rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5L6.5 12.2l1.4-1.4 2.9 2.9 5.3-5.3 1.4 1.4z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5L6.5 12.2l1.4-1.4 2.9 2.9 5.3-5.3 1.4 1.4z"/></svg>') center/contain no-repeat;
}
.lp-checks-sm li { font-size: 0.92rem; }

.lp-plans { padding: 1.5rem 0 1rem; }
.lp-plangrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}
.lp-plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 2px 6px rgba(16, 49, 43, 0.05);
  position: relative;
}
.lp-plan-main {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #f2faf9, #ffffff 55%);
  box-shadow: 0 16px 34px rgba(11, 110, 79, 0.16);
}
.lp-plan-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 99px; padding: 0.3rem 1rem; margin: 0; white-space: nowrap;
}
.lp-plan-name { margin: 0 0 0.6rem; font-size: 1.15rem; color: var(--accent); }
.lp-plan-price { font-size: 2rem; font-weight: 800; margin: 0.2rem 0 0.1rem; letter-spacing: -0.5px; }
.lp-plan-sub { color: #4a5661; font-size: 0.92rem; margin: 0.2rem 0 0.6rem; }
.lp-plan-hr { border: none; border-top: 1px dashed var(--line); margin: 1rem 0; }
.lp-pricetable { margin: 0.7rem 0; }
.lp-pricetable th { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-pricetable td { font-weight: 600; }
.lp-pricetable td:last-child, .lp-pricetable th:last-child { text-align: right; }
/* Contract-term selector: one-line segmented control. Real radio inputs (keyboard
   and screen-reader friendly), visually replaced by the segment labels; sibling
   selectors switch the highlighted segment, the prices and the explanatory note. */
.lp-termbox { position: relative; }
.lp-termradio { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none; }
.lp-termlabel {
  margin: 0.9rem 0 0.35rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted);
}
.lp-seg {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
  padding: 3px; background: #eaf1f0; border: 1px solid var(--line); border-radius: 10px;
}
.lp-seg label {
  margin: 0; padding: 0.45rem 0; text-align: center; white-space: nowrap;
  border-radius: 7px; font-size: 0.86rem; font-weight: 700; color: #4a5661;
  cursor: pointer;
}
.lp-seg label:hover { background: #fff; color: var(--ink); }

#lp-term-1:checked ~ .lp-seg .lp-l-1,
#lp-term-3:checked ~ .lp-seg .lp-l-3,
#lp-term-5:checked ~ .lp-seg .lp-l-5,
#lp-term-10:checked ~ .lp-seg .lp-l-10 {
  background: var(--accent); color: #fff; box-shadow: 0 2px 6px rgba(14, 156, 143, 0.35);
}
#lp-term-1:focus-visible ~ .lp-seg .lp-l-1,
#lp-term-3:focus-visible ~ .lp-seg .lp-l-3,
#lp-term-5:focus-visible ~ .lp-seg .lp-l-5,
#lp-term-10:focus-visible ~ .lp-seg .lp-l-10 { outline: 2px solid var(--accent); outline-offset: 2px; }

.lp-termbox .lp-p { display: none; }
#lp-term-1:checked ~ * .lp-p-1,
#lp-term-3:checked ~ * .lp-p-3,
#lp-term-5:checked ~ * .lp-p-5,
#lp-term-10:checked ~ * .lp-p-10 { display: inline; }
.lp-termnote { margin: 0.1rem 0 0.4rem; font-size: 0.86rem; font-weight: 600; color: var(--accent); min-height: 2.6em; }

.lp-closing {
  text-align: center;
  background: linear-gradient(135deg, #16302f, #0e9c8f);
  color: #fff;
  border-radius: 20px;
  padding: 3rem 1.5rem 2.6rem;
  margin: 2.5rem 0 1rem;
  box-shadow: 0 18px 40px rgba(16, 49, 43, 0.28);
}
.lp-closing h2 { margin: 0 0 0.5rem; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.lp-closing p { color: #d5e6e3; margin: 0 0 1.4rem; }
.lp-closing .btn-outline-dark { border-color: #3fd0c0; color: #fff; }
.lp-closing .btn-outline-dark:hover { background: rgba(127, 214, 178, 0.18); color: #fff; }
.lp-lookup {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
  max-width: 540px; margin: 1.6rem auto 0;
}
.lp-lookup input {
  flex: 1 1 320px; margin: 0;
  border-radius: 10px; border: none; padding: 0.7rem 0.9rem;
}
.lp-lookup button {
  background: #3fd0c0; color: #16302f; border: none; border-radius: 10px;
  padding: 0.7rem 1.4rem; font-weight: 800; cursor: pointer;
}
.lp-lookup button:hover { background: #6fe0d3; }

@media (max-width: 860px) {
  .lp-hero { grid-template-columns: 1fr; padding-top: 2rem; gap: 1.8rem; }
  .lp-show-row { grid-template-columns: 1fr; gap: 1.2rem; margin: 2.2rem 0; }
  .lp-show-rev .lp-show-art { order: 0; }
}

/* ---------- guides / FAQ ---------- */
.guide { max-width: 760px; margin: 1.5rem auto 2.5rem; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 2.2rem; box-shadow: 0 2px 6px rgba(16,49,43,0.05); }
.guide h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); line-height: 1.15; letter-spacing: -0.4px; margin: 0.3rem 0 0.4rem; }
.guide h2 { font-size: 1.25rem; margin: 1.8rem 0 0.5rem; letter-spacing: -0.2px; }
.guide h3 { font-size: 1.02rem; margin: 1.1rem 0 0.3rem; }
.guide p, .guide li { color: #2b3a46; font-size: 1.02rem; }
.guide ol, .guide ul { padding-left: 1.4rem; }
.guide li { margin: 0.35rem 0; }
.faq { border: 1px solid var(--line); border-radius: 10px; padding: 0.7rem 1rem; margin: 0.6rem 0; background: #fbfdfd; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin: 0.6rem 0 0.2rem; }
.guide-cta { background: #e6f5f3; border: 1px solid #b9e3dd; border-radius: 12px; padding: 1rem 1.2rem; margin: 1.8rem 0 0.5rem; }
.lp-tile h3 a { color: var(--ink); text-decoration: none; }
.lp-tile h3 a:hover { color: var(--accent); }
.foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin-bottom: 0.6rem; }
.foot-links a { color: var(--accent); text-decoration: none; font-weight: 600; }
.foot-links a:hover { text-decoration: underline; }

/* ---------- branded pages ---------- */
.hostedby { font-size: 0.7rem; font-weight: 500; color: #d5e6e3; margin-left: 0.6rem; }
.hostedby a { color: #fff; text-decoration: none; font-weight: 800; }
.brand-logo { height: 26px; vertical-align: middle; margin-right: 0.5rem; border-radius: 4px; background: #fff; padding: 2px; }
.bpage-logo { height: 44px; vertical-align: middle; border-radius: 6px; background: #fff; padding: 3px; }
.lp-lookup-left { justify-content: flex-start; margin-left: 0; }
.lp-lookup-left input { background: #fff; border: 1px solid var(--line); }

/* ---------- login page ---------- */
.login-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 2.5rem 0; max-width: 900px; margin: 0 auto; }
.login-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 2rem 1.5rem; box-shadow: 0 18px 40px rgba(16, 49, 43, 0.14);
}
.login-title { margin: 0.4rem 0 0.3rem; font-size: 1.8rem; letter-spacing: -0.4px; }
.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; }
.sso-row { display: grid; gap: 0.6rem; margin: 1rem 0 0.4rem; }
.sso-btn { text-align: center; }
.login-or { text-align: center; color: var(--muted); font-size: 0.82rem; margin: 0.8rem 0 0.2rem; position: relative; }
.login-or span { background: var(--card); padding: 0 0.7rem; position: relative; }
.login-or::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--line); }
.login-side h2 { font-size: 1.3rem; letter-spacing: -0.3px; }
@media (max-width: 800px) { .login-wrap { grid-template-columns: 1fr; gap: 1.5rem; } .login-side { display: none; } }

/* ---------- admin console ---------- */
.adm-body { background: #eef2f1; }
.adm-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.adm-side {
  background: linear-gradient(180deg, #16302f, #143f36);
  color: #d5e6e3; padding: 1.2rem 0 1rem; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.adm-brand { padding: 0 1.2rem 0.6rem; }
.adm-brand a { color: #fff; font-weight: 800; font-size: 1.2rem; text-decoration: none; }
.adm-brand a em { font-style: normal; color: #3fd0c0; }
.adm-sub { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: #3fd0c0; margin-top: 0.15rem; }
.adm-cust { padding: 0.5rem 1.2rem; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.adm-plan { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid #3d6b5e; border-radius: 99px; padding: 0.05rem 0.5rem; margin-left: 0.3rem; }
.adm-plan-full { background: #3fd0c0; color: #16302f; border-color: #3fd0c0; }
.adm-nav { display: flex; flex-direction: column; align-items: stretch; padding: 0.6rem 0; flex: 1; overflow-y: auto; }
.adm-nav a {
  color: #d5e6e3; text-decoration: none; text-align: left; border-radius: 0;
  padding: 0.5rem 1.2rem; font-size: 0.93rem; border-left: 3px solid transparent;
}
.adm-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.adm-nav a.on { background: rgba(127,214,178,0.12); color: #fff; border-left-color: #3fd0c0; font-weight: 700; }
.adm-foot { padding: 0.8rem 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }
.adm-user { display: block; margin-bottom: 0.3rem; padding-left: 0.3rem; word-break: break-all; }
.adm-foot form { margin: 0; }
.adm-foot button.linklike {
  display: block; width: 100%; text-align: left; text-decoration: none;
  color: #d5e6e3; padding: 0.35rem 0.3rem; border-radius: 8px; font-size: 0.88rem;
}
.adm-foot button.linklike:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.adm-visit { display: block; color: #3fd0c0; margin-top: 0.3rem; padding-left: 0.3rem; text-decoration: none; }
.adm-main { padding: 1.6rem 2rem 3rem; min-width: 0; }
.adm-title { font-size: 1.45rem; letter-spacing: -0.3px; margin: 0 0 1rem; }
.adm-typefields { border: 1px dashed var(--line); border-radius: 12px; margin: 0.8rem 0; padding: 0.6rem 1rem 0.9rem; }
.adm-typefields legend { font-weight: 700; padding: 0 0.4rem; }
textarea {
  display: block; width: 100%; margin-top: 0.25rem; padding: 0.5rem 0.6rem;
  border: 1px solid var(--line); border-radius: 6px; font: inherit; font-weight: 400;
  background: #fff; color: var(--ink); resize: vertical;
}
textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.fld-wide { grid-column: 1 / -1; }
.fld-label { display: block; font-weight: 600; font-size: 0.92rem; margin: 0.6rem 0 0.25rem; }
.fld-table { grid-column: 1 / -1; }
.fld-table .edit-table { margin: 0.2rem 0; }
.fld-table .edit-table td { padding: 0.15rem; border-bottom: none; }
.fld-table .edit-table th { font-size: 0.8rem; color: var(--muted); padding: 0.15rem; border-bottom: 1px solid var(--line); }
.fld-table .edit-table input { margin: 0; padding: 0.3rem 0.4rem; font-size: 0.88rem; }
.fld-doc { grid-column: 1 / -1; }
.fld-doc input { margin-bottom: 0.35rem; }
/* picture-card choice (radio buttons, no JS) */
.fld-choice { grid-column: 1 / -1; margin-bottom: 0.4rem; }
.choice { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-opt { position: relative; margin: 0; cursor: pointer; font-weight: 400; }
.choice-opt input { position: absolute; opacity: 0; pointer-events: none; width: 1px !important; height: 1px; margin: 0; padding: 0; }
.choice-opt span { display: flex; flex-direction: column; gap: 7px; width: 176px; padding: 8px; border: 2px solid var(--line); border-radius: 10px; background: #fff; }
.choice-opt:hover span { border-color: #9fcfc9; }
.choice-opt input:checked + span { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14, 156, 143, .15); }
.choice-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.choice-opt strong { font-size: 0.86rem; line-height: 1.25; }
.choice-opt input:checked + span strong::before { content: "✓ "; color: var(--accent); }
.choice-opt svg { display: block; width: 100%; height: auto; border-radius: 6px; }
.cp-band { fill: #16302f; }
.cp-photo { fill: #9cbfd3; }
.cp-hill { fill: #4f8a72; }
.cp-sun { fill: #f5c46a; }
.cp-shade { fill: #16302f; opacity: .42; }
.cp-line { fill: rgba(243, 242, 242, .85); }
.cp-line2 { fill: rgba(243, 242, 242, .4); }
.cp-ring { fill: none; stroke: #3fd0c0; stroke-width: 2; }
.cp-disc { fill: #f3f2f2; }
.cp-bat { fill: #0e9c8f; }
.subtable { font-size: 0.85rem; margin: 0; }
.subtable th { font-size: 0.78rem; color: var(--muted); }
.subtable td, .subtable th { padding: 0.25rem 0.45rem; }
.adm-check { display: inline-block; margin-right: 1rem; font-weight: 400; }
.adm-check input { display: inline; width: auto; margin-right: 0.25rem; }
.adm-logo { height: 48px; background: #f4f6f8; border-radius: 6px; padding: 4px; }
.adm-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; margin-bottom: 1.2rem; }
.adm-stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.1rem 1.3rem; box-shadow: 0 2px 6px rgba(16, 49, 43, 0.05);
}
.adm-stat-n { display: block; font-size: 1.9rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
.adm-stat-l { display: block; font-weight: 600; margin-top: 0.1rem; }
.adm-stat-s { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 0.35rem; }
.adm-bar { height: 8px; background: #eef2f5; border-radius: 4px; margin-top: 0.6rem; overflow: hidden; }
.adm-bar span { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.adm-bar.warn span { background: #d97706; }
.adm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: start; }
@media (max-width: 900px) { .adm-cols { grid-template-columns: 1fr; } }
.adm-capinput { display: inline-block; width: 90px; margin: 0; padding: 0.25rem 0.4rem; }
button.linklike.small { font-size: 0.82rem; }
pre { background: #16302f; color: #d5e6e3; border-radius: 10px; padding: 1rem; overflow-x: auto; }
@media (max-width: 900px) {
  .adm-shell { grid-template-columns: 1fr; }
  .adm-side { position: static; height: auto; }
  .adm-nav { flex-direction: row; flex-wrap: wrap; }
}

@media print {
  header, footer, form, nav { display: none !important; }
  body { background: #fff; }
  .card { border: none; box-shadow: none; }
}

.pp-img { max-width: 260px; max-height: 200px; border-radius: 8px; border: 1px solid var(--line); background: #fff; }

/* ---------- OrigoPass lockup ----------
   Symbol (SVG geometry) + wordmark as text: Archivo when available, else the
   system stack at the brand tracking. Never clips, sharp at any size. */
.lockup { display: inline-flex; align-items: center; gap: 0.55em; line-height: 1; white-space: nowrap; }
.lockup img { flex: 0 0 auto; display: block; }
.lockup-word { font-weight: 600; letter-spacing: -0.035em; }
.lockup-dark .lockup-word { color: #f3f2f2; }
.lockup-dark .lockup-tld { color: #93a8a6; }
.lockup-light .lockup-word { color: #16302F; }
.lockup-light .lockup-tld { color: #7A8590; }
.lockup-sm img { width: 26px; height: 26px; }
.lockup-sm .lockup-word { font-size: 1.05rem; }
.lockup-md img { width: 34px; height: 34px; }
.lockup-md .lockup-word { font-size: 1.32rem; }
.lockup-lg { flex-direction: column; gap: 0.5rem; }
.lockup-lg img { width: 76px; height: 76px; }
.lockup-lg .lockup-word { font-size: 1.7rem; }

.adm-brand .lockup-word { font-size: 1.2rem; }
.adm-brand img { width: 30px; height: 30px; }
.login-logo { display: flex; justify-content: center; margin-bottom: 0.9rem; }
.foot-logo { margin-bottom: 0.7rem; }
.hostedby img { height: 15px; width: 15px; vertical-align: -3px; margin-right: 0.3rem; }
.pp-img { max-width: 260px; max-height: 200px; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
/* ---------- registration ---------- */
.reg-wrap { max-width: 760px; margin: 1.5rem auto 2.5rem; }
.reg-card { padding: 2rem 2.2rem; }
.reg-card h2 { font-size: 1rem; margin: 1.4rem 0 0.2rem; color: var(--accent); }
.reg-terms { margin: 1rem 0; font-weight: 400; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- billing ---------- */
.st { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
      padding: 0.1rem 0.5rem; border-radius: 99px; background: #eef2f5; color: var(--muted); border: 1px solid var(--line); }
.st-ok { background: #e6f5f3; color: #0f5f57; border-color: #b9e3dd; }
.st-warn { background: #fef3e2; color: #8a5a07; border-color: #f5d9a8; }
.st-bad { background: #fdeaea; color: #7c1d1d; border-color: #efc4c4; }
.num { text-align: right; white-space: nowrap; }
td.actions { white-space: nowrap; font-size: 0.88rem; }
.table-scroll { overflow-x: auto; }
tr.total td { border-top: 2px solid var(--ink); }
.btn-xs { padding: 0.25rem 0.7rem; font-size: 0.8rem; border-radius: 6px; box-shadow: none; }
.btn-danger { background: #b42318 !important; }
.btn-danger:hover { background: #8f1c13 !important; }

.picks { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.5rem; margin-bottom: 0.4rem; }
.pick { margin: 0; cursor: pointer; }
.pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pick span {
  display: block; padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-weight: 400; line-height: 1.35;
}
.pick span small { color: var(--muted); }
.pick:hover span { border-color: var(--accent); }
.pick input:checked + span { border: 2px solid var(--accent); background: #f2faf9; padding: calc(0.7rem - 1px) calc(0.8rem - 1px); }
.pick input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.pay-card { max-width: 560px; }
.pay-amount { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; margin: 0.4rem 0 0.2rem; }
.pay-btn { border: none; cursor: pointer; margin-top: 0.6rem; }
.bank-alt { margin-top: 1.6rem; font-size: 0.82rem; }
.bank-alt a { color: var(--muted); }
.bank-box { border: 1px solid var(--line); border-radius: 10px; padding: 0.8rem 1rem; background: #fbfdfd; }
.bank-box h3 { margin: 0 0 0.4rem; font-size: 1rem; }

/* ---------- console banners ---------- */
.banner { background: #e6f5f3; border: 1px solid #b9e3dd; color: #0f5f57; border-radius: 10px; padding: 0.65rem 1rem; margin-bottom: 0.8rem; font-size: 0.92rem; }
.banner-warn { background: #fef3e2; border-color: #f5d9a8; color: #6b4605; }
.banner-bad { background: #fdeaea; border-color: #efc4c4; color: #7c1d1d; }
.banner a { font-weight: 700; }

/* ---------- pricing v2: plan cards with a yearly/monthly switch (zero JS) ---------- */
.lp-intradio { position: absolute; opacity: 0; pointer-events: none; width: 1px !important; height: 1px; margin: 0; padding: 0; }
.lp-intseg { display: inline-flex; gap: 4px; padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin: 6px auto 22px; }
.lp-plans .lp-intseg { display: flex; width: max-content; max-width: 100%; }
.lp-intseg label { cursor: pointer; padding: 9px 18px; border-radius: 9px; font-weight: 600; font-size: .95rem; white-space: nowrap; color: var(--ink); }
.lp-intseg label em { font-style: normal; font-size: .78rem; font-weight: 700; color: var(--accent); margin-left: 4px; }
#lp-int-y:checked ~ .lp-intseg label[for="lp-int-y"], #lp-int-m:checked ~ .lp-intseg label[for="lp-int-m"] { background: var(--ink); color: #f3f2f2; }
#lp-int-y:checked ~ .lp-intseg label[for="lp-int-y"] em { color: #3fd0c0; }
#lp-int-y:focus-visible ~ .lp-intseg label[for="lp-int-y"], #lp-int-m:focus-visible ~ .lp-intseg label[for="lp-int-m"] { outline: 2px solid var(--accent); outline-offset: 2px; }
#lp-int-y:checked ~ .pl-grid .pm, #lp-int-m:checked ~ .pl-grid .py { display: none; }
.pl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; text-align: left; max-width: 1020px; margin: 0 auto; }
.pl { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 18px; display: flex; flex-direction: column; }
.pl h3 { margin: 0 0 8px; font-size: 1.1rem; }
.pl-price { margin: 0; font-size: 2rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); line-height: 1.1; }
.pl-price small { font-size: .85rem; font-weight: 600; color: var(--muted); margin-left: 4px; }
.pl-price-sm { font-size: 1.5rem; }
.pl-per { margin: 4px 0 14px; color: var(--muted); font-size: .85rem; min-height: 1.2em; }
.pl ul { flex: 1; margin-bottom: 16px; }
.pl .btn { text-align: center; }
.pl-main { border: 2px solid var(--accent); box-shadow: 0 18px 40px rgba(14, 156, 143, .14); }
.pl-badge { position: absolute; top: -12px; left: 18px; margin: 0; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.pl-free { background: #f8fafb; }
.pl-ent { background: var(--ink); color: #f3f2f2; border-color: var(--ink); }
.pl-ent .pl-price, .pl-ent h3 { color: #f3f2f2; }
.pl-ent .pl-per, .pl-ent li { color: #c4d0ce; }
.pl-ent .btn-outline { color: #f3f2f2; border-color: rgba(243, 242, 242, .45); }
.lp-guarantee { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: center; text-align: left; margin-top: 22px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: 18px; padding: 24px 26px; }
.lp-guarantee h3 { margin: 4px 0 8px; font-size: 1.3rem; }
.lp-guarantee p { margin: 0; }

@media (max-width: 760px) { .pl-grid { grid-template-columns: 1fr; max-width: 460px; } .lp-guarantee, .pl-ent { grid-template-columns: 1fr; } }


/* console: plan picker, tiers, wizard, domain */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 12px 0; }
.plan-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: #fff; display: flex; flex-direction: column; }
.plan-card h3 { margin: 0 0 4px; }
.plan-card ul { padding-left: 18px; margin: 8px 0 12px; flex: 1; font-size: .92rem; }
.plan-card.plan-cur { border: 2px solid var(--accent); }
.plan-price { font-size: 1.6rem; font-weight: 800; margin: 4px 0 0; }
.plan-price small { font-size: .8rem; color: var(--muted); font-weight: 600; margin-left: 4px; }
.plan-int { display: flex; gap: 14px; margin-bottom: 10px; font-size: .9rem; }
.plan-int label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.btn-link { background: none; border: 0; color: var(--accent); text-decoration: underline; cursor: pointer; padding: 0; font: inherit; }
.tier { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .03em; padding: 1px 7px; border-radius: 999px; vertical-align: middle; margin-left: 4px; }
.tier-legit { background: #e8eefc; color: #28468e; }
.tier-auth { background: #fdeeea; color: #8a2d16; }
.tier-int { background: #eef1f3; color: #52606b; }
.fld-hint { display: block; font-weight: 400; margin-top: 2px; }
.wz { display: grid; grid-template-columns: 250px 1fr; gap: 20px; align-items: start; }
.wz-steps { list-style: none; margin: 0; padding: 0; position: sticky; top: 12px; }
.wz-steps li a, .wz-steps li span { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; color: var(--ink); text-decoration: none; font-size: .92rem; }
.wz-steps li a:hover { background: #f1f4f6; }
.wz-steps li.on a { background: var(--ink); color: #f3f2f2; }
.wz-steps .wz-n { flex: 0 0 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; background: #e8edf0; color: var(--ink); }
.wz-steps li.done .wz-n { background: var(--accent); color: #fff; }
.wz-steps li.on .wz-n { background: #3fd0c0; color: var(--ink); }
.wz-steps small { margin-left: auto; font-size: .72rem; color: var(--muted); }
.wz-steps li.on small { color: #c4d0ce; }
.wz-bar { height: 8px; background: #e8edf0; border-radius: 99px; overflow: hidden; margin: 6px 0 16px; }
.wz-bar progress { width: 100%; height: 8px; appearance: none; border: 0; display: block; }
.wz-bar progress::-webkit-progress-bar { background: #e8edf0; }
.wz-bar progress::-webkit-progress-value { background: var(--accent); }
.wz-bar progress::-moz-progress-bar { background: var(--accent); }
.wz-nav { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.wz-nav .spacer { flex: 1; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
/* industry tiles (compact) and the plan comparison table */
.lp-tiles-sm .lp-tile p { font-size: .92rem; }
.lp-tiles-sm .lp-tile h3 { font-size: 1.02rem; }
.foot-links-2 { opacity: .85; font-size: .92rem; }
.lp-plans-more { text-align: center; margin-top: 18px; font-weight: 600; }
.ptable { border-collapse: collapse; min-width: 640px; background: #fff; }
.ptable th, .ptable td { border-bottom: 1px solid var(--line); padding: 0.6rem 0.9rem; text-align: center; vertical-align: middle; }
.ptable tr th:first-child { text-align: left; font-weight: 600; width: 40%; }
.ptable tr:first-child th { background: var(--ink, #16302f); color: #fff; font-size: .95rem; }
.ptable tr:first-child th:first-child { background: var(--ink, #16302f); }
.ptable tr:hover td, .ptable tr:hover th { background: #f6faf9; }
.pt-y { color: var(--accent); font-weight: 800; }
.pt-n { color: #9aa9a7; }

/* ---------- integrity check: the chain checking itself (CSS only, no JS) ---------- */
.vf-hero { max-width: 760px; margin: 10px auto 26px; text-align: center; }
.vf-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; margin: 6px 0 10px; }
.vf-status { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 12px; margin-top: 18px; padding: 14px 18px; border-radius: 12px; font-size: .95rem; }
.vf-status strong { font-size: 1.05rem; }
.vf-ok { background: #e6f5f3; color: #0f5f57; border: 1px solid #b9e3dd; }
.vf-bad { background: #fdeaea; color: #7c1d1d; border: 1px solid #efc4c4; }
.vf-run { background: #16302f; color: #e6efee; border-radius: 16px; padding: 22px 22px 8px; margin: 0 0 26px; overflow: hidden; }
.vf-run-head h2 { color: #fff; margin: 0 0 2px; font-size: 1.15rem; }
.vf-run-head p { color: #93a8a6; margin: 0 0 12px; }
/* the chain: six numbered records, checked once, then clickable */
.vf-wrap { position: relative; }
.vf-radio { position: absolute; opacity: 0; pointer-events: none; width: 1px !important; height: 1px; margin: 0; padding: 0; }
.vf-blocks { position: relative; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; max-width: 620px; margin: 10px auto 4px; }
.vf-b { position: relative; margin: 0; width: 82px; padding: 10px 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(63, 208, 192, .3); cursor: pointer; opacity: .35; transition: border-color .2s, background .2s, transform .2s; }
.vf-bn { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(63, 208, 192, .18); color: #3fd0c0; font-weight: 800; font-size: .78rem; opacity: 0; }
.vf-bl { display: block; height: 6px; margin-top: 8px; border-radius: 3px; background: rgba(243, 242, 242, .26); }
.vf-bl-s { width: 60%; }
.vf-bt { position: absolute; top: 8px; right: 9px; width: 20px; height: 20px; border-radius: 50%; background: #3fd0c0; color: #16302f; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.4); }
.vf-blabel { position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%); z-index: 3; width: max-content; max-width: 220px; padding: 6px 10px; border-radius: 8px; background: #3fd0c0; color: #16302f; font-size: .72rem; line-height: 1.3; text-align: center; opacity: 0; pointer-events: none; transition: opacity .15s; }
.vf-blabel b { display: block; font-weight: 800; }
.vf-blabel i { display: block; font-style: normal; opacity: .75; font-size: .68rem; margin-top: 2px; }
.vf-link { width: 16px; height: 3px; background: repeating-linear-gradient(90deg, rgba(63, 208, 192, .5) 0 4px, transparent 4px 8px); opacity: .35; }
.vf-sweep { position: absolute; top: -6px; left: 0; width: 26px; height: calc(100% + 12px); border-radius: 8px; background: rgba(63, 208, 192, .16); border: 1px solid rgba(63, 208, 192, .45); opacity: 0; pointer-events: none; }
.vf-b:hover, .vf-b:focus-within { border-color: #3fd0c0; background: rgba(63, 208, 192, .14); transform: translateY(-2px); }
.vf-b:hover .vf-blabel { opacity: 1; }
.vf-radio:focus-visible + .vf-blocks .vf-b { outline: 2px solid #3fd0c0; outline-offset: 2px; }
/* pointing at or selecting a record shows that step — and only that one.
   !important because a finished animation (fill-mode: forwards) otherwise wins. */
.vf-wrap:has(.vf-b1:hover) .vf-s1, .vf-wrap:has(#vf-p1:checked) .vf-s1,
.vf-wrap:has(.vf-b2:hover) .vf-s2, .vf-wrap:has(#vf-p2:checked) .vf-s2,
.vf-wrap:has(.vf-b3:hover) .vf-s3, .vf-wrap:has(#vf-p3:checked) .vf-s3,
.vf-wrap:has(.vf-b4:hover) .vf-s4, .vf-wrap:has(#vf-p4:checked) .vf-s4,
.vf-wrap:has(.vf-b5:hover) .vf-s5, .vf-wrap:has(#vf-p5:checked) .vf-s5,
.vf-wrap:has(.vf-b6:hover) .vf-s6, .vf-wrap:has(#vf-p6:checked) .vf-s6 {
  opacity: 1 !important; transform: none !important; z-index: 2;
  border-color: #3fd0c0; background: rgba(63, 208, 192, .12);
}
.vf-wrap:has(.vf-b:hover) .vf-hint, .vf-wrap:has(.vf-radio:checked) .vf-hint { opacity: 0 !important; }
#vf-p1:checked ~ .vf-blocks .vf-b1, #vf-p2:checked ~ .vf-blocks .vf-b2, #vf-p3:checked ~ .vf-blocks .vf-b3,
#vf-p4:checked ~ .vf-blocks .vf-b4, #vf-p5:checked ~ .vf-blocks .vf-b5, #vf-p6:checked ~ .vf-blocks .vf-b6 {
  border-color: #3fd0c0; background: rgba(63, 208, 192, .18);
}
.vf-count { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 4px 14px; max-width: 620px; margin: -6px auto 2px; color: #93a8a6; font-size: .82rem; }
.vf-c-rec, .vf-c-kb { font-family: "SFMono-Regular", Consolas, monospace; font-weight: 800; color: #3fd0c0; font-variant-numeric: tabular-nums; }
.vf-count em { font-style: normal; opacity: .75; }
.vf-bar { position: relative; height: 4px; background: rgba(255, 255, 255, .12); border-radius: 99px; max-width: 560px; margin: 8px auto 18px; overflow: hidden; }
.vf-bar span { position: absolute; inset: 0 auto 0 0; width: 0; background: #3fd0c0; border-radius: 99px; }
/* one step at a time: every card sits in the same grid cell, so the panel is as tall as one card */
.vf-steps { list-style: none; margin: 6px 0 0; padding: 0; display: grid; }
.vf-step { grid-area: 1 / 1; display: flex; gap: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(63, 208, 192, .25); opacity: 0; }
.vf-hint { grid-area: 1 / 1; display: flex; align-items: center; justify-content: center; padding: 12px 14px; border-radius: 12px; border: 1px dashed rgba(243, 242, 242, .18); color: #93a8a6; font-size: .9rem; text-align: center; opacity: 0; }
.vf-step h3 { margin: 0 0 4px; font-size: 1rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.vf-step p { margin: 0; color: #b9c7c5; font-size: .92rem; line-height: 1.5; }
.vf-step .vf-meta { color: var(--pp-core, #3fd0c0); font-size: .78rem; margin-top: 6px; }
.vf-num { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(63, 208, 192, .16); color: #3fd0c0; font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.vf-tick { color: #3fd0c0; font-weight: 800; opacity: 0; transform: scale(.4); }
.vf-code { background: #16302f; color: #d7efec; padding: 12px 14px; border-radius: 10px; overflow-x: auto; white-space: pre; margin: 10px 0 14px; }
/* paste your stored checkpoint, get the verdict */
.vf-cp-form { margin: 14px 0 0; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafb; }
.vf-cp-form label { font-weight: 600; font-size: .92rem; }
.vf-cp-form textarea { font-size: .85rem; }
.vf-cp-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin: 10px 0 0; }
.vf-cp-strict { font-weight: 400; font-size: .85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.vf-cp-strict input { width: auto; margin: 0; }
.vf-cp-result { margin: 16px 0 6px; }
.vf-cp-result .vf-status { justify-content: flex-start; text-align: left; }
.vf-cp-result .kv { margin-top: 10px; }
.vf-cp-api { margin-top: 14px; }
.vf-cp-api summary { cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--accent); }
.vf-info { background: #eef4f9; color: #2c4a63; border: 1px solid #d5e3ee; }
.vf-warn { background: #fef6e7; color: #92600a; border: 1px solid #f5d9a8; }
.vf-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 18px; }
.vf-results .card { margin: 0; }

/* The run: once through, at a readable pace. The sweep, the progress bar and the
   steps share one clock — 1.7s per record, constant speed, no easing anywhere,
   so the moving block is always above the record that is being checked. */
@media (prefers-reduced-motion: no-preference) {
  .vf-sweep { animation: vfSweep 10.2s linear .2s 1 forwards; }
  .vf-bar span { animation: vfBar 10.2s linear .2s 1 forwards; }
  .vf-b { animation: vfBlock .6s ease-out 1 forwards; }
  .vf-bn, .vf-bt { animation: vfPop1 .5s ease-out 1 forwards; }
  .vf-link { animation: vfLink .5s ease-out 1 forwards; }
  .vf-step { animation: vfCard 1.7s ease-out 1 forwards; }     /* in, hold, out — the next one takes over */
  .vf-hint { animation: vfFadeIn .6s ease-out 10.6s 1 forwards; }
  .vf-tick { animation: vfPop1 .45s ease-out 1 forwards; }
  /* record n is under the sweep at 0.2s + (n - 0.5) x 1.7s */
  .vf-b1, .vf-b1 .vf-bn, .vf-b1 .vf-bt, .vf-l1 { animation-delay: 1.05s; }
  .vf-b2, .vf-b2 .vf-bn, .vf-b2 .vf-bt, .vf-l2 { animation-delay: 2.75s; }
  .vf-b3, .vf-b3 .vf-bn, .vf-b3 .vf-bt, .vf-l3 { animation-delay: 4.45s; }
  .vf-b4, .vf-b4 .vf-bn, .vf-b4 .vf-bt, .vf-l4 { animation-delay: 6.15s; }
  .vf-b5, .vf-b5 .vf-bn, .vf-b5 .vf-bt, .vf-l5 { animation-delay: 7.85s; }
  .vf-b6, .vf-b6 .vf-bn, .vf-b6 .vf-bt { animation-delay: 9.55s; }
  .vf-step.vf-d1 { animation-delay: .8s; } .vf-step.vf-d1 .vf-tick { animation-delay: 1.15s; }
  .vf-step.vf-d2 { animation-delay: 2.5s; } .vf-step.vf-d2 .vf-tick { animation-delay: 2.85s; }
  .vf-step.vf-d3 { animation-delay: 4.2s; } .vf-step.vf-d3 .vf-tick { animation-delay: 4.55s; }
  .vf-step.vf-d4 { animation-delay: 5.9s; } .vf-step.vf-d4 .vf-tick { animation-delay: 6.25s; }
  .vf-step.vf-d5 { animation-delay: 7.6s; } .vf-step.vf-d5 .vf-tick { animation-delay: 7.95s; }
  .vf-step.vf-d6 { animation-delay: 9.3s; } .vf-step.vf-d6 .vf-tick { animation-delay: 9.65s; }
}
/* left, not transform: the travel is then a fraction of the row, whatever its width */
@keyframes vfSweep { 0% { left: 0; opacity: 0; } 3% { opacity: 1; } 97% { opacity: 1; } 100% { left: calc(100% - 28px); opacity: 0; } }
@keyframes vfBar { 0% { width: 0; } 100% { width: 100%; } }
@keyframes vfBlock { from { opacity: .35; transform: translateY(3px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vfLink { from { opacity: .35; } to { opacity: 1; } }
@keyframes vfPop1 { 0% { opacity: 0; transform: scale(.4); } 60% { opacity: 1; transform: scale(1.18); } 100% { opacity: 1; transform: scale(1); } }
@keyframes vfCard { 0% { opacity: 0; transform: translateY(5px); } 14% { opacity: 1; transform: none; } 84% { opacity: 1; } 100% { opacity: 0; transform: translateY(-3px); } }
@keyframes vfFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  /* no motion: show every step under each other, nothing hidden */
  .vf-steps { gap: 10px; }
  .vf-step { grid-area: auto; opacity: 1; }
  .vf-hint { display: none; }
  .vf-b, .vf-link { opacity: 1; }
  .vf-tick, .vf-bn, .vf-bt { opacity: 1; transform: none; }
  .vf-sweep { opacity: 0; }
  .vf-bar span { width: 100%; }
}
@media (max-width: 620px) {
  .vf-run { padding: 18px 14px 6px; }
  .vf-step { padding: 10px; gap: 10px; }
  .vf-blocks { gap: 6px; }
  .vf-b { width: 64px; padding: 8px 8px 10px; }
  .vf-link { display: none; }
  .vf-sweep { display: none; }
}
.wz-missing { background: #fff7e6; border: 1px solid #f1d7a3; border-radius: 10px; padding: 10px 14px; font-size: .9rem; }
.dns-table td, .dns-table th { font-size: .88rem; }
.dns-table code { word-break: break-all; }
@media (max-width: 860px) { .wz { grid-template-columns: 1fr; } .wz-steps { position: static; display: flex; overflow-x: auto; gap: 4px; } .wz-steps li small { display: none; } }

/* ---------- /standards ---------- */
.std-hero { max-width: 860px; margin: 18px auto 24px; text-align: center; }
.std-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; margin: 6px 0 12px; }
.std-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; align-items: center; font-size: .88rem; color: var(--muted); }
.std-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.std-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; border-top: 4px solid #c2cbd1; }
.std-card h3 { margin: 10px 0 6px; font-size: 1.08rem; }
.std-card p { margin: 0 0 8px; font-size: .94rem; }
.std-badge { display: inline-block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: 999px; background: #eef1f3; color: #52606b; }
.std-impl { border-top-color: var(--accent); } .std-impl .std-badge, .std-b-impl { background: #e3f6f3; color: #0b6a61; }
.std-prep { border-top-color: #2f6fd1; } .std-prep .std-badge, .std-b-prep { background: #e8eefc; color: #28468e; }
.std-anal { border-top-color: #8a63c9; } .std-anal .std-badge, .std-b-anal { background: #f1eef6; color: #5b3f86; }
.std-plan { border-top-color: #c2cbd1; } .std-plan .std-badge, .std-b-plan { background: #eef1f3; color: #52606b; }
.std-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px !important; }
.std-ev { font-weight: 600; font-size: .9rem; }
.std-note { background: var(--ink); color: #f3f2f2; border-radius: 18px; padding: 24px 28px; margin: 22px 0; }
.std-note h2 { margin: 0 0 8px; color: #3fd0c0; font-size: 1.2rem; }
.std-note p { margin: 0; color: #c4d0ce; max-width: 90ch; }
.std-map { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; scroll-margin-top: 96px; }
.std-table { width: 100%; border-collapse: collapse; }
.std-table th, .std-table td { text-align: left; padding: 7px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.std-table .std-sec th { background: var(--ink); color: #f3f2f2; font-size: .85rem; letter-spacing: .02em; }
.std-acc { font-size: .75rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.std-acc-public { background: #e3f6f3; color: #0b6a61; } .std-acc-legit { background: #e8eefc; color: #28468e; } .std-acc-authority { background: #fdeeea; color: #8a2d16; }

.pl { padding: 26px 24px; }
.pl-price { font-size: 2.3rem; }
.pl-trial { max-width: 1020px; margin: 0 auto 22px; text-align: center; background: #e6f5f3; color: var(--ink); border-radius: 12px; padding: 12px 18px; font-size: .98rem; }
.pl-trial a { font-weight: 700; white-space: nowrap; }
.pl-ent { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; max-width: 1020px; margin: 18px auto 0; text-align: left; background: var(--ink); color: #f3f2f2; border-radius: 18px; padding: 22px 26px; }
.pl-ent h3 { margin: 0 0 4px; color: #fff; }
.pl-ent p { margin: 0; color: #c4d0ce; }
.pl-ent .btn-outline { color: #f3f2f2; border-color: rgba(243, 242, 242, .45); white-space: nowrap; }
.lp-guarantee { max-width: 1020px; margin-left: auto; margin-right: auto; }
.adm-progress { display: block; width: 100%; height: 8px; margin: 8px 0 4px; appearance: none; border: 0; border-radius: 99px; overflow: hidden; background: #e8edf0; }
.adm-progress::-webkit-progress-bar { background: #e8edf0; }
.adm-progress::-webkit-progress-value { background: var(--accent); }
.adm-progress::-moz-progress-bar { background: var(--accent); }
.adm-progress.warn::-webkit-progress-value { background: #d97706; }
.adm-progress.warn::-moz-progress-bar { background: #d97706; }
/* form fields: label / control / help as three rows aligned across a grid row */
.grid > label.fld { display: grid; grid-template-rows: subgrid; grid-row: span 3; row-gap: 0; align-content: start; margin: 0.6rem 0 0; }
.grid > label.fld-wide { grid-column: 1 / -1; }
label.fld .fld-l { align-self: end; padding-bottom: 0.3rem; }
label.fld .fld-l .tier { white-space: nowrap; }
label.fld input, label.fld select, label.fld textarea { margin: 0; align-self: start; }
.fld-h { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); line-height: 1.35; padding-top: 0.25rem; }
.fld-h:empty { padding: 0; }
@supports not (grid-template-rows: subgrid) {
  .grid > label.fld { display: flex; flex-direction: column; grid-row: auto; }
  label.fld .fld-l { margin-top: auto; }
}
button.btn-outline, .wz-nav button.btn-outline { background: #fff; color: var(--accent); border: 2px solid var(--accent); }
button.btn-outline:hover { background: #e6f5f3; }

/* ---------- branding page: pickers on the left, a live impression on the right ---------- */
.br-cols { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 380px); gap: 24px; align-items: start; }
.br-field { margin-bottom: 18px; }
.br-field select { margin-top: 0.25rem; }
.br-color { display: flex; align-items: center; gap: 10px; margin-top: 0.25rem; }
.br-color input[type="color"] { width: 46px; height: 38px; padding: 2px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; margin: 0; }
.br-color input[type="text"] { margin: 0; text-transform: lowercase; }
.br-logo { display: flex; align-items: center; justify-content: center; min-height: 92px; margin-top: 0.25rem; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: repeating-conic-gradient(#f4f6f7 0% 25%, #fff 0% 50%) 50% / 16px 16px; }
.br-logo img { max-height: 72px; max-width: 100%; }
.br-logo-empty { color: var(--muted); font-size: .88rem; background: #f7f9fa; }
.br-logo-act { margin: 6px 0 0; font-size: .88rem; }
/* these two sit next to each other as plain links, not as buttons */
.br-logo-act .linklike, .br-logo-act button.linklike {
  display: inline; background: none; border: 0; border-radius: 0; padding: 0;
  color: var(--accent); font: inherit; text-decoration: underline; cursor: pointer;
}
.br-logo-act button.linklike:hover { background: none; color: #0b7f75; }
.br-file { position: absolute; opacity: 0; width: 1px !important; height: 1px; }
.br-file:focus-visible + .fld-h { outline: 2px solid var(--accent); }
.br-pv-wrap { position: sticky; top: 16px; }
.br-preview { --pv1: #0e9c8f; --pv2: #3fd0c0; --pv3: #16302f; --pvink: #f3f2f2; --pvoncore: #16302f; --pvonpv1: #f3f2f2;
  --pvfont: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; --pvfont-h: var(--pvfont);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; font-family: var(--pvfont); }
.br-pv-title, .br-pv-kicker { font-family: var(--pvfont-h); }
/* the white bar on top: this is where a logo actually appears */
.br-pv-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: #fff; }
.br-pv-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; color: #16302f; min-width: 0; }
.br-pv-brand img { max-height: 24px; max-width: 110px; }
.br-pv-brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.br-pv-langs { display: flex; gap: 6px; font-size: .62rem; font-weight: 700; color: var(--muted); }
.br-pv-langs i { font-style: normal; }
.br-pv-langs .on { color: #16302f; border-bottom: 2px solid var(--pv2); }
/* the header band, with the seal on the right. Its background is the customer's
   own colour, so every colour on it is mixed from --pvink (the readable text
   colour) instead of a fixed white. */
.br-pv-band { position: relative; display: block; padding: 16px 16px 0; background: var(--pv3); color: var(--pvink); }
.br-pv-head { padding-right: 86px; }
.br-pv-eyebrow { display: block; font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--pv2); }
.br-pv-eyebrow b { color: color-mix(in srgb, var(--pvink) 35%, transparent); }
.br-pv-title { display: block; margin: 5px 0 2px; font-size: 1.2rem; line-height: 1.1; color: var(--pvink); letter-spacing: -.02em; }
.br-pv-by { display: block; margin-bottom: 8px; font-size: .78rem; color: color-mix(in srgb, var(--pvink) 72%, transparent); }
.br-pv-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.br-pv-chip { font-style: normal; font-size: .6rem; font-weight: 700; padding: 3px 8px; border: 1px solid color-mix(in srgb, var(--pvink) 25%, transparent); border-radius: 2px; }
.br-pv-chip-seal { border-color: var(--pv2); color: var(--pv2); }
.br-pv-sealwrap { position: absolute; top: 14px; right: 14px; width: 76px; text-align: center; }
.br-pv-ring { position: relative; display: block; width: 76px; height: 76px; border-radius: 50%; border: 1px solid rgba(63, 208, 192, .35); border-color: var(--pv2); }
.br-pv-ring2 { position: absolute; inset: 7px; border-radius: 50%; border: 2px solid var(--pv2); }
.br-pv-disc { position: absolute; inset: 13px; border-radius: 50%; background: #f3f2f2; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.br-pv-disc svg { width: 62%; height: auto; }
.br-pv-disc .ph-body { fill: #d6dfe2; }
.br-pv-disc .ph-cap { fill: #bfcbd0; }
.br-pv-disc .ph-bolt { fill: var(--pv1); }
.br-pv-disc .ph-line { fill: none; stroke: #bfcbd0; stroke-width: 3; }
.br-pv-ver { display: inline-block; margin-top: -6px; padding: 2px 7px; border-radius: 2px; background: var(--pv2); color: var(--pvoncore); font-style: normal; font-size: .56rem; font-weight: 700; white-space: nowrap; }
/* the numbers strip along the bottom of the band */
.br-pv-spec { display: flex; margin-top: 14px; border-top: 1px solid color-mix(in srgb, var(--pvink) 14%, transparent); }
.br-pv-spec span { flex: 1; padding: 9px 10px 11px; border-right: 1px solid color-mix(in srgb, var(--pvink) 10%, transparent); }
.br-pv-spec span:last-child { border-right: 0; }
.br-pv-spec b { font-size: .95rem; color: var(--pvink); }
.br-pv-spec em { font-style: normal; font-size: .6rem; font-weight: 700; color: var(--pv2); margin-left: 2px; }
.br-pv-spec i { display: block; margin-top: 2px; font-style: normal; font-size: .55rem; letter-spacing: .06em; text-transform: uppercase; color: color-mix(in srgb, var(--pvink) 58%, transparent); }
.br-pv-body { display: block; padding: 14px 16px 16px; }
.br-pv-kicker { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pv1); }
.br-pv-bar { display: block; height: 8px; margin: 8px 0 14px; border-radius: 99px; background: #eef2f4; overflow: hidden; }
.br-pv-bar i { display: block; width: 62%; height: 100%; background: var(--pv1); }
.br-pv-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.br-pv-row b { color: var(--muted); font-weight: 600; }
.br-pv-btns { display: flex; gap: 8px; margin: 14px 0 10px; }
.br-pv-btn { font-style: normal; font-size: .76rem; font-weight: 700; padding: 7px 12px; border-radius: 8px; background: var(--pv1); color: var(--pvonpv1); }
.br-pv-btn-ghost { background: transparent; color: var(--pv1); border: 2px solid var(--pv1); }
.br-pv-foot { display: block; font-size: .68rem; color: var(--muted); }
@media (max-width: 900px) { .br-cols { grid-template-columns: 1fr; } .br-pv-wrap { position: static; } }

/* wizard: required first, optional behind a toggle */
.req { color: #c2410c; font-weight: 800; }
.wz-group { margin: 6px 0 0; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.wz-none { background: #f4f6f7; border-radius: 10px; padding: 12px 14px; color: var(--muted); }
/* autosave status next to the step title */
.wz-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; }
.wz-head h2 { margin: 0; }
.wz-save { font-size: .82rem; font-weight: 600; padding: 4px 10px; border-radius: 99px; white-space: nowrap; }
.wz-save-idle { color: var(--muted); background: #f1f4f6; }
.wz-save-busy { color: #92600a; background: #fef6e7; }
.wz-save-ok { color: #0f5f57; background: #e6f5f3; }
.wz-save-warn { color: #7c1d1d; background: #fdeaea; }
.wz-opt { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.wz-opt > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 2px solid var(--accent); border-radius: 10px; color: var(--accent); font-weight: 700; font-size: .92rem; user-select: none; }
.wz-opt > summary::-webkit-details-marker { display: none; }
.wz-opt > summary::before { content: "+"; font-size: 1.1rem; line-height: 1; }
.wz-opt[open] > summary::before { content: "−"; }
.wz-opt > summary small { font-weight: 500; color: var(--muted); }
.wz-opt .wz-hide, .wz-opt[open] .wz-show { display: none; }
.wz-opt[open] .wz-hide { display: inline; }
.wz-opt[open] > summary { margin-bottom: 4px; }

/* refusing a supplier answer: the button opens the reason, nothing happens before that */
.sup-reject { display: inline-block; vertical-align: top; }
.sup-reject > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; padding: 10px 18px; border: 2px solid var(--accent); border-radius: 10px; color: var(--accent); font-weight: 700; user-select: none; }
.sup-reject > summary::-webkit-details-marker { display: none; }
.sup-reject > summary:hover { background: #e6f5f3; }
.sup-reject[open] { display: block; margin-top: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: #fbfcfc; }
.sup-reject[open] > summary { margin-bottom: 10px; }
.sup-reject textarea { margin-top: 0.25rem; }

.adm-filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 8px; }
.adm-filter input[type="search"] { flex: 1 1 260px; margin: 0; }
.adm-filter select { width: auto; margin: 0; }

.req-any { font-size: .66rem; font-weight: 700; color: #c2410c; background: #fff1e8; border-radius: 99px; padding: 1px 7px; vertical-align: middle; }
.wz-group-full { margin-top: 18px; color: var(--accent); }
.rd { border-radius: 10px; padding: 10px 14px; margin: 8px 0; }
.rd-ok { background: #e6f5f3; color: #0f5f57; }
.rd-gap { background: #fff7e6; border: 1px solid #f1d7a3; }
.rd-table { width: 100%; margin-top: 8px; }
.rd-table th { width: 26%; text-align: left; vertical-align: top; font-size: .88rem; padding: 6px 8px 6px 0; }
.rd-table td { vertical-align: top; padding: 6px 8px 6px 0; border-bottom: 1px solid #f1e4c8; }
.rd-list { margin: 0; padding-left: 18px; font-size: .9rem; columns: 2; column-gap: 24px; }
.rd-act { width: 1%; white-space: nowrap; text-align: right; }
@media (max-width: 760px) { .rd-list { columns: 1; } .rd-table th { width: auto; } }

button.btn-xs, .rd-act .btn-xs { padding: 0.3rem 0.75rem; font-size: 0.8rem; line-height: 1.3; border-radius: 6px; box-shadow: none; margin: 0; }

/* console sidebar: sections that fold open, one call-to-action */
.adm-nav { padding: 0.8rem 0; gap: 1px; }
.adm-nav a.adm-cta { margin: 0 0.9rem 0.7rem; padding: 0.55rem 0.9rem; border: 0; border-radius: 9px; background: #3fd0c0; color: #16302f; font-weight: 800; text-align: center; }
.adm-nav a.adm-cta:hover, .adm-nav a.adm-cta.on { background: #6fe0d3; color: #16302f; }
.adm-nav a.adm-g { display: flex; align-items: center; gap: 0.4rem; font-weight: 600; }
.adm-nav a.adm-g.open { color: #fff; }
.adm-caret { margin-left: auto; font-size: 0.7rem; opacity: 0.55; }
.adm-subnav { display: flex; flex-direction: column; margin: 0 0 0.4rem; background: rgba(0, 0, 0, 0.12); }
.adm-subnav a { padding: 0.38rem 1.2rem 0.38rem 2rem !important; font-size: 0.87rem !important; }
.adm-count { display: inline-block; min-width: 1.3em; padding: 0 0.4em; border-radius: 99px; background: #e0a23a; color: #16302f; font-size: 0.7rem; font-weight: 800; text-align: center; line-height: 1.5; }
.adm-foot button.linklike { background: transparent; box-shadow: none; font-weight: 500; }
.adm-foot button.linklike:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 900px) {
  .adm-subnav { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .adm-subnav a { padding: 0.35rem 0.8rem !important; }
  .adm-nav a.adm-cta { margin: 0 0.6rem 0.4rem; }
}

/* sections fold with <details>: the name toggles, only items navigate */
.adm-grp > summary.adm-g { list-style: none; cursor: pointer; user-select: none; display: flex; align-items: center; gap: 0.4rem;
  color: #d5e6e3; padding: 0.5rem 1.2rem; font-size: 0.93rem; font-weight: 600; border-left: 3px solid transparent; }
.adm-grp > summary.adm-g::-webkit-details-marker { display: none; }
.adm-grp > summary.adm-g:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.adm-grp[open] > summary.adm-g { color: #fff; }
.adm-grp > summary .adm-caret::before { content: "▸"; }
.adm-grp[open] > summary .adm-caret::before { content: "▾"; }
.adm-grp[open] > summary .adm-count { display: none; }
.adm-grp > summary:focus-visible { outline: 2px solid #3fd0c0; outline-offset: -2px; }
@media (max-width: 900px) { .adm-grp { width: 100%; } }
