:root {
  /* Brand */
  --brand-primary: #0f75ff;
  --brand-secondary: #edf2ff;
  --brand-accent: #22c55e;

  /* Surfaces */
  --surface-bg: #ffffff;
  --surface-card: #f8faff;
  --surface-alt: #f1f5ff;

  /* Text */
  --text-primary: #020b1e;
  --text-secondary: #4a5568;
  --text-inverse: #ffffff;

  /* Border */
  --border-default: #e2e8f0;

  /* State */
  --state-success: #22c55e;
  --state-warning: #f59e0b;
  --state-error: #ef4444;
}

/* Typography scale */
.text-display     { font-size: 48px; font-weight: 700; line-height: 1.1; }
.text-heading-1   { font-size: 36px; font-weight: 700; line-height: 1.2; }
.text-heading-2   { font-size: 28px; font-weight: 700; line-height: 1.3; }
.text-heading-3   { font-size: 22px; font-weight: 600; line-height: 1.4; }
.text-body-lg     { font-size: 18px; font-weight: 400; line-height: 1.7; }
.text-body        { font-size: 16px; font-weight: 400; line-height: 1.7; }
.text-body-sm     { font-size: 14px; font-weight: 400; line-height: 1.6; }
.text-caption     { font-size: 12px; font-weight: 500; line-height: 1.5; }
.text-overline    { font-size: 12px; font-weight: 700; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.08em; }

/* Generic Swiper helpers (opt-in via data attributes) */
[data-swiper-root][data-swiper-stretch-slides="true"] .swiper-wrapper,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-wrapper {
  align-items: stretch;
}
[data-swiper-root][data-swiper-stretch-slides="true"] .swiper-slide,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-slide {
  display: flex;
  height: auto;
}
[data-swiper-root][data-swiper-stretch-slides="true"] .swiper-slide > *,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-slide > * {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

[data-swiper-root][data-swiper-pagination-style="pill"] .swiper-pagination,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  height: 40px;
  padding: 0 16px;
  border-radius: 9999px;
  width: auto !important;
  bottom: auto !important;
}

[data-swiper-root][data-swiper-pagination-style="pill"] .swiper-pagination .swiper-pagination-bullet,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 9999px;
  background-color: var(--brand-primary);
  opacity: 0.35;
  transition: width 200ms ease, opacity 200ms ease;
}

[data-swiper-root][data-swiper-pagination-style="pill"] .swiper-pagination .swiper-pagination-bullet-active,
[data-swiper-root][data-swiper-variant="sw-landing1"] .swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  opacity: 1;
}
