/* ============================================================
   Business Analytics Landing Page Stylesheet
   ba-style.css  |  v2.6.0
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --canvas: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #EFF6FF;
  --border: #E2E8F0;
  
  --border-teal: rgba(14,165,233,0.18);
  --border-gold: rgba(180,110,20,0.18);
  
  --teal-primary: #0284C7;
  --teal-dim: #E0F2FE;
  --teal-glow: rgba(2,132,199,0.06);
  --gold-accent: #B45309;
  --gold-dim: #FEF3C7;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --green-confirm: #10B981;
  --red-risk: #EF4444;
  
  --font-display: 'Outfit', sans-serif;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  
  --max-w: 1180px;
  --pad-x: 40px;
  --sec-py: 100px;
}

@media (max-width: 1024px) {
  :root {
    --pad-x: 24px;
    --sec-py: 70px;
  }
}
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --sec-py: 55px;
  }
}

/* ─── Reset & Base Style ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body.ba-page {
  background-color: var(--canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambience Blobs */
body.ba-page::before {
  content: '';
  position: absolute;
  top: 8%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
body.ba-page::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.035) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
}

/* ─── Typography & Atoms ────────────────────────────────────────────────── */
.ba-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 16px;
}
.ba-eyebrow--muted {
  color: var(--text-muted);
}
.ba-section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 14px;
  margin-bottom: 56px;
}
.ba-section-title em {
  font-style: normal;
  color: var(--teal-primary);
}
.ba-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-primary);
}
.ba-body--sm {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-primary);
}
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.teal {
  color: var(--teal-primary);
}
.gold {
  color: var(--gold-accent);
}
.muted {
  color: var(--text-muted);
}

/* ─── Layout Utilities ───────────────────────────────────────────────────── */
.ba-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.ba-section {
  padding: var(--sec-py) 0;
  position: relative;
  z-index: 10;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.ba-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.ba-btn-primary {
  background: var(--teal-primary);
  color: #FFFFFF;
}
.ba-btn-primary:hover {
  background: #0ea5e9e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14,165,233,0.3);
}
.ba-btn-primary:active {
  transform: translateY(-0.5px);
}
.ba-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--teal-primary);
}
.ba-btn-outline:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}
.ba-btn-outline:active {
  transform: translateY(0);
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.ba-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.ba-nav .ba-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ba-nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.ba-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) {
  .ba-nav-links { display: none; }
}
.ba-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.ba-nav-links a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--teal-primary);
}
.ba-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ba-nav-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .ba-nav-badge { display: none; }
}

/* ─── SECTION 1: HERO THEATRE ───────────────────────────────────────────── */
.ba-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 10;
}
.ba-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.ba-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ba-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 45% 50%, rgba(248,250,252,0) 0%, rgba(248,250,252,0.45) 55%, rgba(248,250,252,1) 100%);
  z-index: 2;
}
.ba-hero-bg-svg {
  position: absolute;
  top: 10%;
  right: 0;
  width: 65%;
  height: 80%;
  z-index: 1;
  opacity: 0.65;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .ba-hero-bg-svg {
    width: 100%;
    height: 100%;
    opacity: 0.25;
    top: 0;
  }
}
.ba-hero .ba-container {
  position: relative;
  z-index: 10;
}
.ba-hero-left {
  position: relative;
  z-index: 10;
  max-width: 680px;
}
.ba-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal-primary);
  margin-bottom: 24px;
}
.ba-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.ba-hero-h1 .teal {
  color: var(--teal-primary);
}
.ba-hero-sub {
  font-size: 18px;
  line-height: 1.68;
  color: var(--text-primary);
  margin-bottom: 36px;
}
.ba-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ba-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 580px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .ba-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ba-hero-metric-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ba-hero-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ba-hero-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.3);
}
.ba-hero-metric-card:hover::before {
  opacity: 1;
}
.ba-metric-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.ba-hero-metric-card:hover .ba-metric-icon-wrap {
  transform: scale(1.1);
}
.ba-metric-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ba-metric-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}
.ba-btn-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.ba-btn-text:hover {
  color: var(--teal-primary);
}

/* ─── SECTION 2: MARKET TELEMETRY ──────────────────────────────────────── */
.ba-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .ba-market-grid { grid-template-columns: 1fr; gap: 16px; }
}
.ba-market-card {
  background: var(--surface);
  border: 1px solid var(--border-teal);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(14,165,233,0.08);
}
.ba-market-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(14,165,233,0.08), 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(14,165,233,0.4);
}
.ba-market-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(14,165,233,0.04) 50%, transparent 60%);
  transform: translateX(-150%);
  transition: transform 0.6s ease;
}
.ba-market-card:hover::before {
  transform: translateX(200%);
}
.ba-market-metric {
  font-family: var(--font-mono);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.ba-market-metric-sub {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ba-market-sub-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
}
.ba-market-sub-arrow {
  color: var(--teal-primary);
  font-size: 10px;
}
.ba-card-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Card 2 - Strategy career steps track */
.ba-coo-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.ba-coo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ba-coo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.ba-coo-dot.active {
  background: var(--teal-primary);
  box-shadow: 0 0 8px rgba(14,165,233,0.5);
}
.ba-coo-dot.gold-dot.active {
  background: var(--gold-accent);
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}
.ba-coo-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}
.ba-coo-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 12px;
}
.ba-coo-line.filled {
  background: var(--teal-primary);
}
.ba-coo-line.filled-gold {
  background: var(--gold-accent);
}

/* ─── SECTION 3: CURRICULUM ARCHITECTURE ────────────────────────────────── */
.ba-module-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02), 0 1px 3px rgba(15, 23, 42, 0.01);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.ba-module-block:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.06), 0 1px 3px rgba(15, 23, 42, 0.01);
}
@media (max-width: 768px) {
  .ba-module-block { grid-template-columns: 1fr; }
}
.ba-module-before,
.ba-module-after {
  padding: 48px 44px;
}
@media (max-width: 580px) {
  .ba-module-before, .ba-module-after { padding: 32px 24px; }
}
.ba-module-before {
  background: #F8FAFC;
  border-right: 1px solid var(--border);
  position: relative;
}
@media (max-width: 768px) {
  .ba-module-before { border-right: none; border-bottom: 1px solid var(--border); }
}
.ba-module-after {
  background: #FFFFFF;
}
.ba-module-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ba-module-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.35;
}
.ba-module-before .ba-module-name {
  color: var(--text-muted);
}
.ba-compare-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ba-compare-label--old {
  color: var(--text-muted);
}
.ba-compare-label--new {
  color: var(--teal-primary);
}
.ba-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ba-compare-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
}
.ba-compare-list--old li {
  color: var(--text-muted);
}
.ba-compare-list--new li {
  color: var(--text-primary);
  font-weight: 500;
}
.ba-list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.ba-compare-list--new li:hover .ba-list-icon {
  transform: translateX(2px);
}
.ba-list-icon--x {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}
.ba-list-icon--ok {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.ba-tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.ba-chip {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal-primary);
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
}

/* Tools bar */
.ba-tools-bar {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 48px;
}
.ba-tools-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 0.1em;
}
.ba-tools-row {
  display: flex;
  gap: 32px 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.ba-tools-row span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-secondary);
  opacity: 0.4;
  transition: opacity 0.2s, color 0.2s;
  cursor: default;
}
.ba-tools-row span:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* ─── SECTION 4: CAREER TIMELINE ────────────────────────────────────────── */
.ba-timeline-wrap {
  position: relative;
  margin: 24px 0;
}
.ba-timeline-track {
  height: 3px;
  background: linear-gradient(90deg, var(--teal-primary) 0%, var(--gold-accent) 100%);
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1;
}
.ba-timeline-nodes {
  position: relative;
  height: 24px;
  z-index: 10;
}
.ba-timeline-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-primary);
  border: 3px solid var(--canvas);
  cursor: pointer;
  transform: translate(-50%, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  top: 2px;
}
.ba-timeline-node:nth-child(2) {
  background: #0284C7;
}
.ba-timeline-node.gold {
  width: 22px;
  height: 22px;
  background: var(--gold-accent);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.15);
  top: -1px;
}
.ba-timeline-node:hover, .ba-timeline-node.active {
  transform: translate(-50%, 0) scale(1.3);
}
.ba-timeline-node.gold:hover, .ba-timeline-node.gold.active {
  transform: translate(-50%, 0) scale(1.2);
  box-shadow: 0 0 0 8px rgba(212,175,55,0.22);
}

/* Hide track & nodes on desktop where everything is side-by-side */
@media (min-width: 901px) {
  .ba-timeline-wrap {
    margin-top: 0;
  }
  .ba-timeline-track,
  .ba-timeline-nodes {
    display: none;
  }
}

.ba-timeline-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .ba-timeline-panels {
    grid-template-columns: 1fr;
  }
}
.ba-timeline-panel {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.ba-timeline-panel:hover {
  transform: translateY(-4px);
}
@media (min-width: 901px) {
  .ba-timeline-panel {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.03);
  }
  .ba-timeline-panel.gold-panel {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.03);
  }
}
@media (max-width: 900px) {
  .ba-timeline-panel {
    display: none;
  }
  .ba-timeline-panel.active {
    display: flex;
    border-color: var(--teal-primary);
    box-shadow: 0 10px 30px rgba(14,165,233,0.06);
  }
  .ba-timeline-panel.active.gold-panel {
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(212,175,55,0.06);
  }
}
.ba-panel-tag {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-primary);
  margin-bottom: 12px;
}
.ba-panel-tag.gold {
  color: var(--gold-accent);
}
.ba-panel-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.ba-panel-salary {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 24px;
}
.ba-panel-salary.gold {
  color: var(--gold-accent);
}
.ba-panel-list {
  list-style: none;
  margin-bottom: 24px;
}
.ba-panel-list li {
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ba-panel-list li::before {
  content: '→';
  color: var(--teal-primary);
  flex-shrink: 0;
}
.ba-timeline-panel.gold-panel .ba-panel-list li::before {
  color: var(--gold-accent);
}
.ba-panel-companies {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.ba-europe-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.ba-europe-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ba-europe-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.85) 50%, rgba(15,23,42,0.94) 100%);
}
.ba-europe-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 48px;
  align-items: center;
  padding: var(--sec-py) 0;
}
@media (max-width: 900px) {
  .ba-europe-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.ba-europe-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 850;
  letter-spacing: -0.025em;
  color: #FFFFFF !important;
  margin-bottom: 24px;
}
.ba-europe-locs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-europe-loc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #E2E8F0 !important;
  line-height: 1.6;
}
.ba-europe-loc strong {
  color: #FFFFFF !important;
}

/* Frosted glass list */
.ba-europe-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--r-md);
  padding: 36px 28px;
}
.ba-europe-panel-title {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-primary);
  text-align: center;
  margin-bottom: 24px;
}
.ba-europe-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.ba-europe-check.inc {
  color: #E2E8F0 !important;
}
.ba-europe-check.exc {
  color: #94A3B8 !important;
}
.ba-europe-check-icon {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
}
.ba-europe-check.inc .ba-europe-check-icon {
  color: #10B981;
}text-secondary);
  line-height: 1.6;
}
.ba-europe-loc strong {
  color: var(--text-primary);
}

/* Frosted glass list */
.ba-europe-panel {
  background: rgba(15, 24, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-teal);
  border-radius: var(--r-md);
  padding: 36px 28px;
}
.ba-europe-panel-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-primary);
  text-align: center;
  margin-bottom: 24px;
}
.ba-europe-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.ba-europe-check.inc {
  color: var(--text-primary);
}
.ba-europe-check.exc {
  color: var(--text-muted);
}
.ba-europe-check-icon {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
}
.ba-europe-check.inc .ba-europe-check-icon {
  color: var(--green-confirm);
}

/* ─── SECTION 6: ADMISSIONS PORTAL ──────────────────────────────────────── */
.ba-admissions-wrapper {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  padding: 48px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
@media (max-width: 768px) {
  .ba-admissions-wrapper {
    padding: 32px 24px !important;
  }
}
.ba-admissions-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 60px !important;
  margin-bottom: 40px !important;
}
@media (max-width: 992px) {
  .ba-admissions-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
.ba-admissions-subtitle {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: var(--text-primary) !important;
  margin-bottom: 12px !important;
}
.ba-admissions-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 32px !important;
}

/* Criteria List */
.ba-criteria-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}
.ba-criteria-item {
  border-left: 3px solid var(--teal-primary) !important;
  padding-left: 20px !important;
}
.ba-criteria-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 6px !important;
}
.ba-criteria-name {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--text-primary) !important;
}
.ba-criteria-badge {
  font-family: var(--font-mono) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: var(--gold-accent) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  background: rgba(212, 175, 55, 0.05) !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
}
.ba-criteria-val {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.ba-criteria-subval {
  display: block !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 2px !important;
}

/* Process Timeline */
.ba-process-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}
.ba-process-step {
  display: flex !important;
  gap: 24px !important;
  padding: 24px !important;
  border-radius: var(--r-sm) !important;
  border: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.01) !important;
  transition: all 0.3s ease !important;
}
.ba-process-step.active {
  border-color: rgba(14, 165, 233, 0.3) !important;
  background: rgba(14, 165, 233, 0.03) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}
.ba-process-num {
  font-family: var(--font-mono) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  line-height: 1 !important;
}
.ba-process-step.active .ba-process-num {
  color: var(--teal-primary) !important;
  text-shadow: 0 0 10px rgba(14, 165, 233, 0.3) !important;
}
.ba-process-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.ba-process-title {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--text-primary) !important;
  margin: 0 !important;
}
.ba-process-text {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
}

/* Bottom Notice */
.ba-admissions-notice {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 16px 24px !important;
  background: rgba(212, 175, 55, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: var(--r-sm) !important;
}
.ba-notice-icon {
  color: var(--gold-accent) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.ba-notice-text {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
}
.ba-notice-text strong {
  color: var(--gold-accent) !important;
  font-weight: 700 !important;
}

/* ─── SECTION 7: SOCIAL PROOF ───────────────────────────────────────────── */
.ba-ticker-strip {
  width: 100%;
  overflow: hidden;
  background: var(--surface-2);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  margin-bottom: 80px;
}
.ba-ticker-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: baTicker 35s linear infinite;
}
.ba-ticker-track:hover {
  animation-play-state: paused;
}
@keyframes baTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ba-ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}
.ba-ticker-item .salary {
  font-family: var(--font-mono);
  color: var(--teal-primary);
  margin-left: 8px;
}
.ba-ticker-item .sep {
  margin: 0 16px;
  color: rgba(14,165,233,0.35);
  font-size: 10px;
}

.ba-alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .ba-alumni-grid { grid-template-columns: 1fr; }
}
.ba-alumni-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.ba-alumni-card:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-3px);
}
.ba-alumni-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.ba-alumni-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal-primary);
  background: var(--surface-2);
}
.ba-alumni-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}
.ba-alumni-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ba-alumni-quote {
  border-left: 3.5px solid var(--teal-primary);
  padding-left: 16px;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.ba-alumni-badge {
  align-self: flex-start;
  background: var(--teal-dim);
  color: var(--teal-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(14,165,233,0.15);
}

.ba-map-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ba-map-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ba-map-svg {
  width: 100%;
  max-width: 800px;
  height: auto;
  opacity: 0.5;
  margin: 0 auto;
}
.ba-map-dot {
  fill: var(--teal-primary);
  animation: baPulse 2.5s infinite;
}
@keyframes baPulse {
  0% { opacity: 1; r: 3.5px; }
  50% { opacity: 0.35; r: 7px; }
  100% { opacity: 1; r: 3.5px; }
}

/* ─── SECTION 8: ASSURANCE COVENANT (GUARANTEE) ─────────────────────────── */
.ba-guarantee-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 6px solid var(--gold-accent);
  border-radius: 16px;
  padding: 56px 64px;
  position: relative;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.02), 0 1px 3px rgba(15, 23, 42, 0.01);
}
@media (max-width: 768px) {
  .ba-guarantee-card { padding: 36px 28px; }
}
.ba-guarantee-stamp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.ba-stamp-svg {
  flex-shrink: 0;
}
.ba-guarantee-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 850;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.ba-guarantee-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .ba-guarantee-body { grid-template-columns: 1fr; gap: 28px; }
}
.ba-guarantee-terms p,
.ba-guarantee-terms li {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.72;
}
.ba-guarantee-terms p {
  margin-bottom: 16px;
}
.ba-guarantee-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.ba-guarantee-items li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 550;
  color: var(--text-primary);
}
.ba-guarantee-items .item-num {
  color: var(--gold-accent);
  flex-shrink: 0;
  font-weight: 750;
}
.ba-guarantee-box {
  background: rgba(212, 175, 55, 0.04);
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.02);
}
.ba-guarantee-box .box-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  line-height: 1.5;
}
.ba-guarantee-pct {
  font-family: var(--font-body);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold-accent);
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  margin: 6px 0;
}
.ba-guarantee-box .box-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  max-width: 220px;
}
.ba-guarantee-box .box-caveat {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}
.ba-guarantee-footer {
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── SECTION 9: BENTO GRID ─────────────────────────────────────────────── */
.ba-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .ba-bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ba-bento-grid { grid-template-columns: 1fr; }
}
.ba-bento-cell {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.015);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ba-bento-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ba-bento-cell:nth-child(even)::before {
  background: var(--gold-accent);
}
.ba-bento-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.06);
}
.ba-bento-cell:nth-child(even):hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.06);
}
.ba-bento-cell:hover::before {
  opacity: 1;
}
.ba-bento-icon {
  width: 46px;
  height: 46px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-primary);
  transition: transform 0.3s ease;
}
.ba-bento-cell:nth-child(even) .ba-bento-icon {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.15);
  color: var(--gold-accent);
}
.ba-bento-cell:hover .ba-bento-icon {
  transform: scale(1.1);
}
.ba-bento-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2px;
  width: 22px;
  height: 22px;
}
.ba-bento-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ba-bento-val {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.ba-bento-desc {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.65;
}

/* ─── SECTION 10: FAQ ACCORDION ─────────────────────────────────────────── */
.ba-faq-list {
  margin-top: 48px !important;
  border-top: 1px solid var(--border) !important;
}
.ba-faq-item {
  border-bottom: 1px solid var(--border) !important;
}
.ba-faq-btn {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 26px 4px !important;
  gap: 24px !important;
  cursor: pointer !important;
  color: var(--text-primary) !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  text-align: left !important;
  transition: color 0.15s !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}
.ba-faq-btn:hover {
  color: var(--teal-primary) !important;
}
.ba-faq-btn > span:first-child {
  flex: 1 !important;
  line-height: 1.5 !important;
  padding-right: 8px !important;
}
.ba-faq-icon {
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--border-teal) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: var(--text-muted) !important;
  transition: all 0.25s ease !important;
  background: transparent !important;
}
.ba-faq-item.open .ba-faq-btn {
  color: var(--teal-primary) !important;
}
.ba-faq-item.open .ba-faq-icon {
  background: var(--teal-dim) !important;
  border-color: var(--teal-primary) !important;
  color: var(--teal-primary) !important;
  transform: rotate(45deg) !important;
}
.ba-faq-body {
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.ba-faq-body-inner {
  padding: 0 4px 28px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: var(--text-secondary) !important;
}

/* ─── SECTION 11: FINAL LEAD CAPTURE ────────────────────────────────────── */
.ba-lead-hub {
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, rgba(14,165,233,0.04) 0%, transparent 65%);
}
.ba-lead-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1100px) {
  .ba-lead-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.ba-lead-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 24px;
}
.ba-lead-h2 span {
  display: block;
}
.ba-lead-bar {
  margin-top: 36px;
}
.ba-form-card {
  background: var(--surface-2);
  border: 1px solid var(--border-teal);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 0 80px rgba(14,165,233,0.06), 0 0 0 1px rgba(14,165,233,0.03);
}
@media (max-width: 600px) {
  .ba-form-card {
    padding: 28px 20px;
  }
}
.ba-form-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.ba-input-group {
  margin-bottom: 16px;
}
.ba-input {
  width: 100%;
  background: rgba(7, 11, 24, 0.65);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ba-input::placeholder {
  color: var(--text-muted);
}
.ba-input:hover {
  border-color: rgba(14, 165, 233, 0.45);
}
.ba-input:focus {
  outline: none;
  background: rgba(15, 24, 41, 0.95);
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}
.ba-form-foot {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── MOBILE STICKY BOTTOM BAR ──────────────────────────────────────────── */
.ba-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 300;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .ba-mobile-bar.show { display: flex; }
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────────────── */
.ba-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ba-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.ba-anim-d1 { transition-delay: 0.1s; }
.ba-anim-d2 { transition-delay: 0.2s; }
.ba-anim-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .ba-anim { opacity: 1; transform: none; transition: none; }
  .ba-ticker-track { animation: none; }
}
