/* ==========================================================================
   Headlands & Co — v3 Homepage Stylesheet
   Display font: Newsreader (Google Fonts — free)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --limestone:    #F2F0EB;
  --slate-navy:   #1A2438;
  --quarry-stone: #8C8478;
  --quarry-dark:  #6B6258;   /* contrast-safe text shade — same hue, clears 4.5:1 on limestone */
  --warm-iron:    #4A3F35;

  --font-display: 'Newsreader', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1180px;
  --section-pad-v: clamp(5rem, 9vw, 9rem);
  --section-pad-h: clamp(1.5rem, 5vw, 3rem);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--limestone);
  color: var(--slate-navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--quarry-dark);
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--slate-navy);
  text-wrap: balance;
}

.body-copy {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--slate-navy);
  max-width: 65ch;
}

/* --------------------------------------------------------------------------
   Buttons & Links
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  background-color: var(--warm-iron);
  color: var(--limestone);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.85em 1.75em;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #3a3028;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 63, 53, 0.28);
}

.btn-primary:active {
  background-color: #2e261f;
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(74, 63, 53, 0.18);
}

.btn-primary:focus-visible {
  outline: 2.5px solid var(--warm-iron);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(74, 63, 53, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    transition: background-color 0.1s ease;
  }
  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }
  .btn-primary:active {
    transform: none;
  }
}

.link-secondary {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.link-secondary:hover {
  opacity: 0.6;
  text-decoration-color: var(--quarry-stone);
}

.link-secondary:active { opacity: 0.45; }

.link-secondary:focus-visible {
  outline: 2.5px solid var(--slate-navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Layout wrapper
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-pad-h);
  padding-right: var(--section-pad-h);
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--limestone);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(140, 132, 120, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--slate-navy);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.wordmark:focus-visible {
  outline: 2px solid var(--slate-navy);
  outline-offset: 3px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover  { color: var(--quarry-dark); }
.nav-links a:active { color: var(--warm-iron); }

.nav-links a:focus-visible {
  outline: 2.5px solid var(--slate-navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--slate-navy);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--slate-navy);
  outline-offset: 3px;
}

.nav-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}

.hero-topo {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: clamp(380px, 55vw, 760px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  margin-bottom: 1.75rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 6rem);
  line-height: 1.03;
  color: var(--slate-navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--slate-navy);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   Divider
   -------------------------------------------------------------------------- */
.section-divider {
  border: none;
  border-top: 1px solid rgba(140, 132, 120, 0.25);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Problem Section
   -------------------------------------------------------------------------- */
.problem {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.problem-topo {
  position: absolute;
  right: -80px;
  top: 0;
  width: clamp(300px, 45vw, 600px);
  height: auto;
  pointer-events: none;
  opacity: 0.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.problem-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: var(--slate-navy);
}

/* --------------------------------------------------------------------------
   Scorecard Section
   -------------------------------------------------------------------------- */
.scorecard-section {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.scorecard-topo {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: clamp(280px, 40vw, 520px);
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.scorecard-left .section-h2 {
  margin-bottom: 1.25rem;
}

.scorecard-left .body-copy {
  margin-bottom: 2rem;
}

/* Scorecard UI card */
.scorecard-card {
  position: relative;
  background-color: var(--limestone);
  border: 1px solid rgba(140, 132, 120, 0.3);
  border-radius: 6px;
  padding: 2rem 2rem 2rem 2rem;
  box-shadow:
    0 2px 8px rgba(26, 36, 56, 0.05),
    0 8px 32px rgba(26, 36, 56, 0.07);
  overflow: hidden;
}

.scorecard-signal {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.5;
}

.scorecard-card-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quarry-dark);
  margin-bottom: 0.25rem;
}

.scorecard-card-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--quarry-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(140, 132, 120, 0.2);
}

.score-rows {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.score-row-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quarry-dark);
  margin-bottom: 0.4rem;
}

.score-track {
  position: relative;
  height: 4px;
  background-color: rgba(140, 132, 120, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.score-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 2px;
  background-color: var(--slate-navy);
  /* Start at 0; JS adds .animate to trigger the fill transition */
  width: 0 !important;
  transition: width 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.score-fill.animate {
  width: var(--score-target) !important;
}

.score-number {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--slate-navy);
  white-space: nowrap;
  text-align: right;
  padding-left: 0.5rem;
}

.score-number span {
  color: var(--quarry-dark);
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   Footprint Section
   -------------------------------------------------------------------------- */
.footprint {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.footprint-topo {
  position: absolute;
  right: -60px;
  top: 0;
  width: clamp(300px, 42vw, 560px);
  height: auto;
  pointer-events: none;
  opacity: 0.6;
}

.footprint-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.footprint-header .section-h2 {
  margin-bottom: 1.25rem;
}

.footprint-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(140, 132, 120, 0.25);
  border-radius: 4px;
  background-color: transparent;
  transition: border-color 0.2s ease;
}

.tile:hover {
  border-color: rgba(140, 132, 120, 0.5);
}

.tile-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.tile-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quarry-dark);
}

/* --------------------------------------------------------------------------
   Ladder / How It Works Section
   -------------------------------------------------------------------------- */
.ladder {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.ladder-topo {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: clamp(300px, 42vw, 560px);
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.ladder-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

/* SVG ascending contour line — desktop only */
.ladder-connectors {
  display: block;
  width: 100%;
  height: 64px;
  margin-bottom: 0;
  overflow: visible;
}

.ladder-steps-wrap {
  position: relative;
}

.ladder-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  padding: 1.5rem;
  border: 1px solid rgba(140, 132, 120, 0.28);
  border-radius: 4px;
  background-color: var(--limestone);
  position: relative;
}

.step-price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--quarry-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--slate-navy);
}

/* --------------------------------------------------------------------------
   Referrals Section
   -------------------------------------------------------------------------- */
.referrals {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.referrals-topo {
  position: absolute;
  right: -60px;
  top: 0;
  width: clamp(300px, 45vw, 600px);
  height: auto;
  pointer-events: none;
  opacity: 0.55;
}

.referrals .section-h2 {
  margin-bottom: 1rem;
}

.referrals .body-copy {
  color: var(--quarry-dark);
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Close Band
   -------------------------------------------------------------------------- */
.close-band {
  background-color: var(--slate-navy);
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

.close-topo {
  position: absolute;
  right: -60px;
  top: 0;
  width: clamp(300px, 48vw, 640px);
  height: 100%;
  pointer-events: none;
}

.close-topo-svg {
  width: 100%;
  height: 100%;
}

.close-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.close-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--limestone);
  margin-bottom: 2rem;
  text-wrap: balance;
}

/* CTA inside slate-navy band — warm iron button, limestone text already set */

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--limestone);
  border-top: 1px solid rgba(140, 132, 120, 0.2);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand .wordmark {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--quarry-dark);
  line-height: 1.5;
}

.footer-address a {
  color: var(--quarry-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-address a:hover { color: var(--slate-navy); }

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--slate-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--quarry-stone); }

.footer-nav a:focus-visible {
  outline: 2px solid var(--slate-navy);
  outline-offset: 2px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--quarry-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Scorecard Intake Section
   -------------------------------------------------------------------------- */
.intake-section {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  background-color: var(--limestone);
  position: relative;
  overflow: hidden;
}

.intake-topo {
  position: absolute;
  right: -60px;
  top: 0;
  width: clamp(280px, 40vw, 520px);
  height: auto;
  pointer-events: none;
  opacity: 0.4;
}

.intake-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.intake-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--slate-navy);
  margin-bottom: 0.75rem;
}

.intake-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--quarry-dark);
  margin-bottom: 2.5rem;
}

/* Form layout */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.intake-field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quarry-dark);
}

.intake-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-navy);
  background-color: transparent;
  border: 1px solid rgba(140, 132, 120, 0.4);
  border-radius: 3px;
  padding: 0.7em 0.9em;
  width: 100%;
  transition: border-color 0.2s ease, outline 0.1s ease;
  -webkit-appearance: none;
  appearance: none;
}

.intake-field input::placeholder {
  color: var(--quarry-stone);
  opacity: 0.7;
}

.intake-field input:focus {
  outline: 2.5px solid var(--slate-navy);
  outline-offset: 2px;
  border-color: var(--slate-navy);
}

.intake-field input:focus:not(:focus-visible) {
  outline: none;
  border-color: var(--slate-navy);
}

.intake-field input:focus-visible {
  outline: 2.5px solid var(--slate-navy);
  outline-offset: 2px;
  border-color: var(--slate-navy);
  box-shadow: 0 0 0 4px rgba(26, 36, 56, 0.10);
}

.intake-field input.field-error {
  border-color: #a0282e;
}

.intake-field input[aria-invalid="true"] {
  border-color: #a0282e;
}

.field-error-msg {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #a0282e;
  display: none;
}

.field-error-msg.visible {
  display: block;
}

/* Honeypot — visually hidden, out of tab order */
.intake-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit row */
.intake-submit-row {
  padding-top: 0.5rem;
}

.intake-submit-row .btn-primary {
  font-size: 1rem;
  padding: 0.9em 2em;
  border: none;
  cursor: pointer;
}

.intake-submit-row .btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

/* Status messages */
.intake-status {
  display: none;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.intake-status.visible {
  display: block;
}

.intake-status.success {
  background-color: rgba(26, 36, 56, 0.06);
  border: 1px solid rgba(26, 36, 56, 0.15);
  color: var(--slate-navy);
}

.intake-status.error {
  background-color: rgba(160, 40, 46, 0.06);
  border: 1px solid rgba(160, 40, 46, 0.25);
  color: #7a1e23;
}

.intake-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Responsive — tablet breakpoint (max 900px)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .problem-grid,
  .scorecard-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .ladder-connectors {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-copy  { grid-column: 1 / -1; justify-self: start; }
}

/* --------------------------------------------------------------------------
   Responsive — mobile breakpoint (max 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  html { font-size: 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background-color: var(--limestone);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .nav-links.is-open a {
    font-size: 1.5rem;
  }

  .hero-topo {
    width: 260px;
    right: -30px;
    bottom: 0;
    opacity: 0.5;
  }

  .footprint-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .ladder-steps {
    grid-template-columns: 1fr;
  }

  .ladder-connectors {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-nav {
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Focus ring — skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--warm-iron);
  color: var(--limestone);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   Ladder — connector line alignment
   The SVG rises left-to-right at ~-16px top offset so its right end aligns
   visually with the top of the last (tallest) step card.
   -------------------------------------------------------------------------- */
.ladder-connectors {
  margin-top: -16px;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
}

.ladder-steps-wrap {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Global prefers-reduced-motion — honour at the highest layer
   All cosmetic transitions are suppressed; functional state changes kept.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Meter fills: jump straight to final value */
  .score-fill,
  .score-fill.animate {
    transition: none !important;
  }
}
