/* ============================================================================
   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 {
  /* One accent hue (violet), coherent ramp. --accent-soft/-ring derive from
     --accent-500 via color-mix in tokens.css, so they follow automatically. */
  --accent-300: #b3a7f7;
  --accent-400: #8e7cf1;
  --accent-500: #6c5ce6;
  --accent-600: #5544c4;

  --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(--accent-400); 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 — re-theming through the token layer, the skill's own model. */
[data-theme="light"] { --accent-300: var(--accent-600); }
