    /* =============================================
   PharmaSuite – Announcement V2 Styles
   Extends main.css + reuses announcement.css tokens
   ============================================= */

/* ---------- Top Bar ---------- */
.v2-topbar {
  background: var(--fg);
  color: hsl(0,0%,100%);
  font-size: 0.7rem;
  height: 32px;
}
.v2-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.v2-topbar-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.8;
}
.v2-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.v2-compliance-tags {
  display: inline-flex;
  gap: 0.4rem;
}
.v2-compliance-tags span {
  background: hsla(0,0%,100%,0.12);
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.v2-topbar-lang {
  opacity: 0.7;
  font-weight: 600;
}


.v2-about-strip,
.v2-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;  /* optional */
  margin: 0 auto;
  text-align: center; /* ensures text & bullets are centered */
}

/* ---------- Header (Logo + Explore) ---------- */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.v2-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.v2-explore-btn { font-size: 0.8rem; padding: 0.4rem 1rem; }



/* ---------- Logo ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  height: 34px;
  width: auto;
  display: block;
}

.v2-header .logo svg {
  height: 36px;
}

/* Footer smaller logo */
.v2-footer .logo svg {
  height: 26px;
}

/* Optional hover effect */
.logo:hover svg {
  opacity: 0.9;
}

.logo {
  color: var(--gradient-hero);
}

/* ---------- Dropdown (from announcement.css) ---------- */
.ann-dropdown-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsl(210 29% 18% / 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.ann-dropdown-overlay.open { opacity: 1; visibility: visible; }

.ann-dropdown-panel {
  position: absolute;
  top: 12px; right: 12px;
  width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 16px 48px hsl(210 29% 18% / 0.15);
  padding: 1rem;
  transform: translateY(-8px) scale(0.96);
  transition: transform 0.25s ease;
}
.ann-dropdown-overlay.open .ann-dropdown-panel {
  transform: translateY(0) scale(1);
}
.ann-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ann-dropdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
}
.ann-dropdown-close {
  background: none; border: none;
  cursor: pointer; color: var(--muted-fg);
  display: flex; align-items: center;
  transition: color 0.2s;
}
.ann-dropdown-close:hover { color: var(--primary); }
.ann-dropdown-nav { display: flex; flex-direction: column; gap: 0.125rem; }
.ann-dropdown-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-fg);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.ann-dropdown-nav a:hover { background: var(--accent); color: var(--primary); }


.v2-section-wrapper {
  display: flex;
  flex-direction: column;      /* Stack vertically */
  align-items: center;         /* Center horizontally */
  justify-content: flex-start; /* Start from top */
  max-width: 900px;            /* Keep content readable */
  margin: 0 auto;
  padding: 40px 20px;
  gap: 60px;                   /* Space between About & CTA sections */
  text-align: center;           /* Center all text & bullets */
}

/* About Section Adjustments */
.v2-about-strip {
  display: flex;
  flex-direction: column;       /* Stack heading, text, bullets */
  align-items: center;
  gap: 30px;
}

.v2-about-left h2 {
  font-size: 2rem;             /* Hero-style heading */
  line-height: 1.3;
}

.v2-about-text {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
}

/* Checklist styling */
.v2-check-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;     /* Keeps bullets aligned left inside centered column */
}

.v2-check-compact li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

/* CTA Section */
.v2-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.v2-cta-subtext {
  font-size: 1rem;
  color: #666;
}

.v2-cta-button {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  /* keep current color styling from your theme */
}

/* ---------- Form field styles (from announcement.css) ---------- */
.ann-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.ann-panel-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}
.ann-panel-close {
  background: none; border: none;
  cursor: pointer; color: var(--muted-fg);
  display: flex; align-items: center;
  transition: color 0.2s;
}
.ann-panel-close:hover { color: var(--primary); }
.ann-panel-form { display: flex; flex-direction: column; gap: 0.75rem; }
.ann-form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.ann-req { color: hsl(0, 70%, 55%); }
.ann-form-field input,
.ann-form-field select,
.ann-form-field textarea {
  width: 100%;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--fg);
  transition: border-color 0.2s;
}
.ann-form-field input:focus,
.ann-form-field select:focus,
.ann-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(199 89% 38% / 0.08);
}
.ann-form-field input.error,
.ann-form-field select.error {
  border-color: hsl(0, 70%, 55%);
}
.ann-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ann-submit-btn { margin-top: 0.15rem; width: 100%; }

/* ---------- Industry tags ---------- */
.ann-ind-tag {
  background: var(--muted);
  color: var(--fg);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ---------- Social links ---------- */
.ann-social-links { display: flex; gap: 0.625rem; }
.ann-social-links a {
  color: var(--muted-fg);
  transition: color 0.2s;
  display: flex;
}
.ann-social-links a:hover { color: var(--primary); }

/* ---------- Frame dots ---------- */
.ann-frame-dots { display: flex; gap: 5px; }
.ann-frame-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.ann-frame-dots span:first-child { background: hsl(0, 70%, 60%); }
.ann-frame-dots span:nth-child(2) { background: hsl(45, 80%, 55%); }
.ann-frame-dots span:last-child { background: hsl(140, 50%, 50%); }
.ann-frame-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-fg);
  letter-spacing: 0.02em;
}

/* ---------- Hero (Full Viewport, NO SCROLL) ---------- */
.v2-hero {
  height: calc(100vh - 88px - 44px); /* topbar(32) + header(56) + footer(44) */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-surface);
  padding: 1rem 0;
  overflow: hidden;
}
.v2-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-height: 100%;
}

.v2-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.85rem;

  border-radius: 9999px;
  flex-shrink: 0;
}

/* ---------- Two-Panel Layout ---------- */
.v2-panels {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding-top: 0.8rem;
}

/* --- API Panel (Left) --- */
.v2-api-panel {
  background: hsl(220, 25%, 12%);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(220, 20%, 20%);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.v2-api-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid hsl(220, 20%, 18%);
  flex-shrink: 0;
}
.v2-api-badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: hsl(168, 50%, 60%);
  background: hsl(168 50% 45% / 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.v2-api-tabs { display: flex; gap: 2px; }
.v2-api-tab {
  background: transparent;
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: hsl(220, 15%, 55%);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.v2-api-tab:hover { color: hsl(220, 15%, 80%); }
.v2-api-tab.active {
  background: hsl(220, 20%, 18%);
  color: hsl(168, 50%, 60%);
}

.v2-api-code {
  flex: 1;
  padding: 0.75rem;
  overflow-y: auto;
  min-height: 0;
}
.v2-api-code pre {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  line-height: 1.6;
  color: hsl(220, 15%, 75%);
}
.v2-kw { color: hsl(168, 50%, 60%); font-weight: 600; }
.v2-str { color: hsl(35, 80%, 65%); }
.v2-cm { color: hsl(220, 15%, 45%); font-style: italic; }

/* --- CMS Dashboard (Right, Welluz-inspired) --- */
.v2-cms-dashboard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.v2-dash-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.75rem;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.v2-dash-body {
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

/* KPI Cards */
.v2-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.v2-kpi {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.45rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.v2-kpi-label {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v2-kpi-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
}
.v2-kpi-change {
  font-size: 0.5rem;
  font-weight: 600;
}
.v2-kpi-change.up { color: hsl(140, 50%, 40%); }
.v2-kpi-change.down { color: hsl(0, 70%, 55%); }

/* Charts Row */
.v2-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.v2-chart-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.v2-chart-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.35rem;
}

/* Bar Chart */
.v2-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 55px;
  padding-bottom: 2px;
}
.v2-bar {
  flex: 1;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  position: relative;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.v2-bar.active { opacity: 1; background: var(--secondary); }
.v2-bar span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--muted-fg);
  white-space: nowrap;
}
.v2-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.v2-bar-labels span {
  font-size: 0.45rem;
  color: var(--muted-fg);
  flex: 1;
  text-align: center;
}

/* Donut Chart */
.v2-donut-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 auto 0.3rem;
}
.v2-donut {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.v2-donut-bg { stroke: var(--border); }
.v2-donut-fill {
  stroke: hsl(140, 50%, 45%);
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}
.v2-donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--fg);
}
.v2-donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
}
.v2-donut-legend span {
  font-size: 0.45rem;
  color: var(--muted-fg);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.v2-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.dot-pass { background: hsl(140, 50%, 45%); }
.dot-fail { background: hsl(0, 70%, 55%); }
.dot-pend { background: hsl(45, 80%, 55%); }

/* Products Table */
.v2-table-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.v2-mini-table {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.v2-table-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  color: var(--fg);
  font-weight: 500;
}
.v2-progress {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.v2-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--primary);
}
.v2-progress-fill.p2 { background: hsl(199, 70%, 50%); }
.v2-progress-fill.p3 { background: hsl(168, 50%, 45%); }
.v2-progress-fill.p4 { background: hsl(45, 70%, 55%); }
.v2-table-val {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted-fg);
  text-align: right;
  min-width: 32px;
}

/* ---------- About Strip (Inline, no separate section) ---------- */
.v2-about-strip {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 1.5rem;
  width: 100%;
  /*align-items: start;*/
  align-items: center;
  flex-shrink: 0;
}
.v2-about-heading {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 0.35rem;
  align-items: center;
}
.v2-about-text {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.55;
  align-items: center;
}

.v2-check-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.v2-check-compact li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
}
.v2-check-compact li i,
.v2-check-compact li svg { color: var(--secondary); flex-shrink: 0; }

/* CTA Row */
.v2-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
  gap: 1rem;
}
.v2-ind-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* ---------- Slide-In Panel (V2) ---------- */
.v2-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsl(210 29% 18% / 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.v2-panel-overlay.open { opacity: 1; visibility: visible; }

.v2-panel {
  position: fixed;
  top: 88px;       /* below topbar(32) + header(56) */
  right: 0;
  bottom: 44px;    /* above footer */
  z-index: 210;
  width: 440px;
  max-width: 100vw;
  background: var(--card);
  border-left: 1px solid var(--border);
  border-radius: 0.75rem 0 0 0.75rem;
  box-shadow: -8px 0 40px hsl(210 29% 18% / 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.v2-panel.open { transform: translateX(0); }

.v2-panel-inner { padding: 1.25rem; }

/* --- Testimonials V2 (visual upgrade) --- */
.v2-testimonials {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.v2-test-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.v2-test-label i, .v2-test-label svg { color: var(--primary); }

.v2-test-track { position: relative; min-height: 100px; }

.v2-test-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
}
.v2-test-card.active { opacity: 1; position: relative; }
.v2-test-card p {
  font-size: 0.78rem;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0.6rem;
}
.v2-test-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v2-test-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--primary-fg);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-test-author strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fg);
}
.v2-test-author span {
  font-size: 0.6rem;
  color: var(--muted-fg);
}

.v2-test-dots {
  display: flex;
  gap: 6px;
  margin-top: 0.6rem;
  justify-content: center;
}
.v2-test-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.v2-test-dot.active { background: var(--primary); }

/* Panel compliance badges */
.v2-panel-compliance {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.v2-panel-compliance span {
  background: var(--muted);
  color: var(--muted-fg);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ---------- Footer V2 ---------- */
.v2-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.v2-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.v2-footer-logo .logo-icon { width: 24px; height: 24px; font-size: 0.6rem; }
.v2-footer-links { display: flex; gap: 1.25rem; }
.v2-footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.v2-footer-links a:hover { color: var(--primary); }
.v2-footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .v2-panels { grid-template-columns: 1fr 1fr; }
  .v2-kpi-row { grid-template-columns: repeat(2, 1fr); }
  /*.v2-about-strip { grid-template-columns: 1fr; gap: 0.5rem; }*/
  .v2-cta-row { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
  .v2-topbar { display: none; }
  .v2-header { position: sticky; top: 0; }
  .v2-hero { height: auto; min-height: calc(100vh - 56px - 44px); padding: 1rem 0; }
  .v2-hero-inner { gap: 0.75rem; }

  .v2-panels { grid-template-columns: 1fr; gap: 0.5rem; }
  .v2-api-panel { max-height: 220px; }
  .v2-cms-dashboard { max-height: 280px; }
  .v2-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .v2-charts-row { grid-template-columns: 1fr; }

  /* Panel slides from bottom on mobile */
  .v2-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 85vh;
    border-radius: 1rem 1rem 0 0;
    border-left: none;
    border-top: 1px solid var(--border);
    transform: translateY(100%);
  }
  .v2-panel.open { transform: translateY(0); }

  .ann-form-row { grid-template-columns: 1fr; }

  /*.v2-about-strip { grid-template-columns: 1fr; gap: 0.5rem; }*/
  .v2-cta-row { flex-direction: column; align-items: center; }

  .v2-footer {
    position: relative;
  }
  .v2-footer-inner {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 0;
    gap: 0.5rem;
  }
  .v2-footer-logo { display: none; }
  .v2-footer-links { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
}

@media (max-width: 480px) {
  .v2-about-heading { font-size: 0.85rem; }
  .v2-kpi-value { font-size: 0.8rem; }
  .v2-bar-chart { height: 40px; }
  .v2-launch-badge { font-size: 0.9rem; }
}