:root {
  /* COLORS */
  --primary: #9333EA;
  --secondary: #2DD4BF;
  --tertiary: #A855F7;
  --accent: #FB7185;

  --bg: #0a0a12;
  --card: rgba(255,255,255,0.04);
  --text: #f1f5f9;
  --muted: rgba(241,245,249,0.5);

  /* SPACING SYSTEM (8px Grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 100px;

  /* BORDER RADIUS */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* SHADOWS */
  --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

  /* TEXT */
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('/assets/fonts/dm-serif-display-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('/assets/fonts/dm-serif-display-400italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

body {
  background: #0a0a12;
  color: #f1f5f9;
  line-height: 1.7;
  max-width: 100%;
}

.landing::before {
  content: "";
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(147,51,234,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* STANDARD CONTENT WIDTH */
.container {
  max-width: 110px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* TEXT DEFAULTS */
p {
  margin-bottom: var(--space-sm);
  color: rgba(241,245,249,0.7);
}

h1, h2, h3 {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--secondary);
}

/* SECTION BASE */
.section {
  padding: var(--space-xxl) var(--space-sm);
}

.section h2 {
  margin-bottom: var(--space-sm);
}

.center {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}