:root {
  color-scheme: dark;
  --color-bg: #0f1110;
  --color-bg-soft: #151816;
  --color-surface: #111a16;
  --color-surface-2: #142019;
  --color-surface-3: #0d1712;
  --color-surface-soft: #172019;
  --color-surface-muted: #1e2b22;
  --color-text: #f5f7f4;
  --color-text-soft: #d7e4df;
  --color-muted: #b8beb8;
  --color-soft: #8e968e;
  --color-border: #263330;
  --color-border-soft: #203029;
  --color-border-strong: #2f4038;
  --color-primary: #1db87f;
  --color-primary-strong: #24e09a;
  --color-primary-dark: #148d63;
  --color-primary-soft: #d9fff3;
  --color-success: #9ff7d1;
  --color-success-soft: #19392d;
  --color-danger: #ff8b7d;
  --color-danger-soft: #402420;
  --color-warning: #ffd18a;
  --color-warning-soft: #3c321d;
  --color-info: #9dc2ff;
  --color-info-soft: #1c2d45;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 16px 44px rgba(0, 0, 0, 0.22);
  --radius: 14px;
  --radius-sm: 9px;
  --font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(29, 184, 127, 0.12), transparent 30rem),
    radial-gradient(circle at top right, rgba(29, 184, 127, 0.06), transparent 24rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: 1.45;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: 0.35rem;
}

h2 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.muted {
  color: var(--color-muted);
}

.eyebrow {
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
