/* ============================================
   PRIO — Global Styles
   Clean white SaaS, B2C friendly
   Modular: edit variables to change everything
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-subtle: #f8f9fb;
  --color-bg-muted: #f1f3f5;
  --color-border: #e5e7eb;
  --color-border-subtle: #f0f0f0;

  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-subtle: #dbeafe;

  --color-accent: #10b981;
  --color-accent-light: #ecfdf5;

  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Typography */
  --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 4.5rem;
  --space-5xl: 5.5rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-text: 680px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-weight: 400;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: var(--text-lg);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--text {
  max-width: var(--max-width-text);
}

.section {
  padding: 48px 0;
}

.section--subtle {
  background: var(--color-bg-subtle);
}

.section--bordered {
  border-top: 1px solid var(--color-border);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.nav__logo span {
  color: var(--color-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav__links a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: var(--color-text);
  color: #fff !important;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn--dark {
  background: var(--color-text);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-text);
  background: var(--color-bg-subtle);
  color: var(--color-text);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 8px 16px;
}

.btn--ghost:hover {
  color: var(--color-text);
  background: var(--color-bg-subtle);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: 8px 18px;
  font-size: var(--text-sm);
}

/* --- Hero --- */
.hero {
  padding: calc(64px + 48px) 0 48px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.hero__platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.hero__platform-pill:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.hero__platform-pill img {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Section Headers --- */
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__header p {
  font-size: var(--text-lg);
}

/* --- Cards --- */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--text-base);
}

/* --- Grid layouts --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Comparison Table --- */
.comparison {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__row--header {
  background: var(--color-bg-subtle);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.comparison__cell {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  font-size: var(--text-base);
}

.comparison__cell:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.comparison__highlight {
  background: var(--color-primary-light);
  font-weight: 600;
  color: var(--color-primary);
}

.check {
  color: var(--color-accent);
  font-weight: 700;
}

.cross {
  color: var(--color-text-muted);
}

/* --- Pricing --- */
.pricing-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  padding: var(--space-sm) 0;
}

.faq__question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-lg);
}

.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-top: var(--space-md);
}

.faq__answer p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Cities Grid --- */
.city-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.city-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.city-card__flag {
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.city-card__info {
  flex: 1;
}

.city-card__name {
  font-weight: 700;
  font-size: var(--text-base);
}

.city-card__platforms {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.city-card__status {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.city-card__status--active {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.city-card__status--soon {
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  counter-reset: step;
}

.step {
  position: relative;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.step h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

.step p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

/* --- Speed Visualization --- */
.speed-demo {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
}

.speed-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 600px;
  margin: var(--space-2xl) auto 0;
}

.speed-bar {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.speed-bar__label {
  flex-shrink: 0;
  width: 120px;
  text-align: right;
  font-weight: 600;
  font-size: var(--text-sm);
}

.speed-bar__track {
  flex: 1;
  height: 40px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.speed-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.speed-bar__fill--prio {
  background: var(--color-primary);
  width: 8%;
}

.speed-bar__fill--other {
  background: var(--color-text-muted);
  width: 85%;
}

/* --- Footer --- */
.footer {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: var(--space-sm);
}

.footer__col ul a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.footer__col ul a:hover {
  color: var(--color-text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered: elements start hidden, JS adds .in-view */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal { transition-delay: 0s; }
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.56s; }

/* Hero entrance animation */
.hero__badge { animation: fadeUp 0.6s ease 0.1s both; }
.hero h1 { animation: fadeUp 0.7s ease 0.2s both; }
.hero__subtitle { animation: fadeUp 0.7s ease 0.35s both; }
.hero__platforms { animation: fadeUp 0.6s ease 0.45s both; }
.hero__ctas { animation: fadeUp 0.6s ease 0.55s both; }
.hero__proof { animation: fadeUp 0.5s ease 0.65s both; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section {
    padding: 32px 0;
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-xl);
    gap: var(--space-md);
  }

  .hero {
    padding: calc(64px + 32px) 0 32px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__platforms {
    gap: 6px;
  }

  .hero__proof {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .comparison__row {
    grid-template-columns: 1fr;
  }

  .comparison__cell:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .speed-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .speed-bar__label {
    text-align: left;
    width: auto;
  }

  .speed-bar__track {
    width: 100%;
  }
}

/* --- Utility classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
