/* ============================================================
   SILENT BID PRO — Marketing Landing Page
   Self-contained design system for index.php. Loaded last so it
   owns every `.sbp-*` class here without touching other pages.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --sbp-ink: #0B1D16;          /* near-black green: reserved dark accents */
  --sbp-ink-2: #0e2419;        /* raised dark surface */
  --sbp-white: #FFFFFF;
  --sbp-off: #FAFAFB;          /* very light grey band (50% lighter) */

  /* Brand green (identity, accents, live states) */
  --sbp-forest: #14532D;
  --sbp-forest-2: #1B5E3B;
  --sbp-forest-soft: #E7F0EA;  /* tinted fills */
  --sbp-green-glow: rgba(27, 94, 59, 0.35);

  /* Black CTA with a soft, desaturated sage label (quiet relative of "More") */
  --sbp-cta-bg: #0C100E;
  --sbp-cta-hover: #171D1A;
  --sbp-cta-text: #A9CBB8;
  --sbp-cta-glow: rgba(0, 0, 0, 0.45);

  /* Text (Apple palette) */
  --sbp-text: #1D1D1F;         /* near-black headings */
  --sbp-muted: #6E6E73;        /* refined grey body */
  --sbp-text-invert: #F3F6F4;  /* on dark */
  --sbp-muted-invert: #9FB2A7; /* muted on dark */

  /* Lines */
  --sbp-border: #E3E3E6;
  --sbp-border-dark: rgba(255, 255, 255, 0.10);

  /* Type */
  --sbp-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sbp-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --sbp-max: 1180px;
  --sbp-radius: 16px;
  --sbp-radius-sm: 10px;
  --sbp-shadow: none;
  --sbp-shadow-sm: none;
  --sbp-nav-h: 72px;
}

/* ---------- Reset scoped to the landing page ---------- */
body.sbp-landing {
  margin: 0;
  font-family: var(--sbp-sans);
  color: var(--sbp-text);
  background: var(--sbp-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: -0.006em;
}
body.sbp-landing *,
body.sbp-landing *::before,
body.sbp-landing *::after { box-sizing: border-box; }

.sbp-landing img { max-width: 100%; display: block; }
.sbp-landing h1, .sbp-landing h2, .sbp-landing h3 { margin: 0; font-weight: 600; }
.sbp-landing p { margin: 0; }
.sbp-landing a { color: inherit; text-decoration: none; }

.sbp-wrap { width: 100%; max-width: var(--sbp-max); margin: 0 auto; padding: 0 24px; }

.sbp-serif { font-family: var(--sbp-serif); font-weight: 600; letter-spacing: -0.01em; }
.sbp-eyebrow {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sbp-forest-2);
}
.sbp-eyebrow.on-dark { color: #6ee7a8; }

/* Visible focus for keyboard users everywhere */
.sbp-landing a:focus-visible,
.sbp-landing button:focus-visible {
  outline: 3px solid #6ee7a8;
  outline-offset: 2px;
  border-radius: 6px;
}
.sbp-skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--sbp-white); color: var(--sbp-forest);
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  transition: top 0.2s ease;
}
.sbp-skip-link:focus { top: 12px; }

/* ---------- Buttons: crisp, elite, precise ---------- */
.sbp-landing .sbp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sbp-sans); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em;
  line-height: 1; padding: 12px 20px; border-radius: 9px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sbp-landing .sbp-btn svg { width: 16px; height: 16px; opacity: 0.9; }

/* Primary CTA: black with a soft sage label, quiet and refined (scoped to win over link color) */
.sbp-landing .sbp-btn-primary {
  background: var(--sbp-cta-bg); color: var(--sbp-cta-text); border-color: rgba(169,203,184,0.18);
  box-shadow: none;
}
.sbp-landing .sbp-btn-primary:hover {
  background: var(--sbp-cta-hover); border-color: rgba(169,203,184,0.34);
  box-shadow: none;
}
.sbp-landing .sbp-btn-primary:active { transform: translateY(0); }

/* Secondary: clean outline */
.sbp-landing .sbp-btn-secondary { background: transparent; color: var(--sbp-text); border-color: var(--sbp-border); }
.sbp-landing .sbp-btn-secondary:hover { border-color: #aeb7b1; transform: translateY(-1px); }
.sbp-landing .sbp-btn-secondary.on-dark { color: #fff; border-color: rgba(255,255,255,0.32); }
.sbp-landing .sbp-btn-secondary.on-dark:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }

.sbp-landing .sbp-btn-lg { padding: 14px 24px; font-size: 0.94rem; border-radius: 10px; }

/* ============================================================
   SECTION 1 — GLOBAL NAVIGATION
   ============================================================ */
.sbp-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--sbp-nav-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--sbp-border);
  transition: box-shadow 0.3s ease;
}
.sbp-nav.is-solid {
}
.sbp-nav .sbp-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sbp-nav-logo { display: inline-flex; align-items: flex-start; }
.sbp-nav-logo img { height: 48px; width: auto; }
.sbp-tm { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.02em; color: var(--sbp-muted); margin: 7px 0 0 -13px; }
.sbp-nav-links { display: flex; align-items: center; gap: 26px; }
.sbp-nav-links a { color: var(--sbp-text); font-size: 0.92rem; font-weight: 500; opacity: 0.82; transition: opacity 0.2s ease; }
.sbp-nav-links a:hover { opacity: 1; }
.sbp-nav-right { display: flex; align-items: center; gap: 14px; }
.sbp-nav-signin { color: var(--sbp-text); font-weight: 600; font-size: 0.92rem; opacity: 0.9; }
.sbp-nav-signin:hover { opacity: 1; }
.sbp-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.sbp-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--sbp-text); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

/* Mobile drawer */
.sbp-drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.sbp-drawer[aria-hidden="false"] { visibility: visible; }
.sbp-drawer-scrim { position: absolute; inset: 0; background: rgba(11,29,22,0.55); opacity: 0; transition: opacity 0.25s ease; }
.sbp-drawer[aria-hidden="false"] .sbp-drawer-scrim { opacity: 1; }
.sbp-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--sbp-ink); padding: 24px; transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 6px;
}
.sbp-drawer[aria-hidden="false"] .sbp-drawer-panel { transform: translateX(0); }
.sbp-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sbp-drawer-head img { height: 30px; }
.sbp-drawer-close { background: none; border: none; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 4px 8px; }
.sbp-drawer-panel a { color: var(--sbp-text-invert); padding: 13px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--sbp-border-dark); }
.sbp-drawer-panel .sbp-btn { margin-top: 18px; justify-content: center; }

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.sbp-hero {
  position: relative; background: #fff; color: var(--sbp-text);
  margin-top: 0; padding-top: 100px;
  padding-bottom: 148px; overflow: hidden;
}
.sbp-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 520px at 82% 0%, rgba(20,83,45,0.05), transparent 60%);
}
.sbp-hero .sbp-wrap { position: relative; display: grid; grid-template-columns: 1fr 1.16fr; gap: 60px; align-items: center; }
.sbp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 8px 16px; border: 1px solid #cfe3d7; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sbp-forest);
  background: var(--sbp-forest-soft);
}
.sbp-hero h1 {
  font-family: var(--sbp-serif); font-weight: 600; font-size: clamp(3rem, 5.4vw, 4.7rem);
  line-height: 1.04; letter-spacing: -0.025em; margin-bottom: 28px; color: var(--sbp-text);
}
.sbp-hero h1 .accent { color: #166534; font-style: italic; }
.sbp-hero-copy { font-size: 1.14rem; line-height: 1.65; color: var(--sbp-muted); max-width: 31rem; margin-bottom: 52px; }
.sbp-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 16px; }
.sbp-hero-appstore { max-width: 35rem; text-align: center; }
.sbp-hero-appstore .app-store-badge { display: inline-block; margin-top: 36px; }
.sbp-hero-props {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 35rem;
  border-top: 1px solid var(--sbp-border); padding-top: 26px;
}
.sbp-hero-prop { padding: 0 20px; }
.sbp-hero-prop:first-child { padding-left: 0; }
.sbp-hero-prop + .sbp-hero-prop { border-left: 1px solid var(--sbp-border); }
.sbp-hero-prop-ic {
  width: 32px; height: 32px; margin-bottom: 15px; display: grid; place-items: center;
  border-radius: 8px; background: var(--sbp-forest-soft); border: 1px solid #d7e7dd;
  color: var(--sbp-forest-2);
}
.sbp-hero-prop-ic svg { width: 15px; height: 15px; }
.sbp-hero-prop strong { display: block; font-size: 0.86rem; color: var(--sbp-text); font-weight: 600; line-height: 1.3; letter-spacing: 0.003em; margin-bottom: 6px; }
.sbp-hero-prop span { font-size: 0.75rem; color: var(--sbp-muted); line-height: 1.45; }

/* Hero composed product visual */
.sbp-hero-stage { position: relative; }
.sbp-screen {
  position: relative; z-index: 1;
  background: #fff; color: var(--sbp-text); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--sbp-border);
}
.sbp-screen-top { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f3f4f2; border-bottom: 1px solid var(--sbp-border); }
.sbp-dot { width: 10px; height: 10px; border-radius: 50%; background: #d5d8d3; }
.sbp-screen-url { margin-left: 10px; font-size: 0.72rem; color: #8a938c; background: #fff; border: 1px solid var(--sbp-border); border-radius: 6px; padding: 3px 10px; }

.sbp-orgbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--sbp-border); }
.sbp-orgbar-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.82rem; color: #1f3d2c; }
.sbp-orgbar-mark { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #1B5E3B, #2f8f5b); display: grid; place-items: center; color: #fff; font-size: 0.7rem; }
.sbp-orgbar-nav { display: flex; gap: 14px; font-size: 0.72rem; color: var(--sbp-muted); }
.sbp-orgbar-nav .pill { background: var(--sbp-forest-2); color: #fff; padding: 4px 10px; border-radius: 6px; }

/* Full-width event banner (real auction-homepage layout) */
.sbp-hero-banner { position: relative; height: 152px; overflow: hidden; }
.sbp-hero-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; display: block; }
.sbp-hero-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,22,0) 34%, rgba(11,29,22,0.78) 100%); }
.sbp-hero-sample {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  background: rgba(11,29,22,0.55); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px); padding: 4px 11px; border-radius: 999px;
}
.sbp-hero-banner-cap { position: absolute; left: 18px; bottom: 13px; z-index: 1; color: #fff; }
.sbp-hero-banner-cap h4 { font-family: var(--sbp-serif); font-size: 1.3rem; line-height: 1.08; color: #fff; margin: 0 0 2px; }
.sbp-hero-banner-cap span { font-size: 0.72rem; opacity: 0.92; }

/* Goal strip below the banner */
.sbp-hood-strip { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-bottom: 1px solid var(--sbp-border); }
.sbp-ring { position: relative; width: 58px; height: 58px; flex: none; }
.sbp-ring svg { transform: rotate(-90deg); }
.sbp-ring-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.sbp-ring-label b { font-size: 0.82rem; color: var(--sbp-forest); line-height: 1; }
.sbp-ring-label span { font-size: 0.46rem; letter-spacing: 0.08em; color: var(--sbp-muted); }
.sbp-goal-fig { margin-right: auto; }
.sbp-goal-fig b { display: block; font-size: 1.3rem; color: var(--sbp-text); line-height: 1.1; }
.sbp-goal-fig small { font-size: 0.72rem; color: var(--sbp-muted); }
.sbp-hood-cta { background: var(--sbp-forest-2); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 9px 16px; border-radius: 8px; white-space: nowrap; }

.sbp-feat { padding: 14px 16px 16px; }
.sbp-feat-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.sbp-feat-head b { font-size: 0.8rem; }
.sbp-feat-head a { font-size: 0.68rem; color: var(--sbp-forest-2); font-weight: 600; }
.sbp-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.sbp-feat-card { border: 1px solid var(--sbp-border); border-radius: 9px; overflow: hidden; background: #fff; }
.sbp-feat-thumb { height: 68px; overflow: hidden; background: #eef0ed; }
.sbp-feat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sbp-feat-body { padding: 7px 8px 9px; }
.sbp-feat-body b { font-size: 0.62rem; display: block; line-height: 1.2; margin-bottom: 3px; }
.sbp-feat-body .price { font-size: 0.72rem; color: var(--sbp-forest); font-weight: 700; }
.sbp-feat-body .bids { font-size: 0.56rem; color: var(--sbp-muted); }

/* overlapping phone — realistic modern handset (true iPhone proportions) */
.sbp-hero-phone {
  position: absolute; left: -46px; bottom: -92px; width: 172px; aspect-ratio: 172 / 372; z-index: 3;
  background: linear-gradient(145deg, #3a403c 0%, #171d19 30%, #0a0e0c 100%);
  border-radius: 40px; padding: 6px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
/* power button (right) + volume buttons (left) */
.sbp-hero-phone::before {
  content: ""; position: absolute; right: -2px; top: 118px; width: 3px; height: 52px;
  border-radius: 3px; background: #14100e;
}
.sbp-hero-phone::after {
  content: ""; position: absolute; left: -2px; top: 92px; width: 3px; height: 28px;
  border-radius: 3px; background: #14100e; box-shadow: 0 40px 0 #14100e;
}
.sbp-phone-screen { position: relative; height: 100%; background: #fff; color: var(--sbp-text); border-radius: 34px; overflow: hidden; display: flex; flex-direction: column; }
/* dynamic island */
.sbp-phone-island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%); z-index: 5;
  width: 50px; height: 15px; background: #0a0d0b; border-radius: 999px;
}
.sbp-phone-head { text-align: center; padding: 30px 10px 10px; }
.sbp-phone-head h5 { font-family: var(--sbp-serif); font-size: 0.82rem; color: #16261d; }
.sbp-phone-head span { font-size: 0.56rem; color: var(--sbp-muted); }
.sbp-phone-goal { display: flex; align-items: center; gap: 8px; padding: 0 12px 8px; }
.sbp-phone-badge { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--sbp-forest-2); display: grid; place-content: center; text-align: center; flex: none; }
.sbp-phone-badge b { font-size: 0.62rem; color: var(--sbp-forest); line-height: 1; }
.sbp-phone-badge span { font-size: 0.36rem; color: var(--sbp-muted); letter-spacing: 0.05em; }
.sbp-phone-goal .fig b { font-size: 0.82rem; display: block; color: var(--sbp-text); font-weight: 700; }
.sbp-phone-goal .fig span { font-size: 0.5rem; color: var(--sbp-muted); }
.sbp-phone-cta { margin: 0 12px 8px; background: var(--sbp-forest-2); color: #fff; text-align: center; font-size: 0.6rem; padding: 6px; border-radius: 7px; font-weight: 600; }
.sbp-phone-timer { margin: 0 12px 10px; border: 1px solid var(--sbp-border); border-radius: 7px; padding: 6px; text-align: center; }
.sbp-phone-timer span { font-size: 0.44rem; color: var(--sbp-muted); letter-spacing: 0.06em; text-transform: uppercase; display: block; }
.sbp-phone-timer b { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--sbp-text); }
.sbp-phone-item { display: flex; align-items: center; gap: 7px; margin: 0 12px 8px; padding: 6px; border: 1px solid var(--sbp-border); border-radius: 8px; }
.sbp-phone-item-thumb { width: 34px; height: 34px; border-radius: 6px; overflow: hidden; flex: none; }
.sbp-phone-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sbp-phone-item-info { min-width: 0; }
.sbp-phone-item-info b { font-size: 0.54rem; display: block; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sbp-phone-item-info span { font-size: 0.5rem; color: var(--sbp-forest); font-weight: 600; }
.sbp-phone-tabs { margin-top: auto; display: flex; justify-content: space-around; padding: 9px 0; border-top: 1px solid var(--sbp-border); }
.sbp-phone-tabs span { width: 16px; height: 16px; border-radius: 5px; background: #e6e9e5; }
.sbp-phone-tabs span:first-child { background: var(--sbp-forest-2); }

/* ============================================================
   SECTION 3 — ORGANIZATION PERSONALIZATION
   ============================================================ */
.sbp-section { padding: 152px 0; }
.sbp-section.alt { background: var(--sbp-off); }
.sbp-head { text-align: center; max-width: 46rem; margin: 0 auto 84px; }
.sbp-head .sbp-eyebrow { letter-spacing: 0.16em; }
.sbp-head h2 { font-family: var(--sbp-serif); font-size: clamp(2.1rem, 3.7vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; margin: 18px 0 20px; color: var(--sbp-text); }
.sbp-head p { color: var(--sbp-muted); font-size: 1.1rem; line-height: 1.65; letter-spacing: 0; }
.sbp-note { font-size: 0.72rem; color: var(--sbp-muted); letter-spacing: 0.04em; margin-top: 14px; }

/* ---- Brand Switcher: tabs + single re-skinning preview ---- */
.sbp-switcher { max-width: 860px; margin: 0 auto; }

/* Admin console frame — signals this is the organizer's control surface */
.sbp-console { background: #fff; border: 1px solid var(--sbp-border); border-radius: 22px; overflow: hidden; }
.sbp-console-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--sbp-border); background: #fff;
}
.sbp-console-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sbp-console-dots { display: flex; gap: 6px; margin-right: 2px; }
.sbp-console-dots i { width: 10px; height: 10px; border-radius: 50%; background: #E1E2E6; display: block; }
.sbp-console-icon { width: 17px; height: 17px; color: var(--sbp-muted); flex: none; }
.sbp-console-id b { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; color: var(--sbp-text); }
.sbp-console-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sbp-muted);
  background: var(--sbp-off); border: 1px solid var(--sbp-border); padding: 4px 9px; border-radius: 999px;
}
.sbp-console-live {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sbp-muted);
}
.sbp-console-live .d {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: sbpPulse 1.9s infinite;
}
@keyframes sbpPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.sbp-console-body { padding: 28px; background: var(--sbp-off); }
.sbp-console-label {
  text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sbp-muted); margin: 2px 0 16px;
}

/* Pill tab bar */
.sbp-switch-tabs {
  display: flex; gap: 4px; padding: 6px; margin: 0 auto 26px; width: fit-content; max-width: 100%;
  background: #fff; border: 1px solid var(--sbp-border); border-radius: 999px;
  flex-wrap: wrap; justify-content: center;
}
.sbp-switch-tab {
  appearance: none; border: none; background: transparent; cursor: pointer;
  font-family: var(--sbp-sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.005em; color: var(--sbp-muted);
  padding: 11px 24px; border-radius: 999px; white-space: nowrap;
  transition: color 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.sbp-switch-tab:hover { color: var(--sbp-text); }
.sbp-switch-tab.is-active { background: var(--sbp-ink); color: #fff; }
.sbp-switch-tab:focus-visible { outline: 2px solid #6ee7a8; outline-offset: 3px; }

/* Preview window */
.sbp-switch-preview {
  --brand: #12395f; --brand-2: #0a1c30;
  --img: url("../images/items/web/org-health.jpg");
  --pos: 58% 15%;
  background: #fff; border: 1px solid var(--sbp-border); border-radius: 16px;
  overflow: hidden;
}
.sbp-switch-preview:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.sbp-switch-inner { transition: opacity 0.2s ease; }
.sbp-switch-inner.is-swapping { opacity: 0; }

/* Banner mirrors the hero banner: photo behind a brand-tinted gradient, title on top */
.sbp-switch-banner {
  position: relative; min-height: 328px; padding: 38px 42px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background-color: var(--brand-2);
  background-image:
    linear-gradient(180deg,
      color-mix(in srgb, var(--brand-2) 0%, transparent) 22%,
      color-mix(in srgb, var(--brand-2) 60%, transparent) 62%,
      var(--brand-2) 100%),
    var(--img);
  background-size: cover; background-position: var(--pos); background-repeat: no-repeat;
}
.sbp-switch-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 26%);
}
.sbp-switch-banner > * { position: relative; z-index: 1; }
.sbp-switch-sample {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.34); border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(6px); padding: 5px 12px; border-radius: 999px;
}
.sbp-switch-org { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.01em; }
.sbp-switch-org .mk { width: 28px; height: 28px; border-radius: 7px; background: #fff; color: #16261d; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; flex: none; }
.sbp-switch-banner h3 { font-family: var(--sbp-serif); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }

.sbp-switch-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 42px; flex-wrap: wrap;
}
.sbp-switch-metric b { font-size: 2.4rem; font-weight: 700; color: var(--brand); line-height: 1; letter-spacing: -0.02em; display: block; transition: color 0.4s ease; }
.sbp-switch-metric span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sbp-muted); margin-top: 8px; display: block; }
.sbp-switch-actions { display: flex; align-items: center; gap: 22px; }
.sbp-switch-fig { text-align: right; }
.sbp-switch-fig b { display: block; font-size: 1.12rem; font-weight: 700; color: var(--sbp-text); line-height: 1.1; }
.sbp-switch-fig small { font-size: 0.58rem; font-weight: 600; color: var(--sbp-muted); text-transform: uppercase; letter-spacing: 0.16em; }
.sbp-switch-btn {
  appearance: none; border: none; cursor: pointer; font-family: var(--sbp-sans);
  background: var(--brand); color: #fff; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 12px; white-space: nowrap;
  transition: background 0.4s ease, transform 0.15s ease, filter 0.2s ease;
}
.sbp-switch-btn:hover { filter: brightness(1.09); transform: translateY(-1px); }
.sbp-switch-btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.sbp-switch-cta { display: flex; flex-direction: column; align-items: stretch; gap: 9px; }
.sbp-switch-live {
  appearance: none; border: none; background: none; cursor: pointer; font-family: var(--sbp-sans);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em; color: var(--brand);
  padding: 2px 4px; border-radius: 8px; transition: color 0.2s ease;
}
.sbp-switch-live .d {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex: none;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: sbpPulse 1.9s infinite;
}
.sbp-switch-live:hover { color: var(--sbp-text); }
.sbp-switch-live:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ============================================================
   SECTION 4 — BIDDER EXPERIENCE (journey)
   ============================================================ */
/* Two-column stepper: tracker + narrative (left), frameless phone (right) */
.sbp-stepper { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

/* Progress tracker */
.sbp-step-tracker { display: grid; gap: 6px; margin-bottom: 34px; }
.sbp-track-item {
  appearance: none; cursor: pointer; text-align: left; width: 100%;
  display: flex; align-items: flex-start; gap: 16px;
  background: transparent; border: none; border-left: 2px solid var(--sbp-border);
  padding: 14px 18px; border-radius: 0 12px 12px 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.sbp-track-item:hover { background: rgba(17,24,39,0.03); }
.sbp-track-item.is-active { background: #fff; border-left-color: var(--sbp-forest-2); }
.sbp-track-item:focus-visible { outline: 2px solid var(--sbp-forest-2); outline-offset: 2px; }
.sbp-track-dot {
  width: 12px; height: 12px; margin-top: 5px; border-radius: 50%; flex: none;
  background: #fff; border: 2px solid var(--sbp-border); transition: 0.25s ease;
}
.sbp-track-item.is-active .sbp-track-dot {
  background: #34d17e; border-color: #34d17e;
  box-shadow: 0 0 0 4px rgba(52,209,126,0.18);
}
.sbp-track-txt b { display: block; font-size: 1rem; font-weight: 600; color: var(--sbp-text); line-height: 1.25; }
.sbp-track-txt span { display: block; font-size: 0.82rem; color: var(--sbp-muted); line-height: 1.4; margin-top: 2px; }
.sbp-track-item:not(.is-active) .sbp-track-txt b { color: var(--sbp-muted); }

/* Narrative panel */
.sbp-step-narrative { padding-left: 20px; }
.sbp-narr-inner { transition: opacity 0.2s ease, transform 0.2s ease; }
.sbp-narr-inner.is-swapping { opacity: 0; transform: translateY(6px); }
.sbp-narr-count { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; color: var(--sbp-muted); }
.sbp-narr-count b { color: var(--sbp-forest-2); font-size: 1.1rem; }
.sbp-step-narrative h3 { font-family: var(--sbp-serif); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; margin: 8px 0 12px; }
.sbp-step-narrative > .sbp-narr-inner > p { color: var(--sbp-muted); font-size: 1.02rem; line-height: 1.6; max-width: 30rem; margin-bottom: 20px; }
.sbp-narr-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.sbp-narr-bullets li { display: flex; align-items: center; gap: 11px; font-size: 0.94rem; font-weight: 500; color: var(--sbp-text); }
.sbp-narr-bullets li::before {
  content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: var(--sbp-forest-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B5E3B' stroke-width='3'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Frameless floating mobile screen */
.sbp-stepper-right { display: flex; justify-content: center; }
.sbp-appscreen {
  width: 100%; max-width: 360px; background: #fff; border: 1px solid #f0f1ef; border-radius: 30px;
  overflow: hidden;
}
.sbp-appscreen-status { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px 6px; color: #16261d; }
.sbp-appscreen-status .time { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }
.sbp-appscreen-status .sysicons { display: flex; align-items: center; gap: 6px; }
.sbp-appscreen-body { padding: 14px 20px 26px; min-height: 400px; transition: opacity 0.2s ease; }
.sbp-appscreen-body.is-swapping { opacity: 0; }

/* App: shared bits */
.sbp-app-btn {
  appearance: none; border: none; cursor: default; width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--sbp-forest-2); color: #fff; font-family: var(--sbp-sans); font-size: 0.9rem; font-weight: 600;
  padding: 14px 16px; border-radius: 12px; box-shadow: none;
}
.sbp-app-btn.pill { border-radius: 999px; }
.sbp-app-org { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.86rem; color: #1f3d2c; padding: 6px 2px 16px; border-bottom: 1px solid var(--sbp-border); margin-bottom: 22px; }
.sbp-app-org .mk { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg,#1B5E3B,#2f8f5b); color: #fff; display: grid; place-items: center; font-size: 0.68rem; flex: none; }

/* Step 1: check-in */
.sbp-app-checkin { text-align: center; padding-top: 30px; }
.sbp-app-checkin h4 { font-family: var(--sbp-serif); font-size: 1.5rem; margin-bottom: 4px; color: #16261d; }
.sbp-app-checkin > p { color: var(--sbp-muted); font-size: 0.9rem; margin-bottom: 26px; }
.sbp-app-or { font-size: 0.72rem; color: var(--sbp-muted); margin: 18px 0 8px; }
.sbp-app-field { border: 1px solid var(--sbp-border); border-radius: 10px; padding: 12px 14px; font-size: 0.9rem; color: var(--sbp-text); font-weight: 600; }

/* Step 2: browse & bid */
.sbp-app-filters { display: flex; gap: 7px; margin-bottom: 16px; flex-wrap: wrap; }
.sbp-app-filters span { font-size: 0.74rem; font-weight: 600; color: var(--sbp-muted); padding: 6px 13px; border-radius: 999px; background: #f2f4f1; }
.sbp-app-filters span.on { background: var(--sbp-ink); color: #fff; }
.sbp-app-item { border: 1px solid var(--sbp-border); border-radius: 16px; overflow: hidden; }
.sbp-app-item-img { height: 150px; overflow: hidden; background: #eef0ed; }
.sbp-app-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sbp-app-tag { display: inline-block; margin: 14px 16px 0; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sbp-forest-2); background: var(--sbp-forest-soft); padding: 4px 10px; border-radius: 999px; }
.sbp-app-item-name { display: block; padding: 8px 16px 0; font-size: 1rem; font-weight: 700; color: var(--sbp-text); line-height: 1.25; }
.sbp-app-bidrow { display: flex; align-items: baseline; gap: 8px; padding: 12px 16px; }
.sbp-app-bidrow span { font-size: 0.72rem; color: var(--sbp-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sbp-app-bidrow strong { font-size: 1.5rem; color: var(--sbp-text); letter-spacing: -0.02em; }
.sbp-app-bidrow small { font-size: 0.72rem; color: var(--sbp-muted); }
.sbp-app-item .sbp-app-btn { width: calc(100% - 32px); margin: 0 16px 16px; }

/* Step 3: outbid alert */
.sbp-app-alert { display: flex; align-items: center; gap: 13px; background: var(--sbp-ink); color: #fff; border-radius: 16px; padding: 16px 18px; margin: 8px 0 24px; }
.sbp-app-alert svg { color: #ff8f6b; flex: none; }
.sbp-app-alert b { display: block; font-size: 0.92rem; }
.sbp-app-alert span { font-size: 0.76rem; color: var(--sbp-muted-invert); }
.sbp-app-outbid { text-align: center; padding: 18px 0 6px; }
.sbp-app-outbid .lab { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sbp-muted); }
.sbp-app-outbid strong { display: block; font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; color: var(--sbp-text); margin: 6px 0 22px; }

/* Step 4: checkout */
.sbp-app-won { text-align: center; padding-top: 12px; }
.sbp-app-won-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sbp-forest-2); background: var(--sbp-forest-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.sbp-app-won .sbp-app-item-name { padding: 0; font-size: 0.98rem; }
.sbp-app-price { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; color: var(--sbp-text); margin: 4px 0 22px; }
.sbp-app-pay { display: grid; gap: 10px; margin-bottom: 20px; }
.sbp-app-pay .pay { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; border: 1px solid transparent; cursor: default; }
.sbp-app-pay .pay.apple { background: #000; color: #fff; }
.sbp-app-pay .pay.card { background: #fff; color: var(--sbp-text); border-color: var(--sbp-border); }
.sbp-app-success { display: flex; align-items: center; gap: 11px; justify-content: center; background: var(--sbp-forest-soft); border-radius: 12px; padding: 13px; text-align: left; }
.sbp-app-success svg { color: #fff; background: var(--sbp-forest-2); border-radius: 50%; padding: 4px; width: 24px; height: 24px; flex: none; }
.sbp-app-success b { display: block; font-size: 0.86rem; color: var(--sbp-forest); }
.sbp-app-success span { font-size: 0.74rem; color: var(--sbp-muted); }

/* ============================================================
   SECTION 5 — LIVE AUCTION PULSE
   ============================================================ */
.sbp-pulse { background: var(--sbp-off); color: var(--sbp-text); padding: 44px 0; position: relative; overflow: hidden; border-top: 1px solid var(--sbp-border); border-bottom: 1px solid var(--sbp-border); }
.sbp-pulse .sbp-wrap { position: relative; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sbp-pulse-live { display: flex; align-items: center; gap: 9px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sbp-forest); }
.sbp-pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: sbpPulse 1.8s infinite; }
@keyframes sbpPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.sbp-pulse-metrics { display: flex; gap: 26px; flex-wrap: wrap; flex: 1; }
.sbp-pulse-metric { display: flex; align-items: center; gap: 11px; }
.sbp-pulse-metric svg { width: 24px; height: 24px; color: var(--sbp-forest-2); flex: none; }
.sbp-pulse-metric b { font-size: 1.3rem; display: block; line-height: 1.05; color: var(--sbp-text); }
.sbp-pulse-metric span { font-size: 0.72rem; color: var(--sbp-muted); }
.sbp-pulse-metric b .accent { color: var(--sbp-forest-2); }
.sbp-pulse-foot { display: flex; align-items: center; gap: 14px; }
.sbp-pulse-disclaimer { display: block; width: 100%; font-size: 0.66rem; color: var(--sbp-muted); letter-spacing: 0.06em; margin-top: 4px; }

/* ============================================================
   SECTION 6 — ADMIN COMMAND CENTER
   ============================================================ */
/* 2-column: 35% narrative / 65% unified dashboard */
.sbp-admin { display: grid; grid-template-columns: 0.9fr 1.7fr; gap: 52px; align-items: center; }
.sbp-admin-props h2 { font-family: var(--sbp-serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; margin: 14px 0 18px; }
.sbp-admin-sub { color: var(--sbp-muted); font-size: 1.08rem; line-height: 1.6; margin-bottom: 36px; max-width: 27rem; }
.sbp-check-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.sbp-check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 0.98rem; }
.sbp-check-list .ic { width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--sbp-forest-soft); color: var(--sbp-forest-2); display: grid; place-items: center; margin-top: 1px; }
.sbp-check-list .ic svg { width: 14px; height: 14px; }

/* unified admin dashboard */
.sbp-dash { background: var(--sbp-ink); border-radius: 20px; overflow: hidden; box-shadow: var(--sbp-shadow); display: grid; grid-template-columns: 176px 1fr; color: #fff; border: 1px solid rgba(17,24,39,0.08); }
.sbp-dash-side { background: #0a1712; padding: 20px 14px; border-right: 1px solid var(--sbp-border); }
.sbp-dash-side .logo { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.sbp-dash-side .logo img { height: 20px; }
.sbp-dash-side nav { display: grid; gap: 4px; }
.sbp-dash-side nav a { font-size: 0.78rem; color: var(--sbp-muted-invert); padding: 9px 11px; border-radius: 8px; display: flex; align-items: center; gap: 9px; }
.sbp-dash-side nav a.active { background: var(--sbp-forest-2); color: #fff; }
.sbp-dash-side nav a .d { width: 6px; height: 6px; border-radius: 2px; background: currentColor; opacity: 0.6; }
.sbp-dash-main { background: #fff; color: var(--sbp-text); padding: 22px 24px; }
.sbp-dash-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sbp-dash-bar .sel { font-size: 0.84rem; font-weight: 600; border: 1px solid var(--sbp-border); border-radius: 9px; padding: 9px 14px; color: var(--sbp-text); display: flex; align-items: center; gap: 10px; }
.sbp-dash-bar .sel .caret { color: var(--sbp-muted); font-size: 0.66rem; }
.sbp-dash-live { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--sbp-forest-2); }
.sbp-dash-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d17e; box-shadow: 0 0 0 0 rgba(52,209,126,0.6); animation: sbpPulse 1.8s infinite; }
.sbp-dash-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.sbp-dash-tile { border: 1px solid var(--sbp-border); border-radius: 12px; padding: 15px 15px 16px; display: flex; flex-direction: column; }
.sbp-dash-tile span { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sbp-muted); line-height: 1.35; min-height: 2.5em; }
.sbp-dash-tile b { font-size: 1.5rem; font-weight: 700; display: block; margin: 4px 0 5px; letter-spacing: -0.025em; line-height: 1; color: var(--sbp-text); }
.sbp-dash-tile small { font-size: 0.66rem; color: var(--sbp-forest-2); font-weight: 600; margin-top: auto; }

/* embedded closeout status panel */
.sbp-dash-closeout { border: 1px solid var(--sbp-border); border-radius: 14px; padding: 18px 20px; background: var(--sbp-off); }
.sbp-dash-closeout .head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.sbp-dash-closeout .head h4 { font-size: 0.84rem; font-weight: 700; margin: 0; letter-spacing: 0.01em; }
.sbp-dash-closeout .head span { font-size: 0.66rem; color: var(--sbp-muted); }
.sbp-closeout-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--sbp-border); }
.sbp-closeout-row .lab { font-size: 0.82rem; font-weight: 600; color: var(--sbp-text); }
.sbp-closeout-row .lab span { display: block; font-size: 0.66rem; font-weight: 400; color: var(--sbp-muted); }
.sbp-closeout-row .stat { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; color: var(--sbp-forest-2); }
.sbp-closeout-row .stat .d { width: 8px; height: 8px; border-radius: 50%; background: #34d17e; }

/* ============================================================
   SECTION 7 — AFTER THE AUCTION
   ============================================================ */
.sbp-closeout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.sbp-closeout-copy h2 { font-family: var(--sbp-serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.14; letter-spacing: -0.02em; margin: 14px 0 16px; }
.sbp-closeout-copy p:not(.sbp-eyebrow) { color: var(--sbp-muted); font-size: 1.04rem; line-height: 1.6; margin-bottom: 0; max-width: 27rem; }

/* 3-step workflow stepper */
.sbp-close-steps { display: grid; gap: 10px; margin-top: 0; }
.sbp-close-step { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border: 1px solid var(--sbp-border); border-radius: 12px; background: #fff; cursor: pointer; text-align: left; transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.sbp-close-step:hover { border-color: #c2ccc6; }
.sbp-close-step.is-active { border-color: var(--sbp-forest-2); background: var(--sbp-forest-soft); }
.sbp-close-step:focus-visible { outline: 2px solid var(--sbp-forest-2); outline-offset: 2px; }
.sbp-close-step .n { width: 26px; height: 26px; flex: none; border-radius: 50%; background: #eef0ed; color: var(--sbp-muted); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; transition: 0.2s ease; }
.sbp-close-step.is-active .n { background: var(--sbp-forest-2); color: #fff; }
.sbp-close-step .lab b { display: block; font-size: 0.92rem; color: var(--sbp-text); line-height: 1.25; }
.sbp-close-step .lab > span { font-size: 0.78rem; color: var(--sbp-muted); }

/* interactive preview card */
.sbp-close-card { background: #fff; border: 1px solid var(--sbp-border); border-radius: 18px; overflow: hidden; box-shadow: var(--sbp-shadow); }
.sbp-close-cardhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--sbp-border); background: var(--sbp-off); }
.sbp-close-cardhead b { font-size: 0.95rem; }
.sbp-close-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 700; color: var(--sbp-forest-2); background: var(--sbp-forest-soft); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.sbp-close-badge .d { width: 7px; height: 7px; border-radius: 50%; background: #34d17e; box-shadow: 0 0 0 0 rgba(52,209,126,0.6); animation: sbpPulse 1.8s infinite; }
.sbp-close-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sbp-border); transition: opacity 0.18s ease; }
.sbp-close-metrics.is-swapping { opacity: 0; }
.sbp-close-metric { background: #fff; padding: 16px 20px; display: flex; flex-direction: column; min-height: 104px; }
.sbp-close-metric .lab { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sbp-muted); }
.sbp-close-metric b { display: block; font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; margin: 5px 0 8px; color: var(--sbp-text); }
.sbp-close-metric .sub { font-size: 0.68rem; color: var(--sbp-muted); margin-top: auto; }
.sbp-close-metric .pill { align-self: flex-start; margin-top: auto; font-size: 0.64rem; font-weight: 600; color: var(--sbp-forest); background: var(--sbp-forest-soft); padding: 4px 10px; border-radius: 999px; }

.sbp-close-rev { padding: 16px 20px; border-top: 1px solid var(--sbp-border); }
.sbp-close-rev h5 { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sbp-muted); margin: 0 0 12px; }
.sbp-close-rev .sbp-cat-row { grid-template-columns: 118px 1fr 58px; }

.sbp-close-utility { display: flex; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--sbp-border); background: var(--sbp-off); flex-wrap: wrap; }
.sbp-close-utility button { font-size: 0.72rem; font-weight: 600; color: var(--sbp-text); background: #fff; border: 1px solid var(--sbp-border); border-radius: 8px; padding: 8px 12px; cursor: default; }

.sbp-cat-row { display: grid; grid-template-columns: 88px 1fr 54px; align-items: center; gap: 10px; margin-bottom: 9px; font-size: 0.74rem; }
.sbp-cat-bar { height: 8px; border-radius: 999px; background: var(--sbp-border); overflow: hidden; }
.sbp-cat-bar i { display: block; height: 100%; background: var(--sbp-forest-2); border-radius: 999px; }
.sbp-cat-row .val { text-align: right; font-weight: 700; }

/* ============================================================
   SECTION 8 — FINAL CTA
   ============================================================ */
.sbp-final { background: #fff; color: var(--sbp-text); text-align: center; padding: 168px 0; position: relative; overflow: hidden; }
.sbp-final .sbp-wrap { position: relative; }

/* elevated light spotlight card */
.sbp-final-card {
  position: relative; max-width: 860px; margin: 0 auto; padding: 76px 56px 52px;
  border-radius: 28px; border: 1px solid var(--sbp-border);
  background: var(--sbp-off);
  overflow: hidden;
}
.sbp-final-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(56% 52% at 50% 18%, rgba(20,83,45,0.06), transparent 70%);
}
.sbp-final-card > * { position: relative; z-index: 1; }
.sbp-final-badge {
  display: inline-flex; align-items: center; margin-bottom: 28px;
  padding: 7px 15px; border-radius: 999px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sbp-forest);
  background: var(--sbp-forest-soft); border: 1px solid #cfe3d7;
}
.sbp-final h2 { font-family: var(--sbp-serif); font-weight: 600; font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--sbp-text); }
.sbp-final p:not(.sbp-final-note) { color: var(--sbp-muted); font-size: 1.1rem; line-height: 1.65; max-width: 34rem; margin: 0 auto 40px; }
.sbp-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sbp-final-note {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 36px;
  font-size: 0.76rem; color: var(--sbp-muted); letter-spacing: 0.02em;
}
.sbp-final-note .d { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: sbpPulse 1.8s infinite; }

/* ============================================================
   SECTION 9 — FOOTER
   ============================================================ */
.sbp-footer { background: var(--sbp-off); color: var(--sbp-muted); padding: 100px 0 40px; border-top: 1px solid var(--sbp-border); }
.sbp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px 48px; margin-bottom: 48px; }
.sbp-footer-brand img { height: 34px; width: auto; margin-bottom: 18px; }
.sbp-footer-brand p { font-size: 0.88rem; color: var(--sbp-muted); line-height: 1.6; max-width: 18rem; }
.sbp-footer-status {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 0.72rem; font-weight: 600; color: var(--sbp-forest);
  background: var(--sbp-forest-soft); border: 1px solid #cbe1d3; padding: 6px 13px; border-radius: 999px;
}
.sbp-footer-status .d { width: 8px; height: 8px; border-radius: 50%; background: #34d17e; box-shadow: 0 0 0 0 rgba(52,209,126,0.6); animation: sbpPulse 1.8s infinite; }
.sbp-footer-col h5 { color: var(--sbp-text); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
.sbp-footer-col a { display: block; font-size: 0.86rem; color: var(--sbp-muted); padding: 6px 0; transition: color 0.15s ease; }
.sbp-footer-col a:hover { color: var(--sbp-forest); }
.sbp-footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--sbp-border); padding-top: 26px; font-size: 0.78rem; color: var(--sbp-muted); flex-wrap: wrap; gap: 14px; }
.sbp-footer-disclaimer { margin: 16px 0 0; font-size: 0.72rem; line-height: 1.55; color: var(--sbp-muted); opacity: 0.85; max-width: 68ch; }
.sbp-social { display: flex; gap: 10px; }
.sbp-social a { width: 34px; height: 34px; border-radius: 8px; color: #9aa39c; display: grid; place-items: center; transition: color 0.15s ease, background 0.15s ease; }
.sbp-social a:hover { color: var(--sbp-forest); background: var(--sbp-forest-soft); }
.sbp-social svg { width: 16px; height: 16px; }

/* ============================================================
   MODAL (walkthrough)
   ============================================================ */
.sbp-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.sbp-modal[aria-hidden="false"] { display: flex; }
.sbp-modal-scrim { position: absolute; inset: 0; background: rgba(11,29,22,0.7); backdrop-filter: blur(3px); }
.sbp-modal-box {
  position: relative; background: #fff; border-radius: var(--sbp-radius); max-width: 540px; width: 100%;
  padding: 30px; z-index: 1;
}
.sbp-modal-box h3 { font-family: var(--sbp-serif); font-size: 1.6rem; margin-bottom: 6px; }
.sbp-modal-box > p { color: var(--sbp-muted); margin-bottom: 20px; }
.sbp-modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--sbp-muted); line-height: 1; padding: 6px; }
.sbp-modal-steps { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.sbp-modal-steps li { display: flex; gap: 12px; align-items: flex-start; }
.sbp-modal-steps .n { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--sbp-forest-soft); color: var(--sbp-forest-2); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; }
.sbp-modal-steps b { display: block; font-size: 0.95rem; }
.sbp-modal-steps span { font-size: 0.84rem; color: var(--sbp-muted); }
.sbp-modal-actions { display: flex; gap: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sbp-hero .sbp-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sbp-hero-stage { max-width: 560px; }
  .sbp-admin { grid-template-columns: 1fr; }
  .sbp-footer-grid { grid-template-columns: 1fr 1fr; }
  .sbp-footer-brand { grid-column: 1 / -1; margin-bottom: 4px; }
}

@media (max-width: 980px) {
  .sbp-stepper { grid-template-columns: 1fr; gap: 44px; }
  .sbp-step-narrative { padding-left: 0; }
}

@media (max-width: 900px) {
  .sbp-closeout { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .sbp-nav-links, .sbp-nav-right .sbp-nav-signin, .sbp-nav-right .sbp-btn { display: none; }
  .sbp-nav-toggle { display: block; }
  .sbp-section { padding: 104px 0; }
  .sbp-head { margin-bottom: 56px; }
  .sbp-hero-props { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .sbp-hero-prop { padding: 0 18px; }
  .sbp-hero-prop:nth-child(odd) { padding-left: 0; }
  .sbp-hero-prop:nth-child(odd) { border-left: none; }
  .sbp-hero-phone { display: none; }
  .sbp-pulse .sbp-wrap { gap: 16px; }
  .sbp-pulse-metrics { gap: 18px; }
  .sbp-dash { grid-template-columns: 1fr; }
  .sbp-dash-side { display: flex; align-items: center; gap: 10px; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--sbp-border-dark); }
  .sbp-dash-side .logo { margin-bottom: 0; }
  .sbp-dash-side nav { grid-auto-flow: column; }
  .sbp-dash-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sbp-console-body { padding: 16px; }
  .sbp-console-bar { padding: 12px 16px; }
  .sbp-console-tag { display: none; }
  .sbp-switch-tabs { border-radius: 18px; width: 100%; }
  .sbp-switch-tab { flex: 1 1 40%; padding: 10px 12px; font-size: 0.82rem; }
  .sbp-switch-banner { padding: 24px 22px; min-height: 210px; }
  .sbp-switch-foot { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
  .sbp-switch-actions { width: 100%; justify-content: space-between; }
  .sbp-track-item { padding: 12px 14px; }
  .sbp-track-txt span { display: none; }
  .sbp-dash-tiles { grid-template-columns: 1fr 1fr; }
  .sbp-result-cell b { font-size: 1.2rem; }
  .sbp-footer-grid { grid-template-columns: 1fr 1fr; }
  .sbp-hero h1 { font-size: 2.6rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sbp-landing * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---- How it works: three-step story strip ---- */
.sbp-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sbp-how-step { position: relative; background: #fff; border: 1px solid var(--sbp-border); border-radius: 20px; padding: 32px 28px 30px; }
.sbp-how-n { position: absolute; top: 22px; right: 26px; font-family: var(--sbp-serif); font-size: 1.5rem; font-weight: 700; color: color-mix(in srgb, var(--sbp-forest) 22%, #fff); line-height: 1; }
.sbp-how-ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--sbp-forest-soft); color: var(--sbp-forest); margin-bottom: 20px; }
.sbp-how-ic svg { width: 26px; height: 26px; }
.sbp-how-step h3 { font-family: var(--sbp-sans); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--sbp-text); }
.sbp-how-step p { color: var(--sbp-muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }
@media (max-width: 760px) { .sbp-how-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
