:root {
  --fg: #14213D;
  --muted: #64748b;
  --bg: #F4F8FF;
  --card: #ffffff;
  --accent: #2f6fed;
  --accent-soft: #E7EFFF;
  --accent-yellow: #FFC94D;
  --deep: #14213D;
  --danger: #b3261e;
  --warn: #c47d00;
  --ok: #16a34a;
  --border: #E4E8F0;
  --radius: 12px;
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.01em; }

/* Dark, branded admin bar, instantly distinct from the white public nav. */
header { background: var(--deep); padding: 12px 24px; box-shadow: 0 2px 14px rgba(20,33,61,.20); }
nav { display: flex; gap: 22px; align-items: center; max-width: 1100px; margin: 0 auto; }
nav a { color: #cbd5e1; font-weight: 600; font-size: 0.95rem; }
nav a:hover { color: #ffffff; text-decoration: none; }
nav .brand { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #ffffff; letter-spacing: -.02em; margin-right: 8px; }
nav .brand span { color: #6ea8ff; }
nav .brand:hover { text-decoration: none; color: #ffffff; }
.admin-tag { font-size: 0.64rem; font-weight: 800; color: var(--deep); background: var(--accent-yellow); text-transform: uppercase; letter-spacing: .1em; padding: 3px 8px; border-radius: 6px; margin-right: 18px; }
.viewsite { margin-left: auto; color: var(--accent-yellow); }
.viewsite:hover { color: var(--accent-yellow); }

main { max-width: 1100px; margin: 28px auto; padding: 0 24px; }
h1 { margin: 0 0 16px 0; }

.muted { color: var(--muted); }
.crumbs { color: var(--muted); margin-bottom: 8px; font-size: 0.9em; }

.flash { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }
.flash-success { background: #e8f5e9; color: var(--ok); }
.flash-error { background: #fdecea; color: var(--danger); }

.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.brand-card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px; color: var(--fg); }
.brand-card:hover { border-color: var(--accent); text-decoration: none; }
.brand-card-header { display: flex; justify-content: space-between; align-items: center; }
.brand-card-header h2 { margin: 0; font-size: 1.2em; }
.brand-card dl { margin: 12px 0 0 0; }
.brand-card dt { font-size: 0.8em; color: var(--muted); margin-top: 8px; }
.brand-card dd { margin: 2px 0 0 0; }

.badge { font-size: 0.75em; padding: 2px 8px; border-radius: 10px; }
.badge-on { background: var(--accent-soft); color: var(--accent); }
.badge-off { background: #eee; color: var(--muted); }

.status-success, .status-running, .status-failed, .status-pending { font-weight: 600; }
.status-success { color: var(--ok); }
.status-running { color: var(--accent); }
.status-failed { color: var(--danger); }
.status-pending { color: var(--warn); }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin: 16px 0; }
.tab { padding: 8px 16px; border-bottom: 2px solid transparent; color: var(--muted); }
.tab.active { color: var(--fg); border-bottom-color: var(--accent); }

form.stacked { display: flex; flex-direction: column; gap: 14px; max-width: 640px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
form.stacked label { display: flex; flex-direction: column; gap: 4px; font-size: 0.9em; color: var(--muted); }
form.stacked input[type=text],
form.stacked input[type=email],
form.stacked input[type=number],
form.stacked input[type=password],
form.stacked select,
form.stacked textarea { font: inherit; padding: 8px 10px; border: 1px solid var(--border); border-radius: 4px; background: white; color: var(--fg); }
form.stacked textarea { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 0.9em; }
form.stacked button { align-self: flex-start; padding: 10px 18px; background: var(--accent); color: white; border: none; border-radius: 4px; cursor: pointer; font: inherit; }
form.stacked button:hover { background: #1D4FD0; }

.brand-list { list-style: none; padding: 0; }
.brand-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }

.page-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.btn-primary { display: inline-block; padding: 10px 18px; background: var(--accent); color: white; border: none; border-radius: 4px; cursor: pointer; font: inherit; font-weight: 600; }
.btn-primary:hover { background: #1D4FD0; color: white; text-decoration: none; }
.hint { color: var(--muted); font-size: 0.82em; font-weight: 400; }
.req { color: var(--danger); }
.btn-danger { padding: 10px 18px; background: var(--danger); color: white; border: none; border-radius: 4px; cursor: pointer; font: inherit; font-weight: 600; }
.btn-danger:hover { background: #8f1e18; }
.btn-warn { padding: 10px 18px; background: #ea7317; color: white; border: none; border-radius: 10px; cursor: pointer; font: inherit; font-weight: 600; }
.btn-warn:hover { background: #c75e0c; color: white; text-decoration: none; }
.actions { margin: 16px 0; }

.data-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.data-table th, .data-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92em; }
.data-table th { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: #EEF3FB; }

.status-skipped { color: var(--muted); }
.status-cancelled { color: var(--muted); font-weight: 600; text-decoration: line-through; }

.kv { display: grid; grid-template-columns: 160px 1fr; gap: 6px 16px; max-width: 720px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; margin: 12px 0; }
.kv dt { color: var(--muted); font-size: 0.88em; }
.kv dd { margin: 0; }

.block { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; white-space: pre-wrap; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 0.88em; color: var(--fg); }

.post-body { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px 28px; max-width: 720px; line-height: 1.6; }
.post-body h2 { font-size: 1.3em; margin-top: 1.4em; }
.post-body p { margin: 0.8em 0; }

/* SEO tracking panel (brand detail) */
.seo-panel { margin: 26px 0 30px; padding: 20px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.seo-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.seo-panel-head h2 { margin: 0; font-size: 1.15rem; }
.seo-panel .hint { margin: 0 0 14px; }
.seo-up { color: var(--ok); font-weight: 700; }
.seo-down { color: var(--danger); font-weight: 700; }
.linklike { background: none; border: none; color: var(--danger); cursor: pointer; font: inherit; padding: 0 4px; }
.linklike:hover { text-decoration: underline; }

/* brand polish: softer, more on-brand cards + controls (overrides earlier radii) */
.data-table, .brand-card, .seo-panel, .kv, form.stacked, .post-body, .block {
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(20, 33, 61, .05);
}
.btn-primary, .btn-danger, form.stacked button { border-radius: 10px; }
.brand-card:hover { box-shadow: 0 8px 22px rgba(47, 111, 237, .12); }

/* Blog calendar */
.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0 0 16px; font-size: .85rem; color: var(--muted); align-items: center; }
.cal-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.cal-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: none; }
.cal-dot-appr { background: #16a34a; }
.cal-dot-gen { background: #2f6fed; }
.cal-dot-sched { background: transparent; border: 2px solid #f59e0b; width: 9px; height: 9px; }
.cal-today-key { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; background: var(--accent-yellow); color: var(--deep); font-weight: 800; font-size: .68rem; }
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 18px; }
.cal-month-label { font-family: var(--font-display); font-weight: 700; color: var(--fg); margin: 0 0 6px; font-size: .98rem; }
.cal-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.cal-table th { font-size: .64rem; color: var(--muted); font-weight: 700; padding: 2px 0; text-transform: uppercase; }
.cal-table td { height: 40px; vertical-align: top; border: 1px solid var(--border); position: relative; padding: 3px 4px; }
.cal-blank { background: #fafbfd; border-color: #f0f2f6; }
.cal-num { font-size: .72rem; color: var(--muted); }
.cal-today { background: var(--accent-yellow); }
.cal-today .cal-num { color: var(--deep); font-weight: 800; }
.cal-marks { display: flex; gap: 3px; position: absolute; left: 4px; bottom: 4px; }
.cal-has { cursor: pointer; }
.cal-has:hover { background: #eef3fb; }
.cal-today.cal-has:hover { background: #ffdf8f; }
.cal-pop { display: none; position: absolute; z-index: 40; left: 0; top: calc(100% + 4px); width: 232px; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 32px rgba(20,33,61,.20); padding: 10px 12px; }
.cal-has:hover .cal-pop, .cal-day:focus-within .cal-pop { display: block; }
.cal-pop-item { padding: 6px 0; border-bottom: 1px solid var(--border); }
.cal-pop-item:last-child { border-bottom: none; }
.cal-pop-title { font-weight: 700; font-size: .82rem; color: var(--fg); line-height: 1.3; }
.cal-pop-meta { font-size: .72rem; margin: 2px 0; }
.cal-pop-links { display: flex; gap: 12px; font-size: .78rem; }

/* indefinite free trial checkbox */
.ff-check { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; cursor: pointer; }
.ff-check input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; flex: none; }

/* plan & cadence control (Customer & billing) */
.plan-form { margin: 4px 0 8px; }
.plan-form > label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.plan-form-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.plan-form-row select { min-width: 260px; padding: 9px 12px; border: 1px solid var(--border); border-radius: 10px;
  font: inherit; color: var(--fg); background: #fff; }
.plan-form-row input[type=number] { width: 86px; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 10px; font: inherit; }
.plan-form-row .btn-primary { padding: 9px 16px; }
.plan-form .hint { margin: 0; }

/* grouped billing actions (free toggle / cancel sub / delete), each labeled */
.billing-actions { display: flex; flex-direction: column; gap: 12px; }
.billing-action { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 10px 12px; border: 1px solid var(--border, #e2e2e2); border-radius: 8px; }
.billing-action > form { flex: none; min-width: 200px; }
.billing-action > .hint { flex: 1; min-width: 220px; margin: 0; }

/* ---- Account health hero (top of brand dashboard) ---- */
.health-hero { display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; border-left: 5px solid var(--accent); }
.health-hero.tone-great { border-left-color: var(--ok); }
.health-hero.tone-ok   { border-left-color: var(--accent); }
.health-hero.tone-warn { border-left-color: var(--warn); }
.health-hero.tone-bad  { border-left-color: var(--danger); }
.health-main { flex: 1 1 280px; min-width: 240px; }
.health-pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display);
  font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; padding: 6px 14px; border-radius: 999px; }
.health-pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.health-pill.tone-great { background: #E9F8EF; color: var(--ok); }
.health-pill.tone-ok   { background: var(--accent-soft); color: var(--accent); }
.health-pill.tone-warn { background: #FFF4E0; color: var(--warn); }
.health-pill.tone-bad  { background: #FDECEA; color: var(--danger); }
.health-note { margin: 12px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.5; max-width: 46ch; }
.health-signals { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 26px; flex: 0 1 auto; }
.hsig { display: flex; flex-direction: column; gap: 2px; }
.hsig-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.hsig-value { font-size: .95rem; font-weight: 600; color: var(--fg); }

/* ---- Calendar + stats layout ---- */
.cal-nav { display: inline-flex; align-items: center; gap: 8px; }
.cal-nav-btn { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: 1rem; line-height: 1; }
.cal-nav-btn:hover { background: var(--accent); color: #fff; text-decoration: none; }
.cal-nav-label { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--fg);
  min-width: 168px; text-align: center; }
.cal-nav-today { font-size: .8rem; font-weight: 700; color: var(--accent); margin-left: 4px; }
.cal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 264px; gap: 24px; align-items: start; }
.cal-main { min-width: 0; }

.cal-stats h3 { font-family: var(--font-display); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin: 0 0 10px; }
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.kpi { background: linear-gradient(180deg, #fff, #fbfcff); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 13px; display: flex; flex-direction: column; gap: 1px; }
.kpi-icon { font-size: 1.05rem; line-height: 1; }
.kpi-value { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--fg);
  letter-spacing: -.02em; margin-top: 4px; }
.kpi-label { font-size: .82rem; font-weight: 700; color: var(--fg); }
.kpi-sub { font-size: .72rem; color: var(--muted); }

@media (max-width: 860px) {
  .cal-layout { grid-template-columns: 1fr; }
  .cal-stats { order: -1; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .health-signals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-nav-label { min-width: 0; }
}

/* ============ Brand portal (/app) ============ */
/* Auth screens (login / forgot / set-password) */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 32px 18px; }
.auth-card { width: 100%; max-width: 400px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 18px 50px rgba(20,33,61,.12); padding: 32px 30px; }
.auth-brand { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -.02em; color: var(--deep); margin-bottom: 14px; }
.auth-brand span { color: var(--accent); }
.auth-brand:hover { text-decoration: none; }
.auth-card h1 { font-size: 1.5rem; margin: 0 0 4px; }
.auth-card .muted { margin: 0 0 18px; font-size: .95rem; }
.auth-form label { display: block; font-size: .85rem; font-weight: 700; color: var(--fg); margin-bottom: 14px; }
.auth-form input { display: block; width: 100%; margin-top: 6px; padding: 11px 13px; font: inherit;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.auth-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,111,237,.15); }
.auth-form .hint { display: block; margin: -8px 0 14px; }
.auth-form .btn-primary { width: 100%; padding: 12px; font-size: 1rem; }
.auth-error { background: #fdecea; color: var(--danger); border-radius: 10px; padding: 10px 14px;
  font-size: .9rem; font-weight: 600; margin-bottom: 16px; }
.auth-alt { margin: 16px 0 0; font-size: .9rem; text-align: center; }

/* Impersonation banner (admin viewing a brand as the client) */
.imp-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center;
  gap: 12px; padding: 11px 20px; background: var(--accent-yellow); color: var(--deep);
  font-weight: 700; font-size: .95rem; box-shadow: 0 4px 16px rgba(20,33,61,.22); }
.imp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--deep); flex: none;
  animation: imp-pulse 1.4s ease-in-out infinite; }
@keyframes imp-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.imp-text { font-weight: 600; }
.imp-exit { margin-left: auto; background: var(--deep); color: #fff; font-weight: 800; font-size: .85rem;
  padding: 7px 14px; border-radius: 8px; }
.imp-exit:hover { background: #000; color: #fff; text-decoration: none; }
body:has(#imp-bar) > main { padding-top: 52px; }
@media (prefers-reduced-motion: reduce) { .imp-dot { animation: none; } }

/* Active client-nav link */
nav a.nav-on { color: #fff; }
nav a.nav-on::after { content: ""; display: block; height: 2px; background: var(--accent-yellow); margin-top: 3px; border-radius: 2px; }

/* Help articles (Support) */
.help-list { display: flex; flex-direction: column; gap: 8px; }
.help-item { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #fff; }
.help-item summary { font-weight: 700; cursor: pointer; color: var(--fg); font-size: .96rem; }
.help-item[open] summary { margin-bottom: 8px; }
.help-item p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* Cancellation gate */
.cancel-gate p { font-size: 1rem; }
.cancel-points { list-style: none; margin: 14px 0 16px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cancel-points li { background: var(--bg, #F4F8FF); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-size: .95rem; line-height: 1.5; }
.cancel-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 4px; }

/* ===== Activity panel: month nav over the calendar, stats pulled up ===== */
.cal-head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 12px; }
.cal-head-row h2 { margin: 0; font-size: 1.15rem; }

/* Awaiting-review KPI: clickable, highlights yellow when a draft waits, hover popover */
.kpi-awaiting { position: relative; }
.kpi-awaiting[role="button"] { cursor: pointer; }
.kpi-awaiting[role="button"]:hover { box-shadow: 0 8px 22px rgba(47,111,237,.16); }
.kpi-highlight { border-color: var(--accent-yellow); background: linear-gradient(180deg, #FFF7E0, #FFFDF6);
  box-shadow: 0 0 0 2px rgba(255,201,77,.55); }
.kpi-highlight .kpi-value { color: var(--warn); }
.kpi-pop { position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: 230px; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 14px 36px rgba(20,33,61,.22); padding: 14px; font-size: .84rem; color: var(--fg);
  text-align: center; line-height: 1.45; display: none; z-index: 40; }
.kpi-pop img { display: block; margin: 0 auto 8px; }
.kpi-awaiting:hover .kpi-pop, .kpi-awaiting:focus-within .kpi-pop { display: block; }

/* Review-latest-blog button + count badge */
.review-btn { position: relative; }
.review-btn-on { box-shadow: 0 0 0 3px rgba(255,201,77,.55); }
.review-badge { display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--accent-yellow); color: var(--deep); font-size: .72rem; font-weight: 800; }

/* ===== Review modal (blog preview iframe + approve / request changes) ===== */
.rv-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(20,33,61,.55);
  display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.rv-overlay[hidden] { display: none; }
.rv-box { position: relative; width: 100%; max-width: 780px; background: #fff; border-radius: 16px;
  box-shadow: 0 30px 80px rgba(20,33,61,.45); padding: 18px 18px 20px; }
.rv-close { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; cursor: pointer;
  background: #fff; border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; line-height: 1; z-index: 2; }
.rv-frame { width: 100%; height: 62vh; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.rv-box-tall .rv-frame { height: 40vh; }
.rv-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.rv-action { flex: 1 1 280px; display: flex; flex-direction: column; gap: 6px; }
.rv-action .rv-btn { width: fit-content; }
.rv-note { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.rv-edit-form { margin-top: 14px; display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border); padding-top: 14px; }
.rv-edit-form[hidden] { display: none; }
.rv-edit-form label { font-weight: 700; font-size: .9rem; }
.rv-edit-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; }
.rv-edit-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,111,237,.15); }
@media (max-width: 520px) { .rv-frame { height: 70vh; } }

/* Portal-invite row (admin) + reactivate options (portal account) */
.portal-access { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin: 4px 0 14px; }
.portal-access .hint { display: block; margin: 2px 0 0; }
.reactivate-panel { border-left: 5px solid var(--accent-yellow); }
.reactivate-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 6px; }
.pay-card { position: relative; border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: #fff; }
.pay-card-head { display: flex; align-items: center; gap: 8px; font-size: 1.02rem; margin-bottom: 4px; }
.pay-icon { font-size: 1.3rem; line-height: 1; }
.pay-card-soon { border-style: dashed; opacity: .92; }
.pay-card-soon button[disabled] { opacity: .6; cursor: not-allowed; }
.pay-soon-tag { position: absolute; top: 12px; right: 14px; font-size: .66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--accent); background: var(--accent-soft);
  border-radius: 999px; padding: 3px 9px; }
.pay-card .hint { margin: 0 0 10px; }
