/* ============================================================================
   Noesa rebrand layer. Per the premium-web-design skill, a rebrand changes
   ONLY the accent ramp and --font-sans. Every component reads the semantic
   layer, so this re-themes the whole site. Loaded last (after components.css).
   ============================================================================ */
:root {
  /* Noesa brand: ink/navy primary accent + a reserved red "posted dot".
     --accent-soft/-ring derive from --accent-500 via color-mix in tokens.css. */
  --accent-300: #6b7391;   /* light ink: eyebrows, chips, code keywords */
  --accent-400: #3b4160;
  --accent-500: #2b2d42;   /* ink: primary buttons / links */
  --accent-600: #1f2136;
  --red: #ef233c;          /* the posted dot: reserved, small use only */

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

/* ----------------------------------------------------------------------------
   Page-specific bespoke hero visual (the product is the hero). Composed from
   semantic tokens only, no hardcoded hex, on the 4px grid.
   ---------------------------------------------------------------------------- */
.app-mock { width: 100%; }
.app-mock__head,
.app-mock__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4);
}
.app-mock__foot { border-top: 1px solid var(--border); }
.app-mock__title { font-size: var(--text-label); color: var(--text-muted); font-weight: var(--fw-semibold); }
.app-mock__total { font-size: var(--text-h4); color: var(--text); font-weight: var(--fw-semibold);
                   font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.tl { display: flex; flex-direction: column; }
.tl__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--text-body-sm);
}
.tl__app { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--text); min-width: 0; }
.tl__app-dot { width: 8px; height: 8px; border-radius: var(--radius-xs);
               background: var(--red); flex: none; }
.tl__meta { color: var(--text-subtle); font-size: var(--text-eyebrow); }
.tl__hours { color: var(--text); font-variant-numeric: tabular-nums; text-align: right; }

/* Tiny stepper for "how it works" */
.step__num {
  width: 28px; height: 28px; display: grid; place-items: center; flex: none;
  border-radius: var(--radius-full); box-shadow: var(--ring-hairline);
  font-size: var(--text-label); font-weight: var(--fw-semibold); color: var(--accent-300);
  background: var(--accent-soft);
}

/* Center helper used a couple of times in section bodies */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* The kit's base `.bento__cell` rule is declared after the span modifiers in
   layout.css, so it overrides their grid-column (equal specificity, later wins),
   collapsing the hero/wide cells to span 2. Restore the intended spans so the
   bento reads as a proper mosaic. */
@media (min-width: 760px) {
  .bento__cell--hero,
  .bento__cell--wide { grid-column: span 4; }
}

/* Light-theme contrast: the kit uses --accent-300 (a light tint for dark
   backgrounds) for eyebrows, accent chips, card icons and code keywords, which
   washes out on white. Remap that one primitive to a darker accent in light
   mode. This re-themes through the token layer, the skill's own model. */
[data-theme="light"] { --accent-300: var(--accent-600); }

/* Brand spark: the reserved red "posted dot", small accents only. */
.chip__dot { background: var(--red); }
