/* ==========================================================================
   CFMOTO / Motorider — BASE element defaults
   Minimalus reset + tipografijos pagrindas. Naudoja token'us.
   ========================================================================== */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--text-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin: 0 0 var(--space-md);
  text-wrap: pretty;
}
h1 { font-size: var(--fs-h1); letter-spacing: var(--ls-tight); }
h2 { font-size: var(--fs-h2); letter-spacing: var(--ls-tight); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--space-md); text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

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

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

/* Eyebrow / label utility (UPPERCASE, spaced) */
.eyebrow {
  font-family: var(--font-utility);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Signature gradiento juostelė — sekcijų žymė (brand book motyvas).
   Trumpa horizontali teal→žalsva juostelė, dažniausiai virš antraštės kairėje. */
.grad-bar {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--grad-bar);
}
.grad-bar--lg { width: 72px; height: 5px; }

/* Eyebrow su signature juostele virš jos */
.eyebrow--barred { position: relative; padding-top: 14px; }
.eyebrow--barred::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 4px;
  border-radius: var(--radius-pill);
  background: var(--grad-bar);
}

/* Akcentinis žodis hero/antraštėse — brand book mišri spalva (vienas žodis CFMOTO Blue / gradientas) */
.accent-word { color: var(--color-accent); }
.accent-word--grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

