/* Nummaria theme tokens — hand-lifted from the Nocturne design system per the
   design handoff (design/README.md). The shipped site has no dependency on the
   private bundle; every value the prototypes reference resolves here. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* ground + text */
  --color-bg: #161826;
  --color-surface: #1e2030;
  --color-text: #e9e9ed;
  --color-divider: rgba(233, 233, 237, .12);

  /* accent (blurple) ramp */
  --color-accent: #9184d9;
  --color-accent-200: #c9c1ef;   /* lighter accent, text on saturated grounds */
  --color-accent-300: #b3a8e6;   /* accent text on dark */
  --color-accent-900: #2b2650;   /* deep accent, bg bloom gradient */

  /* saturated deep-indigo section ground (resilience + final CTA) */
  --color-section: #2d2a5a;
  --color-section-glow: #4a3f96;
  --color-section-ghost: rgba(233, 233, 237, .3);

  /* neutral ramp (only the steps the site uses) */
  --color-neutral-800: #2b2e40;  /* slider + dial tracks */

  /* type */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading-weight: 600;

  /* radius — 8px base scale */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* shadows tuned for a dark ground: edge + ambient darkness, not heavy drops */
  --shadow-sm: 0 1px 2px rgba(6, 7, 12, .4);
  --shadow-md: 0 2px 6px rgba(6, 7, 12, .35), 0 14px 34px rgba(6, 7, 12, .35);
  --shadow-lg: 0 4px 10px rgba(6, 7, 12, .4), 0 26px 60px rgba(6, 7, 12, .5);
}

/* buttons — Nocturne outlined actions, tint on hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.2;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: none;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary {
  color: var(--color-accent-200);
  border-color: color-mix(in srgb, var(--color-accent) 60%, transparent);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
  border-color: var(--color-accent);
  color: var(--color-accent-200);
}
.btn-secondary {
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
  border-color: var(--color-divider);
}
.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
  border-color: color-mix(in srgb, var(--color-text) 30%, transparent);
  color: var(--color-text);
}
