@import url('tokens.css');
@import url('landing-violet.css');

:root {
  /* Legacy aliases → violet tokens */
  --copper-ink: var(--ink);
  --copper-accent: var(--accent);
  --copper-accent-dk: var(--accent-hover);
  --copper-accent-lt: var(--panel-accent);
  --copper-muted: var(--ink-2);
  --copper-warm: var(--page);
  --copper-surface: var(--surface);
  --copper-line: var(--line);
  --money-paid: var(--paid);
  --money-pending: var(--pending);
  --money-overdue: var(--overdue);
  --dos-navy: var(--ink);
  --dos-purple: var(--accent);
  --dos-purple-dk: var(--accent-hover);
  --dos-purple-lt: var(--panel-accent);
  --dos-muted: var(--ink-2);
  --dos-bg-light: var(--page);
  --ba-navy: var(--ink);
  --ba-teal: var(--accent);
  --ba-teal-dk: var(--accent-hover);
  --ba-ink: var(--ink);
  --ba-muted: var(--ink-2);
  --ba-line: var(--line);
  --ba-card: var(--surface);
  --ba-page: var(--page);
  --ba-shadow: none;
  --ba-radius: var(--r-lg);
}

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

html { scroll-behavior: smooth; }

body.ba-landing {
  font-family: var(--font);
  color: var(--ink);
  background: var(--page);
  min-height: 100vh;
  line-height: 1.65;
  font-weight: 400;
}

.ba-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #FAF8F4 0%, #F3F0EA 50%, #EBE8E2 100%);
  pointer-events: none;
}

.ba-grid-overlay { display: none; }

.ba-shell { position: relative; z-index: 1; }

.ba-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px;
}

.ba-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--dos-navy);
}

.ba-nav-brand img { width: 44px; height: 44px; }

.ba-nav-brand span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.ba-nav-brand em {
  font-style: normal;
  color: var(--copper-accent);
}

.ba-nav-active {
  border-color: rgba(98,84,231,.35) !important;
  background: rgba(98,84,231,.1) !important;
  color: var(--dos-navy) !important;
}

.ba-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
}

.ba-btn:hover { transform: translateY(-1px); }

.ba-btn-ghost {
  color: var(--dos-navy);
  border-color: rgba(6,43,62,.12);
  background: #fff;
}

.ba-btn-ghost:hover {
  background: #fff;
  border-color: rgba(98,84,231,.35);
}

.ba-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--copper-accent), var(--copper-accent-dk));
  box-shadow: 0 8px 24px rgba(176, 96, 58, .28);
}

.ba-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(176, 96, 58, .38);
}

.ba-btn-outline {
  color: var(--copper-accent);
  border-color: rgba(176, 96, 58, .45);
  background: var(--copper-surface);
}

.ba-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 28px 72px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.ba-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  margin-bottom: 18px;
}

.ba-hero-copy h1 span,
.ba-gradient-text {
  background: linear-gradient(135deg, var(--copper-accent-lt), var(--copper-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ba-slogan {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--dos-muted);
  max-width: 34rem;
  margin-bottom: 12px;
}

.ba-hero-lead {
  color: var(--dos-muted);
  font-size: .92rem;
  max-width: 32rem;
}

.ba-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(98,84,231,.14);
  border: 1px solid rgba(98,84,231,.35);
  color: #c4b5fd;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ba-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dos-purple);
  box-shadow: 0 0 10px var(--dos-purple);
}

.ba-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ba-hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--ba-shadow);
  backdrop-filter: blur(12px);
}

.ba-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0f2038;
}

.ba-preview-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(0,0,0,.25);
}

.ba-preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.ba-preview-body { padding: 22px; }

.ba-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.ba-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
}

.ba-stat label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}

.ba-stat strong {
  font-size: 1.15rem;
  color: #fff;
}

.ba-stat strong.teal,
.ba-stat strong.accent { color: var(--dos-purple-lt); }

.ba-chart {
  height: 120px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(98,84,231,.25), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 36px);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.ba-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(90deg, transparent, rgba(98,84,231,.55) 20%, rgba(98,84,231,.85) 55%, rgba(98,84,231,.4) 85%, transparent);
  clip-path: polygon(0 80%, 12% 55%, 28% 68%, 42% 35%, 58% 48%, 72% 18%, 88% 42%, 100% 28%, 100% 100%, 0 100%);
}

.ba-features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.ba-features h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.ba-features .sub {
  text-align: center;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

.ba-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ba-feature {
  background: var(--ba-card);
  border: 1px solid var(--ba-line);
  border-radius: var(--ba-radius);
  padding: 24px;
}

.ba-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,178,106,.16);
  color: var(--ba-teal);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.ba-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ba-feature p {
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}

.ba-roadmap,
.ba-roadmap-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.ba-roadmap h2,
.ba-roadmap-hero h1 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.ba-roadmap-hero h1 { font-size: 2.2rem; margin-bottom: 12px; }

.ba-roadmap .sub,
.ba-roadmap-hero p {
  text-align: center;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}

.ba-roadmap-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ba-roadmap-stat {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--ba-line);
}

.ba-modules-intro .sub,
.ba-pricing-intro .sub {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.55;
}

.ba-roadmap-live { background: rgba(98,84,231,.18); color: #c4b5fd; }
.ba-roadmap-progress { background: rgba(245,158,11,.18); color: #fbbf24; }
.ba-roadmap-planned { background: rgba(59,130,246,.15); color: #93c5fd; }

.ba-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ba-roadmap-grid-compact .ba-roadmap-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ba-roadmap-card {
  background: var(--ba-card);
  border: 1px solid var(--ba-line);
  border-radius: var(--ba-radius);
  padding: 20px;
}

.ba-roadmap-card h3 {
  font-size: 1rem;
  margin: 10px 0 8px;
}

.ba-roadmap-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}

.ba-roadmap-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Sub-pages (modules, pricing, roadmap) ───────────────────── */
.ba-page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px 48px;
  text-align: center;
}

.ba-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ba-ink);
}

.ba-page-hero .sub {
  color: var(--ba-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.ba-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: rgba(255,255,255,.92);
}

.ba-section-title-muted {
  margin-top: 48px;
  color: rgba(255,255,255,.75);
}

.ba-modules-compact {
  padding-top: 24px;
}

.ba-module-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.ba-muted-inline {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}

.ba-pricing-compact .ba-pricing-grid-compact {
  margin-bottom: 8px;
}

.ba-pricing-grid-compact .ba-pricing-card {
  padding: 22px 18px;
}

.ba-pricing-grid-compact .ba-pricing-amount {
  font-size: 1.65rem;
}

.ba-roadmap-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 64px;
}

/* ── Modules (FieldStack-style) ───────────────────────────────── */
.ba-modules,
.ba-pricing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.ba-modules-intro,
.ba-pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.ba-modules-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-accent);
  margin-bottom: 10px;
}

.ba-modules h2,
.ba-pricing h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
  color: var(--ba-ink);
}

.ba-modules-subhead {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 36px 0 16px;
  color: rgba(255,255,255,.9);
}

.ba-modules-subhead-roadmap {
  margin-top: 48px;
  color: rgba(255,255,255,.75);
}

.ba-modules-roadmap-note {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.ba-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ba-module-grid-roadmap .ba-module-card {
  border-style: dashed;
  opacity: .92;
}

.ba-module-card {
  background: var(--ba-card);
  border: 1px solid var(--ba-line);
  border-radius: 16px;
  padding: 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--ba-shadow);
  color: var(--ba-ink);
}

.ba-module-card:hover {
  border-color: rgba(98,84,231,.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(98,84,231,.1), var(--ba-shadow);
}

.ba-module-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ba-module-tag-core { background: rgba(37,99,235,.2); color: #93c5fd; }
.ba-module-tag-billing { background: rgba(98,84,231,.2); color: #c4b5fd; }
.ba-module-tag-reports { background: rgba(168,85,247,.2); color: #d8b4fe; }
.ba-module-tag-admin { background: rgba(245,158,11,.2); color: #fcd34d; }
.ba-module-tag-portal { background: rgba(14,165,233,.2); color: #7dd3fc; }
.ba-module-tag-security { background: rgba(239,68,68,.15); color: #fca5a5; }
.ba-module-tag-planned { background: rgba(148,163,184,.15); color: #cbd5e1; }

.ba-module-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--ba-ink);
}

.ba-module-card p {
  font-size: .86rem;
  color: var(--ba-muted);
  line-height: 1.5;
  margin: 0;
}

.ba-modules-footnote {
  text-align: center;
  margin-top: 28px;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.ba-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.ba-pricing-card {
  position: relative;
  background: var(--ba-card);
  border: 1px solid var(--ba-line);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  color: var(--ba-ink);
  box-shadow: var(--ba-shadow);
}

.ba-pricing-card-highlight {
  border-color: rgba(98,84,231,.35);
  background: #fff;
  box-shadow: 0 4px 16px rgba(98,84,231,.12), var(--ba-shadow);
}

.ba-pricing-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dos-purple);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.ba-pricing-tier-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 8px;
  color: var(--ba-ink);
}

.ba-pricing-tagline {
  font-size: .82rem;
  color: var(--ba-muted);
  margin-bottom: 12px;
}

.ba-pricing-setup {
  font-size: .75rem;
  color: var(--ba-muted);
  margin-bottom: 4px;
}

.ba-pricing-amount {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ba-ink);
}

.ba-pricing-amount span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ba-muted);
}

.ba-pricing-audience {
  font-size: .78rem;
  color: var(--ba-muted);
  margin: 10px 0 14px;
  min-height: 2.4em;
}

.ba-pricing-features {
  list-style: none;
  font-size: .82rem;
  color: var(--ba-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.ba-pricing-features strong { color: var(--ba-ink); }

.ba-pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.ba-pricing-compare-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--ba-ink);
}

.ba-pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ba-line);
  border-radius: 16px;
  background: var(--ba-card);
  margin-bottom: 40px;
  box-shadow: var(--ba-shadow);
}

.ba-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  min-width: 640px;
  color: var(--ba-ink);
}

.ba-pricing-table th,
.ba-pricing-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ba-line);
  text-align: center;
  vertical-align: middle;
  color: var(--ba-ink);
}

.ba-pricing-table th:first-child,
.ba-pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ba-ink);
  min-width: 200px;
}

.ba-pricing-table thead th {
  font-weight: 700;
  color: var(--ba-ink);
  background: #F3F4F6;
}

.ba-pricing-table tbody tr:last-child td { border-bottom: none; }

.ba-check {
  color: var(--dos-purple);
  font-weight: 700;
  font-size: 1rem;
}

.ba-dash {
  color: #C0C4CC;
}

.ba-pricing-addons h2,
.ba-pricing-addons h3 {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--ba-ink);
}

.ba-pricing-addons .sub {
  text-align: center;
  margin-bottom: 24px;
  color: var(--ba-muted);
}

.ba-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ba-addon-card {
  background: var(--ba-card);
  border: 1px solid var(--ba-line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--ba-shadow);
  color: var(--ba-ink);
}

.ba-addon-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ba-ink);
}

.ba-addon-card h4 {
  font-size: .92rem;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--ba-ink);
}

.ba-addon-card p {
  font-size: .78rem;
  color: var(--ba-muted);
  margin: 0;
  line-height: 1.45;
}

.ba-pricing-footnote {
  text-align: center;
  font-size: .78rem;
  color: var(--ba-muted);
  margin-top: 28px;
  line-height: 1.6;
}
.ba-addon-price span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ba-muted);
}

.ba-portals {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ba-portal-card {
  border-radius: var(--ba-radius);
  padding: 28px;
  border: 1px solid var(--ba-line);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.ba-portal-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.ba-portal-card p { color: rgba(255,255,255,.65); font-size: .92rem; margin-bottom: 18px; }

.ba-footer {
  border-top: 1px solid var(--ba-line);
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}

.ba-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.ba-footer a:hover { color: var(--ba-teal); }

/* ── Split login · Copper theme ───────────────────────────────── */
body.ba-login-split {
  --copper-ink: #1F1E1C;
  --copper-accent: #B0603A;
  --copper-accent-dk: #8F4E30;
  --copper-accent-lt: #C87850;
  --copper-muted: #6B6A64;
  --copper-warm: #FAF8F4;
  min-height: 100vh;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--copper-ink);
  background: var(--copper-warm);
}

.ba-login-grid {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .ba-login-grid { grid-template-columns: 1fr 1fr; }
}

/* Dark aside panel */
.ba-login-aside {
  position: relative;
  display: none;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}

@media (min-width: 992px) {
  .ba-login-aside { display: flex; }
}

.ba-login-aside-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(176, 96, 58, .22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(176, 96, 58, .12), transparent 50%),
    linear-gradient(145deg, #1F1E1C 0%, #2a2825 45%, #1F1E1C 100%);
}

.ba-login-aside-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.ba-login-aside-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px 40px 40px;
}

@media (min-width: 1280px) {
  .ba-login-aside-inner { padding: 56px; }
}

.ba-login-aside-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}

.ba-login-aside-brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ba-login-aside-brand-text em { font-style: normal; color: var(--copper-accent-lt); }
.ba-login-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-accent-lt); }

.ba-login-headline {
  margin-top: 16px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 22rem;
}

.ba-login-gradient {
  background: linear-gradient(90deg, var(--copper-accent-lt), #E8C4A8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ba-login-bullets {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 24rem;
}

.ba-login-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(226,232,240,.92);
  line-height: 1.45;
}

.ba-login-check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(176, 96, 58, .25);
  color: var(--copper-accent-lt);
}

.ba-login-aside-foot {
  font-size: .75rem;
  color: rgba(148,163,184,.85);
}

.ba-login-aside-foot a {
  color: rgba(148,163,184,.95);
  text-decoration: none;
}

.ba-login-aside-foot a:hover { color: var(--copper-accent-lt); }

.ba-login-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-warm);
  padding: 48px 16px;
}

.ba-login-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-ink), var(--copper-accent), var(--copper-accent-lt));
}

.ba-login-main-inner {
  width: 100%;
  max-width: 384px;
}

.ba-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(11,27,51,.08), 0 1px 3px rgba(11,27,51,.06);
  border: 1px solid #e2e8f0;
}

.ba-login-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--ba-navy);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ba-login-card-brand em {
  font-style: normal;
  color: var(--copper-accent);
}

.ba-login-kind {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ba-login-kind.admin {
  background: rgba(176, 96, 58, .1);
  border: 1px solid rgba(176, 96, 58, .28);
  color: var(--copper-accent-dk);
}

.ba-login-kind.client {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.ba-login-kind.customer {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.ba-login-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #0f172a;
}

.ba-login-sub {
  margin-top: 4px;
  font-size: .875rem;
  color: #64748b;
}

.ba-login-alert {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .8125rem;
  border: 1px solid;
}

.ba-login-alert-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.ba-login-alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.ba-login-alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.ba-login-alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

.ba-login-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-login-label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.ba-login-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .875rem;
  color: #0f172a;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.ba-login-input:focus {
  outline: none;
  border-color: var(--ba-teal);
  box-shadow: 0 0 0 3px rgba(23,178,106,.15);
}

.ba-login-input::placeholder { color: #94a3b8; }

.ba-login-btn {
  width: 100%;
  margin-top: 4px;
  padding: 11px 16px;
  border: none;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .1s;
}

.ba-login-btn:hover { transform: translateY(-1px); }
.ba-login-btn.admin,
.ba-login-btn.customer { background: var(--ba-teal); }
.ba-login-btn.admin:hover,
.ba-login-btn.customer:hover { background: var(--ba-teal-dk); }
.ba-login-btn.client { background: #2563EB; }
.ba-login-btn.client:hover { background: #1d4ed8; }

.ba-login-demo-hint {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: .78rem;
  color: #475569;
  line-height: 1.5;
}

.ba-login-demo-hint code {
  font-size: .75rem;
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
}

.ba-login-powered {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.ba-login-switch {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8125rem;
}

.ba-login-switch a {
  color: #64748b;
  text-decoration: none;
}

.ba-login-switch a:hover { color: var(--ba-teal); }

.ba-login-version {
  margin-top: 8px;
  text-align: center;
  font-size: .68rem;
  color: #cbd5e1;
}

/* Legacy auth classes (forms elsewhere) ─────────────────────── */
body.ba-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ba-ink);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(23,178,106,.12), transparent 55%),
    linear-gradient(135deg, #f4f6fb 0%, #e8eeff 100%);
  padding: 24px;
}

.ba-auth-wrap { width: 100%; max-width: 440px; }

.ba-auth-top {
  text-align: center;
  margin-bottom: 26px;
}

.ba-auth-top a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.ba-auth-top img { width: 64px; height: 64px; }

.ba-auth-top h1 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ba-auth-top h1 span { color: var(--ba-teal); }

.ba-auth-slogan {
  font-size: .88rem;
  color: var(--ba-muted);
  margin-top: 4px;
}

.ba-auth-kind {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ba-auth-kind.admin {
  background: #EEF3FF;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.ba-auth-kind.client {
  background: var(--ba-sky);
  border: 1px solid #a7f3d0;
  color: #047857;
}

.ba-auth-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26,31,54,.12);
  padding: 30px;
}

.ba-auth-card h2 { font-size: 1.05rem; margin-bottom: 4px; }
.ba-auth-card .sub { font-size: .82rem; color: var(--ba-muted); margin-bottom: 20px; }

.ba-form-group { margin-bottom: 16px; }

.ba-form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ba-muted);
  margin-bottom: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ba-form-control {
  width: 100%;
  border: 1.5px solid #e5e9f2;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .9rem;
  transition: border .15s, box-shadow .15s;
}

.ba-form-control:focus {
  outline: none;
  border-color: var(--ba-teal);
  box-shadow: 0 0 0 3px rgba(23,178,106,.12);
}

.ba-auth-submit {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.ba-auth-submit.admin {
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
}

.ba-auth-submit.client {
  background: linear-gradient(135deg, var(--ba-teal), var(--ba-teal-dk));
}

.ba-auth-submit:hover { transform: translateY(-1px); }

.ba-alert {
  padding: 10px 13px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: .82rem;
  border: 1px solid;
}

.ba-alert-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.ba-alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.ba-alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.ba-alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

.ba-auth-foot {
  text-align: center;
  margin-top: 20px;
  font-size: .78rem;
  color: #9aa3bf;
  line-height: 1.7;
}

.ba-auth-foot a { color: var(--ba-muted); text-decoration: none; }
.ba-auth-foot a:hover { color: var(--ba-teal); }

.ba-auth-switch {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: .8rem;
}

.ba-flash-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 8px;
}

.ba-flash {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .88rem;
  margin-bottom: 8px;
  border: 1px solid;
}

.ba-flash-success { background: rgba(23,178,106,.15); border-color: rgba(23,178,106,.4); color: #9ae6b4; }
.ba-flash-danger { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.35); color: #fecaca; }
.ba-flash-warning { background: rgba(247,144,9,.12); border-color: rgba(247,144,9,.35); color: #fde68a; }
.ba-flash-info { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.35); color: #bfdbfe; }

/* ─── DEMO SECTION ─────────────────────────────────────────── */
.ba-demo {
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 0 28px;
}
.ba-demo-hero {
  margin-top: 24px;
  margin-bottom: 48px;
}
.ba-demo-hero-intro {
  max-width: 1120px;
  margin: 32px auto 8px;
  padding: 0 28px;
  text-align: center;
}
.ba-demo-hero-intro h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.ba-demo-hero-intro .sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}
.ba-demo-details {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.ba-demo-details h3 {
  margin: 0 0 14px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.ba-demo-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 0;
  font-size: .88rem;
}
.ba-demo-details-grid dt {
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}
.ba-demo-details-grid dd {
  margin: 4px 0 0;
  color: #e2e8f0;
}
.ba-demo-details-grid code {
  background: rgba(0,0,0,.25);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: .85rem;
}
.ba-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ba-demo-inner {
  background: linear-gradient(145deg, rgba(124,58,237,.22), rgba(23,178,106,.12));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--ba-radius);
  padding: 32px;
}
.ba-demo h2 { font-size: 1.75rem; margin: 0 0 8px; }
.ba-demo .sub { color: rgba(255,255,255,.7); margin-bottom: 8px; }
.ba-demo-note { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0 0 20px; }
.ba-demo-footnote { margin: 18px 0 0; }
.ba-demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ba-demo-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 22px;
}
.ba-demo-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.ba-demo-card p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0 0 14px; }
.ba-demo-creds { margin: 0 0 16px; font-size: .88rem; }
.ba-demo-creds dt { color: rgba(255,255,255,.45); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }
.ba-demo-creds dd { margin: 2px 0 0; color: #e2e8f0; }
.ba-demo-creds code {
  background: rgba(0,0,0,.25); padding: 3px 8px; border-radius: 6px;
  font-family: ui-monospace, monospace; font-size: .85rem;
}

.ba-auth-demo-hint {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.55); text-align: center;
}
.ba-auth-demo-hint code {
  background: rgba(0,0,0,.2); padding: 2px 6px; border-radius: 4px;
  font-size: .8rem;
}
.ba-auth-demo-hint a { color: var(--ba-teal); }

.ba-contact {
  max-width: 1120px;
  margin: 0 auto 90px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.ba-contact h2 { font-size: 1.75rem; margin-bottom: 10px; }
.ba-contact .sub { color: rgba(255,255,255,.62); margin-bottom: 20px; font-size: .95rem; }

.ba-contact-points {
  list-style: none;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.9;
}

.ba-contact-form {
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid var(--ba-line);
  border-radius: var(--ba-radius);
  padding: 28px;
}

.ba-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ba-form-light {
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.2);
  color: var(--ba-ink);
}

.ba-form-light:focus {
  border-color: var(--dos-purple);
  box-shadow: 0 0 0 3px rgba(98,84,231,.2);
}

.ba-contact-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .ba-hero { grid-template-columns: 1fr; }
  .ba-feature-grid { grid-template-columns: 1fr; }
  .ba-roadmap-grid { grid-template-columns: 1fr; }
  .ba-module-grid { grid-template-columns: 1fr; }
  .ba-module-grid-6 { grid-template-columns: 1fr; }
  .ba-pricing-grid { grid-template-columns: 1fr; }
  .ba-addon-grid { grid-template-columns: 1fr; }
  .ba-portals { grid-template-columns: 1fr; }
  .ba-contact { grid-template-columns: 1fr; }
  .ba-form-row { grid-template-columns: 1fr; }
  .ba-demo-cards { grid-template-columns: 1fr; }
  .ba-demo-details-grid { grid-template-columns: 1fr; }
  .ba-trust-grid { grid-template-columns: 1fr; }
  .ba-nav-links .ba-btn-ghost { display: none; }
}

/* ── Light marketing theme (v2.2.7) ─────────────────────────────── */
.tabular, .tabular-nums { font-variant-numeric: tabular-nums; }

.ba-hero-copy h1 { color: var(--dos-navy); }

.ba-tag {
  background: rgba(98,84,231,.08);
  border-color: rgba(98,84,231,.2);
  color: var(--dos-purple);
}

.ba-module-grid-6 { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 1100px) {
  .ba-module-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

.ba-module-card {
  background: #fff;
  border-color: rgba(6,43,62,.08);
  box-shadow: 0 4px 24px rgba(6,43,62,.04);
}

.ba-module-card p { color: var(--dos-muted); }

.ba-modules h2, .ba-pricing h2, .ba-page-hero h1 { color: var(--dos-navy); }

.ba-modules-intro .sub,
.ba-pricing-intro .sub,
.ba-page-hero .sub,
.ba-contact .sub { color: var(--dos-muted); }

.ba-muted-inline { color: var(--dos-muted); font-size: .88rem; }

.ba-pricing-card {
  background: #fff;
  border-color: rgba(6,43,62,.08);
  color: var(--dos-navy);
}

.ba-pricing-card-highlight {
  border-color: rgba(98,84,231,.35);
  box-shadow: 0 8px 32px rgba(98,84,231,.1);
}

.ba-pricing-audience, .ba-pricing-features { color: var(--dos-muted); }

.ba-contact h2 { color: var(--dos-navy); }
.ba-contact-points { color: var(--dos-muted); }

.ba-contact-form {
  background: #fff;
  border: 1px solid rgba(6,43,62,.08);
  border-radius: var(--ba-radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(6,43,62,.04);
}

.ba-contact-popia-note {
  font-size: .85rem;
  color: var(--dos-muted);
  margin-top: 16px;
  line-height: 1.55;
}

.ba-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--dos-muted);
  margin: 12px 0 4px;
  line-height: 1.45;
}

.ba-consent input { margin-top: 3px; flex-shrink: 0; }
.ba-consent a { color: var(--dos-purple); }

/* Ledger-style dashboard preview */
.ba-ledger-preview { background: transparent; border: none; box-shadow: none; padding: 0; }
.ba-ledger-preview-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dos-muted);
  margin-bottom: 10px;
}
.ba-ledger-frame {
  background: #fff;
  border: 1px solid rgba(6,43,62,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6,43,62,.08);
}
.ba-ledger-toolbar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #F0F2F4;
  border-bottom: 1px solid rgba(6,43,62,.06);
}
.ba-ledger-toolbar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(6,43,62,.12);
}
.ba-ledger-body { padding: 18px; }
.ba-ledger-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.ba-ledger-kpi {
  background: #F8F9FB;
  border-radius: 10px;
  padding: 10px 12px;
}
.ba-ledger-kpi .k {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dos-muted);
}
.ba-ledger-kpi .v {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dos-navy);
}
.ba-ledger-rows { display: flex; flex-direction: column; gap: 8px; }
.ba-ledger-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--dos-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(6,43,62,.06);
}
.ba-ledger-row span:last-child { color: var(--dos-navy); font-weight: 700; }
.ba-ledger-caption {
  font-size: .75rem;
  color: var(--dos-muted);
  margin-top: 10px;
}

/* Proof section */
.ba-proof {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 0 28px;
}
.ba-proof-inner {
  background: #fff;
  border: 1px solid rgba(6,43,62,.08);
  border-radius: var(--ba-radius);
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(6,43,62,.04);
}
.ba-proof h2 { font-size: 1.5rem; margin-bottom: 10px; color: var(--dos-navy); }
.ba-proof-points {
  list-style: none;
  margin-top: 16px;
  color: var(--dos-muted);
  line-height: 1.9;
  font-size: .92rem;
}

/* Trust footer */
.ba-trust-footer {
  border-top: 1px solid rgba(6,43,62,.08);
  margin-top: 64px;
  padding: 40px 28px 32px;
  background: #fff;
}
.ba-trust-grid {
  max-width: 1120px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}
.ba-trust-grid strong {
  display: block;
  color: var(--dos-navy);
  margin-bottom: 8px;
  font-size: .95rem;
}
.ba-trust-grid p, .ba-trust-grid li {
  font-size: .85rem;
  color: var(--dos-muted);
  line-height: 1.55;
}
.ba-trust-grid ul { list-style: none; }
.ba-trust-grid a { color: var(--dos-purple); text-decoration: none; }
.ba-trust-grid a:hover { text-decoration: underline; }
.ba-trust-copy {
  text-align: center;
  font-size: .82rem;
  color: var(--dos-muted);
  max-width: 1120px;
  margin: 0 auto;
}

/* Pricing toggle */
.ba-billing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid rgba(6,43,62,.1);
  border-radius: 999px;
  padding: 4px;
  margin-top: 8px;
}
.ba-billing-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dos-muted);
  cursor: pointer;
}
.ba-billing-btn.is-active {
  background: var(--dos-purple);
  color: #fff;
}
.ba-billing-save {
  font-size: .72rem;
  font-weight: 700;
  opacity: .9;
}
.ba-pricing-toggle-note {
  text-align: center;
  color: var(--dos-muted);
  font-size: .88rem;
  margin: -24px 0 32px;
}
.ba-compare-legend {
  text-align: center;
  font-size: .82rem;
  color: var(--dos-muted);
  margin: -8px 0 20px;
}
.ba-pick { color: var(--dos-purple); font-weight: 700; }

.ba-pricing-table-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(6,43,62,.08);
}
.ba-pricing-table th, .ba-pricing-table td {
  color: var(--dos-navy);
  border-color: rgba(6,43,62,.08);
}
.ba-pricing-table th { background: #F8F9FB; }

.ba-roadmap-card, .ba-addon-card {
  background: #fff;
  border-color: rgba(6,43,62,.08);
  color: var(--dos-navy);
}
.ba-addon-card p { color: var(--dos-muted); }

.ba-legal-body {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 28px 48px;
  color: var(--dos-muted);
  line-height: 1.65;
}
.ba-legal-body h2 {
  color: var(--dos-navy);
  font-size: 1.15rem;
  margin: 28px 0 10px;
}
.ba-legal-body ul { margin: 0 0 12px 1.2rem; }
.ba-legal-body a { color: var(--dos-purple); }
.ba-legal-updated { margin-top: 32px; font-size: .85rem; }

.ba-demo-return {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 28px 0;
}

/* ── Get started (FieldStack-style) ───────────────────────────── */
.ba-getstarted-hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px 32px;
  text-align: center;
}

.ba-getstarted-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--copper-ink);
  margin-bottom: 14px;
  line-height: 1.1;
}

.ba-getstarted-hero .sub {
  color: var(--copper-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.ba-getstarted-grid {
  max-width: 880px;
  margin: 0 auto 64px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-getstarted-card {
  background: var(--copper-surface);
  border: 1px solid var(--copper-line);
  border-radius: var(--ba-radius);
  padding: 32px 28px;
  box-shadow: var(--ba-shadow);
  display: flex;
  flex-direction: column;
}

.ba-getstarted-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--copper-ink);
  margin-bottom: 10px;
}

.ba-getstarted-card p {
  color: var(--copper-muted);
  font-size: .92rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

.ba-getstarted-card .ba-btn { align-self: flex-start; }

.ba-module-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.ba-contact-signup {
  max-width: 640px;
  margin: 0 auto 64px;
  padding: 0 28px;
  display: block;
}

.ba-signup-form { margin: 0; }

.ba-signup-alt {
  text-align: center;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--copper-muted);
}

.ba-signup-alt a { color: var(--copper-accent); }

.ba-login-hub-demo {
  text-align: center;
  max-width: 480px;
  margin: -32px auto 64px;
  padding: 0 28px;
}

.ba-login-hub-demo .sub {
  color: var(--copper-muted);
  margin-bottom: 12px;
}

.ba-login-hub-grid {
  max-width: 720px;
}

@media (max-width: 900px) {
  .ba-getstarted-grid { grid-template-columns: 1fr; }
  .ba-module-grid-3x2 { grid-template-columns: 1fr; }
  .ba-trust-grid { grid-template-columns: 1fr 1fr; }
}
