@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color palette -- dark, sophisticated, Exilex-inspired */
  --bg: #0C1220;
  --bg-alt: #141C2E;
  --card: #1A2236;
  --light: #F8F8F6;
  --white: #FFFFFF;

  /* Text */
  --text-light: #E8ECF0;
  --text-muted: #8B95A5;
  --text-dark: #1A1F2E;

  /* Accent -- muted gold */
  --gold: #C9A84C;
  --gold-hover: #B8963F;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.25);

  /* Borders */
  --border-dark: #2A3448;
  --border-light: #E2E5E8;

  /* Footer */
  --footer-bg: #0A0E18;

  /* CTA warm section */
  --cta-from: #1A1A0E;
  --cta-to: #2A2510;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1160px;
  --content-w: 720px;
  --radius: 12px;
  --radius-sm: 6px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
