:root {
  --color-primary: #3425b5;
  --color-accent: #db3f98;
  --color-background: #f7f5ff;
  --color-text: #231f39;
  --color-muted: #625d7f;
  --color-white: #ffffff;
  --color-stability: #256dff;
  --color-momentum: #4654ea;
  --color-resilience: #7d39d4;
  --color-agency: #ef4d9e;
  --color-surface: #ffffff;
  --color-surface-soft: #f2efff;
  --color-border: rgba(72, 49, 174, 0.14);
  --color-shadow: rgba(35, 24, 78, 0.12);
  --color-ink-dark: #19142d;
  --gradient-brand: linear-gradient(
    118deg,
    #256dff 0%,
    #4a53ed 34%,
    #7b39d4 66%,
    #ef4d9e 100%
  );
  --gradient-hero: radial-gradient(
      circle at top left,
      rgba(109, 180, 255, 0.2),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(239, 77, 158, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #161127 0%, #241b4c 42%, #4e2ba7 72%, #ab2b8f 100%);
  --gradient-shell: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(247, 245, 255, 0.94)
  );
  --font-display: Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-size-h1: 2.8rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.4rem;
  --font-size-body: 1.1rem;
  --font-size-small: 0.9rem;
  --line-body: 1.7;
  --line-heading: 1.2;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --radius: 18px;
  --shell: 1160px;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(103, 122, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfaff 0%, var(--color-background) 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-body);
}

h1,
h2,
h3 {
  margin: 0 0 0.6em;
  color: var(--color-primary);
  font-family: var(--font-display);
  line-height: var(--line-heading);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 400;
}

p,
ul,
ol,
blockquote,
table,
figure {
  margin: 0 0 1.2em;
}

a {
  color: inherit;
}

em {
  font-style: italic;
}

small,
.micro-label,
.small-note {
  font-size: var(--font-size-small);
}

@media (max-width: 700px) {
  :root {
    --font-size-h1: 2.3rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.25rem;
    --font-size-body: 1rem;
  }
}
