/* Sherbert dashboard styles.
 *
 * Designed to live INSIDE the herbiecreative.com look: white page,
 * Arial Black for big headings, Arial for body, the teal/orange
 * primary/secondary tokens from /styles.css. The dashboard reads as
 * one more section of herbiecreative.com, not a separate dark app.
 *
 * Inherits these color tokens from /styles.css:
 *   --primary-color: #03A6A1   (teal)
 *   --secondary-color: #FFA673 (orange)
 *
 * If a future theme rotation on the homepage redefines those tokens,
 * Sherbert follows automatically.
 */

/* ---------- base ---------- */

.sb-body {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  --sb-font-body: 'Arial', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.55;
  min-height: 100vh;
}

.sb-body p,
.sb-body li,
.sb-body input,
.sb-body button,
.sb-body td,
.sb-body th {
  font-family: var(--sb-font-body);
  font-weight: 400;
}

.sb-body a {
  color: var(--primary-color, #03A6A1);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sb-body a:hover {
  color: var(--secondary-color, #FFA673);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ---------- top header (back to home + page-level nav) ---------- */

.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
.sb-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #555;
  font-family: var(--sb-font-body);
  font-weight: 500;
  text-decoration: none;
}
.sb-back:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.sb-nav { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.sb-nav a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #f2f3f4;
  color: #333;
  font-family: var(--sb-font-body);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.sb-nav a:hover {
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.12);
  color: var(--primary-color);
  text-decoration: none;
  border-color: rgba(var(--primary-color-rgb, 3, 166, 161), 0.3);
}

/* ---------- main column ---------- */

.sb-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem) 4rem;
}

/* ---------- hero card ---------- */

.sb-hero {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(var(--primary-color-rgb, 3, 166, 161), 0.18), transparent 60%),
    radial-gradient(700px 400px at 100% 0%, rgba(var(--secondary-color-rgb, 255, 166, 115), 0.22), transparent 60%),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.sb-hero-kicker {
  margin: 0 0 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: baseline;
}
.sb-wordmark {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--primary-color);
}
.sb-tagline {
  font-family: var(--sb-font-body);
  font-size: 1rem;
  font-style: italic;
  color: #666;
}
.sb-hero-title {
  margin: 0.2rem 0 0.85rem;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.12;
  color: #222;
}
.sb-hero-body {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: #444;
  max-width: 62ch;
}
.sb-hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
}
.sb-hero-stats li {
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.1);
  border: 1px solid rgba(var(--primary-color-rgb, 3, 166, 161), 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #333;
  font-family: var(--sb-font-body);
}
.sb-hero-stats strong {
  color: var(--primary-color);
  margin-right: 0.25rem;
  font-family: 'Arial Black', 'Arial', sans-serif;
}

/* ---------- sticky section nav ---------- */

.sb-section-nav {
  position: sticky;
  top: 64px;          /* sits just under the page header */
  z-index: 25;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0 0 1.25rem;
  padding: 0.55rem 0;
}
.sb-section-nav-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 0.25rem;
  scrollbar-width: thin;
}
.sb-section-nav-inner::-webkit-scrollbar { height: 6px; }
.sb-section-nav-inner::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 999px; }
.sb-section-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #f4f5f6;
  color: #333;
  font-family: var(--sb-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sb-section-link i { font-size: 0.85em; opacity: 0.85; }
.sb-section-link:hover {
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.12);
  color: var(--primary-color);
  text-decoration: none;
}
.sb-section-link.is-active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.sb-section-link.is-active:hover { color: #fff; }

/* ---------- section blocks ---------- */

.sb-section {
  margin: 1.5rem 0 2.5rem;
  scroll-margin-top: 130px; /* clear the sticky nav when anchor-jumping */
}
.sb-section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary-color);
}
.sb-section-header h2 {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sb-section-header h2 i { color: var(--primary-color); }
.sb-section-blurb {
  margin: 0;
  font-size: 0.92rem;
  color: #666;
  font-style: italic;
}
.sb-section-empty {
  color: #888;
  font-style: italic;
  margin: 0.5rem 0;
}

/* ---------- Affects YOU / Brain Freeze ---------- */

.sb-affects {
  background: linear-gradient(135deg,
    rgba(255, 86, 86, 0.08),
    rgba(var(--secondary-color-rgb, 255, 166, 115), 0.08));
  border: 1px solid rgba(255, 86, 86, 0.3);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.5rem;
  scroll-margin-top: 130px;
}
.sb-affects h2 {
  margin: 0 0 0.6rem;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.15rem;
  color: #a32525;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sb-affects-list { list-style: none; padding: 0; margin: 0; }
.sb-affects-list > li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.sb-affects-list > li:last-child { border-bottom: none; }
.sb-affects-when {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: #a32525;
  font-family: var(--sb-font-body);
}
.sb-affects-more { margin: 0.8rem 0 0; font-size: 0.95rem; }

/* ---------- filter pills ---------- */

.sb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}
.sb-pill {
  background: #f2f3f4;
  color: #333;
  border: 1px solid #e3e4e6;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--sb-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.sb-pill:hover {
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.12);
  color: var(--primary-color);
  border-color: rgba(var(--primary-color-rgb, 3, 166, 161), 0.4);
}
.sb-pill.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* ---------- card grid ---------- */

.sb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.sb-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.sb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-color-rgb, 3, 166, 161), 0.5);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.sb-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #777;
  font-family: var(--sb-font-body);
}
.sb-source { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.sb-card-title {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #222;
}
.sb-card-title a { color: #222; }
.sb-card-title a:hover { color: var(--primary-color); text-decoration: none; }
.sb-card-tldr {
  margin: 0;
  font-size: 0.94rem;
  color: #444;
}
.sb-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.8rem;
  color: #888;
  padding-top: 0.4rem;
  font-family: var(--sb-font-body);
}

/* ---------- badges ---------- */

.sb-badge {
  display: inline-block;
  font-family: var(--sb-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sb-badge--free  { background: rgba(54, 186, 152, 0.16); color: #0f6b4d; }
.sb-badge--paid  { background: rgba(var(--secondary-color-rgb, 255, 166, 115), 0.22); color: #b04a16; }
.sb-badge--mixed { background: rgba(60, 130, 220, 0.12); color: #244c8a; }
.sb-badge--ow    { background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.16); color: #016b67; }

.sb-chip {
  display: inline-block;
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.12);
  color: var(--primary-color);
  font-family: var(--sb-font-body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
}
.sb-meta { color: #999; font-size: 0.82rem; font-family: var(--sb-font-body); }

/* ---------- watchlist + X embeds ---------- */

.sb-watchlist h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sb-handle {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin: 0 0 1rem;
}
.sb-handle--special {
  background: linear-gradient(135deg,
    rgba(var(--primary-color-rgb, 3, 166, 161), 0.1),
    rgba(var(--secondary-color-rgb, 255, 166, 115), 0.1));
  border-color: rgba(var(--primary-color-rgb, 3, 166, 161), 0.32);
}
.sb-handle header { margin-bottom: 0.6rem; }
.sb-handle h3 {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.1rem;
  color: #222;
}
.sb-handle h4 {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1rem;
  color: #222;
}
.sb-handle h4 a { color: #222; }
.sb-handle h4 a:hover { color: var(--primary-color); text-decoration: none; }
.sb-handle-name {
  color: #777;
  font-weight: 400;
  font-family: var(--sb-font-body);
  margin-left: 0.4rem;
  font-size: 0.9rem;
}
.sb-handle-notes {
  margin: 0.3rem 0 0;
  color: #555;
  font-size: 0.92rem;
  font-family: var(--sb-font-body);
}

.sb-tier { margin: 1.5rem 0; }
.sb-tier-title {
  font-family: var(--sb-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin: 0 0 0.6rem;
}
.sb-tier-empty {
  color: #999;
  font-style: italic;
  margin: 0 0 0.6rem;
}

/* "Why this matters" annotation above the embedded tweet. */
.sb-post-why {
  margin: 0.5rem 0 0.6rem;
  padding: 0.55rem 0.85rem;
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.08);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: #333;
  font-family: var(--sb-font-body);
}
.sb-post-why::before {
  content: "Why this matters: ";
  color: var(--primary-color);
  font-weight: 700;
}

/* Embedded tweet wrapper. widgets.js inserts the real iframe inside
   here; the fallback (no JS) is just the raw text. */
.sb-tweet {
  margin: 0 0 1rem !important;
}

/* ---------- empty state ---------- */

.sb-empty {
  text-align: left;
  padding: 1.5rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  max-width: 62ch;
}
.sb-empty h2 {
  margin: 0 0 0.5rem;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.3rem;
}
.sb-empty-cta { margin: 1rem 0 0.4rem; color: #555; font-family: var(--sb-font-body); }
.sb-empty-list { padding-left: 1.2rem; margin: 0.4rem 0 0; font-family: var(--sb-font-body); }
.sb-empty-list li { margin: 0.3rem 0; }
.sb-empty-line {
  color: #888;
  font-family: var(--sb-font-body);
  font-style: italic;
}

/* ---------- generic section headers (archive, scorecard, etc) ---------- */

.sb-section-head {
  margin: 0.5rem 0 1.5rem;
}
.sb-section-head h1 {
  margin: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: #222;
}
.sb-section-sub {
  margin: 0.4rem 0 0;
  color: #555;
  font-family: var(--sb-font-body);
}

/* ---------- archive list ---------- */

.sb-archive-list { list-style: none; padding: 0; margin: 0; }
.sb-archive-item a {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  color: #222;
  font-family: var(--sb-font-body);
  margin-bottom: 0.4rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.sb-archive-item a:hover {
  background: rgba(var(--primary-color-rgb, 3, 166, 161), 0.08);
  border-color: rgba(var(--primary-color-rgb, 3, 166, 161), 0.45);
  text-decoration: none;
}
.sb-archive-date { font-weight: 700; color: var(--primary-color); font-size: 0.95rem; }
.sb-archive-headline { color: #222; }
.sb-archive-count { font-size: 0.85rem; color: #777; }

/* ---------- Affects YOU full page ---------- */

.sb-affects-block {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
}
.sb-affects-block h2 {
  margin: 0 0 0.8rem;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.25rem;
  color: #222;
}
.sb-affects-row {
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.sb-affects-row:last-child { border-bottom: none; }
.sb-affects-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.sb-affects-remediation {
  margin: 0.35rem 0;
  font-family: var(--sb-font-body);
  color: #333;
}

/* ---------- scorecard ---------- */

.sb-kitchen-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.5rem;
}
.sb-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.sb-stat-label {
  font-family: var(--sb-font-body);
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.sb-stat-value {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.7rem;
  color: #222;
}
.sb-stat-sub {
  font-family: var(--sb-font-body);
  font-size: 0.8rem;
  color: #888;
}

.sb-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sb-font-body);
  font-size: 0.95rem;
}
.sb-table th,
.sb-table td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sb-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  font-weight: 600;
}
.sb-table td.num { font-variant-numeric: tabular-nums; text-align: right; }
.sb-table th.num { text-align: right; }

.sb-registry { list-style: none; padding: 0; margin: 0.6rem 0; }
.sb-registry li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-family: var(--sb-font-body);
}
.sb-registry code {
  background: #f3f4f5;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: 'Menlo', 'Consolas', monospace;
}

/* sparkline svg */
.sb-spark {
  display: inline-block;
  vertical-align: middle;
}
.sb-spark-line { fill: none; stroke: var(--primary-color); stroke-width: 1.5; }
.sb-spark-fill { fill: rgba(var(--primary-color-rgb, 3, 166, 161), 0.18); }
.sb-spark-dot { fill: var(--secondary-color, #FFA673); }

/* Kitchen mini block on the dashboard. Smaller than the scorecard
   page, just enough so today's totals show without a second click. */
.sb-kitchen-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
}
.sb-kitchen-mini .sb-stat-card { padding: 0.8rem 0.95rem; }
.sb-kitchen-mini .sb-stat-value { font-size: 1.35rem; }

/* ---------- footer ---------- */

.sb-foot {
  margin-top: 4rem;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}
.sb-foot-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sb-foot p {
  margin: 0.2rem 0;
  color: #555;
  font-family: var(--sb-font-body);
}
.sb-foot-meta { font-size: 0.9rem; }

.sb-error {
  background: rgba(255, 86, 86, 0.1);
  color: #a32525;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-family: var(--sb-font-body);
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .sb-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem;
  }
  .sb-archive-item a { grid-template-columns: 1fr; }
  .sb-archive-count { justify-self: start; }
  .sb-section-nav { top: 0; }
}

/* ---------- signup form ---------- */

.sb-signup-form {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(var(--secondary-color-rgb, 255, 166, 115), 0.08);
  border: 1px solid rgba(var(--secondary-color-rgb, 255, 166, 115), 0.4);
  border-radius: 12px;
  max-width: 560px;
}
.sb-signup-label {
  display: block;
  font-family: var(--sb-font-body);
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.sb-signup-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  position: relative;
}
.sb-signup-row input[type="email"] {
  flex: 1 1 240px;
  min-width: 180px;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: #222;
  font-family: var(--sb-font-body);
  font-size: 1rem;
}
.sb-signup-row input[type="email"]:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 255, 166, 115), 0.25);
}
.sb-signup-row button {
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  border: 0;
  background: var(--secondary-color);
  color: #fff;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: filter 0.15s;
}
.sb-signup-row button:hover { filter: brightness(1.08); }
.sb-signup-row button:disabled { opacity: 0.7; cursor: wait; }
.sb-signup-btn-busy { display: none; }
.sb-signup-form.is-busy .sb-signup-btn-label { display: none; }
.sb-signup-form.is-busy .sb-signup-btn-busy { display: inline; }
.sb-signup-msg {
  margin: 0.55rem 0 0;
  font-family: var(--sb-font-body);
  font-size: 0.88rem;
  color: #555;
  min-height: 1.2em;
}
.sb-signup-msg.is-ok    { color: #1f7a4a; }
.sb-signup-msg.is-err   { color: #a32525; }

.sb-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sb-btn-inline {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--secondary-color);
  color: #fff !important;
  border-radius: 6px;
  font-family: 'Arial Black', 'Arial', sans-serif;
}
.sb-btn-inline:hover { text-decoration: none; filter: brightness(1.08); color: #fff !important; }
.sb-family {
  color: #777;
  font-weight: 400;
  font-family: var(--sb-font-body);
  font-size: 0.92em;
  margin-left: 0.2em;
}
