/* ads-design-system tokens — alphadropsupply core identity */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Special+Elite&display=swap');

:root {
  /* Surface */
  --black:       #0a0a0a;
  --dark:        #111215;
  --panel:       #16181d;
  --border:      #252830;

  /* Brand */
  --olive:       #6b7a2e;
  --olive-light: #8a9a3a;
  --amber:       #d4860a;
  --amber-light: #f0a020;
  --red:         #c0281a;
  --red-bright:  #e03020;

  /* Text */
  --off-white:   #e8e4dc;
  --muted:       #8a8d96;
  --text:        #ccc8bf;

  /* Fonts */
  --font-body:    'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-label:   'Oswald', sans-serif;
  --font-mono:    'Special Elite', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.85;
  overflow-x: hidden;
}
.container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
strong { color: var(--off-white); font-weight: 600; }
em { font-style: italic; color: var(--amber-light); }
p { margin-bottom: 1.6em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }