/* ==========================================================================
   Base reset + global element defaults.
   Requires tokens.css to be loaded first.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  background: var(--page-bg);
  background-image: var(--page-gradient);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--font-body);
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-tracking);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-tracking);
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  letter-spacing: var(--h3-tracking);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

::placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}

.eyebrow,
.kicker,
[class*="kicker"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-label-color);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

/* Decorative accent line: keeps the bright brand green visible on major
   orientation labels (page hero eyebrows, hero-card eyebrows, centered
   section eyebrows) now that the label text itself is a neutral slate
   (--accent-label-color) rather than green. Flex child of the label itself
   (inline-flex above), so it sits before the text, vertically centered,
   separated by the same 8px gap, and never wraps onto its own line.
   Deliberately scoped to .eyebrow/.kicker only, NOT [class*="kicker"] -
   the smaller component labels (.process-row-kicker, .pricing-option-
   kicker, .helps-signal-label, etc.) keep the neutral text without the
   line; the base rule above still gives them the shared color/size.
   Not applied to links (.card-link, .nav-link, .faq-answer a,
   service-guide links, etc.) - those keep their own affordance via
   weight/underline. */
.eyebrow::before,
.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-color);
}
