/* Polaris Management — responsive polish layer.
   Mobile-first overrides that build on brand.css design tokens.
   Build-free: no preprocessor, only the variables defined in brand.css. */

/* ---------- Skip link: hidden until focused (accessibility) ---------- */
/* base.html ships `<a class="sr-only">` — reveal it on keyboard focus so the
   skip-to-content hook is actually usable, without disturbing visual layout. */
a.sr-only:focus,
a.sr-only:focus-visible {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: .65rem 1.1rem;
  clip: auto;
  clip-path: none;
  overflow: visible;
  white-space: nowrap;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Homepage lead-capture block ---------- */
/* Single grouped unit: primary CTA + secondary CTA + trust copy.
   Mobile-first — one clean column that scales up at >=560px. */
.hero__cta-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 42rem;
}

.hero__cta-actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.hero__cta-actions .btn {
  /* Touch-friendly: full-width, comfortable target on narrow screens. */
  width: 100%;
  min-height: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Decorative status dot is purely visual; spacing handled by .pill. */
.hero__trust .pill .dot {
  flex: none;
}

/* ---------- Tablet and up: balanced two-up actions row ---------- */
@media (min-width: 560px) {
  .hero__cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero__cta-actions .btn {
    width: auto;
  }
}

/* ---------- Desktop: a touch more breathing room ---------- */
@media (min-width: 900px) {
  .hero__cta-block {
    gap: 1.75rem;
    margin-top: 2.25rem;
  }
}

/* ---------- Nav burger: dependable touch target + focus ring ---------- */
.nav__burger {
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.nav__burger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
