/* AUTO-GENERATED FILE. DO NOT EDIT DIRECTLY. */
/* Source script: scripts/build-css-bundles.mjs */

/* ===== Source: bidcenter-brand-tokens.css ===== */
:root {
  --bc-brand: #5426d9;
  --bc-brand-strong: #4320a8;
  --bc-brand-soft: #7a4cff;
  --bc-brand-glow: rgba(84, 38, 217, 0.22);
  --bc-accent: #15b47e;
  --bc-accent-soft: #dbffe9;
  --bc-fire: #ff7a1a;
  --bc-ink: #111827;
  --bc-muted: #5b6475;
  --bc-paper: #faf8f4;
  --bc-paper-warm: #fff9ed;
  --bc-line: rgba(17, 24, 39, 0.1);
  --bc-line-strong: rgba(17, 24, 39, 0.16);
  --bc-shadow-sm: 0 10px 28px rgba(17, 24, 39, 0.06);
  --bc-shadow-md: 0 18px 48px rgba(17, 24, 39, 0.1);
  --bc-shadow-lg: 0 28px 70px rgba(18, 21, 45, 0.16);
  --bc-radius-sm: 12px;
  --bc-radius-md: 18px;
  --bc-radius-lg: 24px;
  --bc-radius-xl: 32px;
  --bc-font-display: "Sora", "Segoe UI", sans-serif;
  --bc-font-body: "Manrope", "Segoe UI", sans-serif;
  --bc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bc-brand: #7a4cff;
  --bc-brand-strong: #5426d9;
  --bc-brand-soft: #9b7cff;
  --bc-brand-glow: rgba(122, 76, 255, 0.24);
  --bc-accent: #34d399;
  --bc-accent-soft: rgba(52, 211, 153, 0.14);
  --bc-ink: #f6f2ff;
  --bc-muted: #b6a9ca;
  --bc-paper: #0c0911;
  --bc-paper-warm: #141019;
  --bc-line: rgba(246, 239, 255, 0.1);
  --bc-line-strong: rgba(246, 239, 255, 0.16);
  --bc-shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.22);
  --bc-shadow-md: 0 20px 48px rgba(0, 0, 0, 0.32);
  --bc-shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.42);
}

/* ===== Source: bidcenter-auth-base.css ===== */
/* Minimal base for auth portal */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

.hidden,
.is-hidden {
  display: none !important;
}

.stack {
  display: grid;
  gap: 16px;
}

.card {
  border-radius: var(--bc-radius-md, 18px);
}

.subhead {
  margin: 0;
  line-height: 1.55;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.84rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
}

button {
  cursor: pointer;
}

.auth-primary-btn,
.auth-secondary-btn,
.auth-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.auth-link-btn {
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 800;
}

.auth-secondary-btn {
  min-height: 48px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
}

.auth-social-box {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.auth-switch-row,
.auth-footer-cta,
.auth-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.auth-inline-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.auth-inline-grid .full {
  grid-column: 1 / -1;
}

.auth-portal-head {
  display: grid;
  gap: 8px;
}

.auth-status-wrap .status {
  min-height: 20px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.status.ok {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.08);
}

.status.warn {
  color: #b45309;
  background: rgba(180, 83, 9, 0.08);
}

.onboarding-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.onboarding-modal.open {
  display: flex;
}

@media (max-width: 640px) {
  .auth-inline-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Source: bidcenter-dashboard-auth.css ===== */
/* Auth layout consolidation (2026-03-25)
   Source of truth for login/register/forgot responsiveness. */

body:not(.authenticated) .content-wrapper.bidcenter-content,
body:not(.authenticated) #panel-core,
body:not(.authenticated) .auth-shell,
body:not(.authenticated) .auth-card,
body:not(.authenticated) .auth-showcase {
  min-width: 0 !important;
}

body:not(.authenticated) .auth-shell {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px) !important;
  gap: clamp(16px, 2.6vw, 34px) !important;
  align-items: stretch !important;
}

body:not(.authenticated) .auth-showcase {
  width: 100% !important;
}

body:not(.authenticated) .auth-card {
  width: 100% !important;
  max-width: 470px !important;
  justify-self: end !important;
}

@media (max-width: 1100px) {
  body:not(.authenticated) .auth-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) !important;
    gap: 20px !important;
  }
}

@media (max-width: 980px) {
  body:not(.authenticated) .auth-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: auto !important;
    gap: 14px !important;
  }

  body:not(.authenticated) .auth-card {
    max-width: min(560px, 100%) !important;
    justify-self: stretch !important;
    margin: 0 auto !important;
    order: 1 !important;
  }

  body:not(.authenticated) .auth-showcase {
    order: 2 !important;
  }

  body:not(.authenticated) .auth-brand,
  body:not(.authenticated) .auth-showcase-copy {
    justify-items: center !important;
    text-align: center !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 760px) {
  body:not(.authenticated) .auth-showcase {
    display: none !important;
  }

  body:not(.authenticated) .auth-shell {
    gap: 0 !important;
  }
}

@media (max-width: 520px) {
  body:not(.authenticated) .main-content {
    padding: 12px 10px 18px !important;
  }

  body:not(.authenticated) .auth-card {
    padding: 16px 14px 14px !important;
    border-radius: 16px !important;
  }

  body:not(.authenticated) .auth-inline-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  body:not(.authenticated) .auth-switch-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  body:not(.authenticated) .auth-footer-links {
    justify-content: flex-start !important;
    gap: 10px !important;
  }
}

@media (max-width: 380px) {
  body:not(.authenticated) .auth-card {
    padding: 14px 12px 12px !important;
  }

  body:not(.authenticated) .auth-primary-btn,
  body:not(.authenticated) .auth-secondary-btn {
    min-height: 42px !important;
    font-size: 0.95rem !important;
  }
}

/* ===== Source: bidcenter-auth-portal.css ===== */
body.auth-portal {
  min-height: 100vh;
}

body.auth-portal .auth-portal-main {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

body.auth-portal .auth-portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

body.auth-portal .auth-portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
}

body.auth-portal .auth-portal-brand img {
  height: 34px;
  width: auto;
}

body.auth-portal .auth-portal-home-link {
  color: rgba(246, 242, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

body.auth-portal .auth-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px) !important;
  gap: clamp(16px, 2.6vw, 34px) !important;
}

body.auth-portal .auth-showcase {
  display: block !important;
}

body.auth-portal .auth-card {
  max-width: 470px !important;
  justify-self: end !important;
}

body.auth-portal .content-wrapper,
body.auth-portal .sidebar,
body.auth-portal .mobile-menu-toggle,
body.auth-portal .header,
body.auth-portal #globalIncidentBanner {
  display: none !important;
}

@media (max-width: 980px) {
  body.auth-portal .auth-shell {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.auth-portal .auth-card {
    max-width: min(560px, 100%) !important;
    justify-self: stretch !important;
    margin: 0 auto !important;
    order: 1 !important;
  }

  body.auth-portal .auth-showcase {
    order: 2 !important;
  }
}

@media (max-width: 760px) {
  body.auth-portal .auth-showcase-copy,
  body.auth-portal .auth-benefits,
  body.auth-portal .auth-showcase-footer {
    display: none !important;
  }

  body.auth-portal .auth-showcase {
    display: block !important;
  }

  body.auth-portal .auth-commercial-card {
    display: block !important;
  }

  body.auth-portal .auth-inline-grid.auth-mobile-plan-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ===== Source: bidcenter-auth-site.css ===== */
/* Premium auth portal — loaded only on /login, /register, /forgot-password */

body.auth-portal {
  min-height: 100vh;
  color: var(--bc-ink);
  font-family: var(--bc-font-body);
  background:
    radial-gradient(1100px 520px at -8% -12%, var(--bc-brand-glow), transparent 52%),
    radial-gradient(900px 480px at 108% -6%, rgba(21, 180, 126, 0.12), transparent 48%),
    linear-gradient(180deg, #0a0810 0%, #12101a 46%, #0e0c14 100%);
}

body.auth-portal::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

body.auth-portal .auth-portal-main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

body.auth-portal .auth-portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: var(--bc-shadow-sm);
}

body.auth-portal .auth-portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
  text-decoration: none;
  font-family: var(--bc-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.auth-portal .auth-portal-brand img {
  height: 34px;
  width: auto;
}

body.auth-portal .auth-portal-home-link {
  color: rgba(246, 242, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 160ms var(--bc-ease);
}

body.auth-portal .auth-portal-home-link:hover {
  color: #fff;
}

body.auth-portal .auth-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 470px) !important;
  gap: clamp(24px, 3vw, 42px) !important;
  align-items: stretch;
}

body.auth-portal .auth-showcase {
  display: grid !important;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--bc-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 90% 2%, rgba(255, 138, 31, 0.24), transparent 15rem),
    radial-gradient(circle at 10% 95%, rgba(21, 180, 126, 0.18), transparent 18rem),
    linear-gradient(145deg, #12081d 0%, #211131 58%, #36194c 100%);
  box-shadow: var(--bc-shadow-lg);
}

body.auth-portal .auth-showcase-copy h1 {
  font-family: var(--bc-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #f8fafc;
  max-width: 720px;
}

body.auth-portal .auth-showcase-copy p,
body.auth-portal .auth-brand-subtitle {
  color: rgba(246, 242, 255, 0.72);
  line-height: 1.62;
  max-width: 56ch;
}

body.auth-portal .auth-showcase-kicker,
body.auth-portal .auth-portal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 76, 255, 0.28);
  background: rgba(84, 38, 217, 0.14);
  color: #d8c9ff;
  font-weight: 800;
  font-size: 0.82rem;
}

body.auth-portal .auth-benefits {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.auth-portal .auth-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--bc-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

body.auth-portal .auth-benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(84, 38, 217, 0.16);
  color: #d8c9ff;
}

body.auth-portal .auth-benefit-copy strong {
  display: block;
  color: #f4f7fb;
  font-weight: 800;
  margin-bottom: 4px;
}

body.auth-portal .auth-benefit-copy span {
  color: rgba(246, 242, 255, 0.64);
  line-height: 1.5;
  font-size: 0.94rem;
}

body.auth-portal .auth-showcase-footer {
  color: rgba(246, 242, 255, 0.52);
  font-size: 0.88rem;
}

body.auth-portal .auth-card {
  border-radius: var(--bc-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(22, 18, 32, 0.94) 0%, rgba(14, 12, 20, 0.98) 100%);
  box-shadow: var(--bc-shadow-lg);
  backdrop-filter: blur(18px);
  padding: clamp(22px, 2.4vw, 30px);
}

body.auth-portal .auth-card h2 {
  font-family: var(--bc-font-display);
  letter-spacing: -0.04em;
  color: #f8fafc;
}

body.auth-portal .auth-card .subhead,
body.auth-portal .auth-card label,
body.auth-portal .auth-footer-cta,
body.auth-portal .auth-social-note {
  color: rgba(246, 242, 255, 0.68);
}

body.auth-portal .auth-card input,
body.auth-portal .auth-card select,
body.auth-portal .auth-card textarea {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  transition: border-color 160ms var(--bc-ease), box-shadow 160ms var(--bc-ease);
}

body.auth-portal .auth-card input:focus,
body.auth-portal .auth-card select:focus,
body.auth-portal .auth-card textarea:focus {
  outline: none;
  border-color: rgba(122, 76, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(84, 38, 217, 0.18);
}

body.auth-portal .auth-primary-btn {
  min-height: 48px;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bc-brand-soft), var(--bc-brand));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(84, 38, 217, 0.28);
}

body.auth-portal .auth-secondary-btn {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f7fb;
}

body.auth-portal .auth-link-btn {
  color: #cbb8ff;
  font-weight: 800;
}

body.auth-portal .auth-commercial-card .card {
  border-radius: var(--bc-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.auth-portal .auth-commercial-card h3 {
  font-family: var(--bc-font-display);
  letter-spacing: -0.03em;
}

body.auth-portal .auth-faq-card {
  border-radius: var(--bc-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(22, 18, 32, 0.96), rgba(14, 12, 20, 0.98));
  box-shadow: var(--bc-shadow-md);
}

body.auth-portal .status {
  border-radius: 12px;
}

body.auth-portal {
  --bc-auth-ink: #1a1228;
  --bc-auth-muted: #5b6475;
  --bc-auth-line: rgba(17, 24, 39, 0.12);
}

body.auth-portal .auth-card:not(.auth-commercial-card) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 255, 0.96) 100%) !important;
  color: var(--bc-auth-ink) !important;
  border-color: rgba(84, 38, 217, 0.12) !important;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12) !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) h2,
body.auth-portal .auth-card:not(.auth-commercial-card) label,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-portal-kicker,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-divider,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-password-hint {
  color: var(--bc-auth-ink) !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) .subhead,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-social-note,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-footer-cta,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-reset-box .subhead {
  color: var(--bc-auth-muted) !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) input,
body.auth-portal .auth-card:not(.auth-commercial-card) select,
body.auth-portal .auth-card:not(.auth-commercial-card) textarea {
  border: 1px solid var(--bc-auth-line) !important;
  background: #fff !important;
  color: var(--bc-auth-ink) !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) input::placeholder,
body.auth-portal .auth-card:not(.auth-commercial-card) textarea::placeholder {
  color: #8b93a3 !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) .auth-link-btn {
  color: var(--bc-brand-strong, #4320a8) !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) .auth-link-btn:focus,
body.auth-portal .auth-card:not(.auth-commercial-card) .auth-link-btn:focus-visible {
  outline: 2px solid rgba(84, 38, 217, 0.45) !important;
  outline-offset: 2px !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) .auth-secondary-btn {
  border: 1px solid var(--bc-auth-line) !important;
  background: #fff !important;
  color: var(--bc-auth-ink) !important;
}

body.auth-portal .auth-card:not(.auth-commercial-card) .auth-portal-kicker {
  border-color: rgba(84, 38, 217, 0.18) !important;
  background: rgba(84, 38, 217, 0.08) !important;
  color: #4320a8 !important;
}

body.auth-portal .auth-status-wrap:empty,
body.auth-portal .auth-status-wrap .status:empty {
  display: none;
}

body.auth-portal .auth-view {
  display: none;
  gap: 14px;
}

body.auth-portal .auth-view.is-active {
  display: grid;
}

body.auth-portal .auth-inline-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

body.auth-portal .auth-inline-grid .full {
  grid-column: 1 / -1;
}

body.auth-portal .auth-card label {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: inline-block;
}

body.auth-portal .auth-switch-row,
body.auth-portal .auth-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

body.auth-portal .auth-footer-links a,
body.auth-portal .auth-footer-links button {
  color: var(--bc-auth-muted) !important;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
}

body.auth-portal .auth-footer-links a:hover,
body.auth-portal .auth-footer-links button:hover {
  color: var(--bc-auth-ink) !important;
}

body.auth-portal .auth-divider {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

body.auth-portal .auth-status-wrap .status {
  border: 1px solid var(--bc-auth-line);
  background: #fff;
  color: var(--bc-auth-muted);
}

body.auth-portal .auth-commercial-card {
  margin-top: 18px;
  padding: 18px !important;
  border-radius: var(--bc-radius-lg) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

body.auth-portal .auth-inline-grid.auth-mobile-plan-grid {
  display: grid;
  gap: 12px;
}

body.auth-portal .onboarding-modal {
  backdrop-filter: blur(10px);
  background: rgba(8, 6, 12, 0.72) !important;
}

body.auth-portal .auth-primary-btn:hover {
  filter: brightness(1.05);
}

body.auth-portal .auth-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.auth-portal .auth-faq-card .faq-stack details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 14px;
}

body.auth-portal .auth-faq-card .faq-stack summary {
  padding: 14px 0;
  font-weight: 800;
  color: #f4f7fb;
}

@media (max-width: 980px) {
  body.auth-portal .auth-shell {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.auth-portal .auth-card {
    max-width: min(560px, 100%) !important;
    margin: 0 auto;
    order: 1;
  }

  body.auth-portal .auth-showcase {
    order: 2;
  }
}

@media (max-width: 760px) {
  body.auth-portal .auth-showcase {
    display: none !important;
  }

  body.auth-portal .auth-portal-top {
    border-radius: 22px;
  }
}

