@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* Color palette -- fintech/investment, trust + premium */
  --bg: #0A1628;
  --bg-alt: #131F33;
  --card: #131F33;
  --light: #F8FAFC;
  --white: #FFFFFF;

  /* Text */
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;
  --text-muted-light: #64748B;

  /* Accent -- institutional blue */
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-dim: rgba(59, 130, 246, 0.12);
  --accent-border: rgba(59, 130, 246, 0.25);

  /* Success green (positive returns only) */
  --green: #10B981;
  --green-dim: rgba(16, 185, 129, 0.12);

  /* Gold/amber (premium highlights, sparingly) */
  --gold: #F59E0B;
  --gold-dim: rgba(245, 158, 11, 0.12);

  /* Borders */
  --border-dark: #1E293B;
  --border-light: #E2E8F0;

  /* Footer */
  --footer-bg: #060D18;

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --content-w: 720px;
  --radius: 6px;
  --radius-sm: 4px;

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  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; }
