/* Jackpot Foundry — design tokens, reset, base typography */

:root {
  /* colour */
  --bg: #F5F7FA;
  --bg-band: #EBEEF5;
  --surface: #FFFFFF;
  --ink: #171B2B;
  --ink-soft: #4A5170;
  --slate: #35426B;
  --slate-dark: #1F2740;
  --lime: #C6FF3D;
  --lime-ink: #1B2233;
  --line: #D8DCE6;
  --line-strong: #B9C0D2;
  --danger: #A23B3B;

  /* type */
  --font-head: "Roboto Slab", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* spacing scale (4/8 based) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* layout */
  --container-w: 1180px;
  --radius: 0px;
  --border-w: 1px;
}

* {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
  max-width: 70ch;
}

a {
  color: var(--slate);
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}
