:root {
  --brand-50: #f0faff;
  --color-brand-50: #f0faff;
  --brand-100: #dff4fc;
  --color-brand-100: #dff4fc;
  --brand-200: #b9e9f8;
  --color-brand-200: #b9e9f8;
  --brand-300: #7ad6f0;
  --color-brand-300: #7ad6f0;
  --brand-400: #33bceb;
  --color-brand-400: #33bceb;
  --brand-500: #00a7e1;
  --color-brand-500: #00a7e1;
  --brand-600: #1ab3e6;
  --color-brand-600: #1ab3e6;
  --brand-700: #008fc0;
  --color-brand-700: #008fc0;
  --brand-800: #00739a;
  --color-brand-800: #00739a;
  --brand-900: #003e54;
  --color-brand-900: #003e54;
  --brand-950: #002636;
  --color-brand-950: #002636;
  --brand-600: #1ab3e6;
  --craft-theme-color: #00a7e1;
  --craft-font-display: 'Space Grotesk', system-ui, sans-serif;
  --craft-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --craft-radius: 0.5rem;
  --craft-cta-radius: 0.5rem;
  --craft-selection-bg: #b9e9f8;
  --craft-selection-fg: #003e54;
  --craft-page-bg: #ffffff;
  --craft-display-tracking: 0;
  --craft-display-weight: 700;
  --craft-hero-size: clamp(2rem, 4vw, 3.5rem);
  --craft-section-size: clamp(1.5rem, 2.5vw, 2.15rem);
  --craft-text-body: #334155;
  --craft-text-muted: #64748b;
  --craft-text-label: #0f766e;
  --craft-header-h: 4rem;
  --craft-header-h-lg: 5rem;
}

.dark {
  --craft-page-bg: #020617;
  --craft-text-body: #cbd5e1;
  --craft-text-muted: #94a3b8;
  --craft-text-label: #5eead4;
  --craft-selection-bg: #134e4a;
  --craft-selection-fg: #ccfbf1;
}

body.craft-page {
  font-family: var(--craft-font-body);
  background-color: var(--craft-page-bg);
}
.font-display, .craft-display { font-family: var(--craft-font-display) !important; letter-spacing: var(--craft-display-tracking); font-weight: var(--craft-display-weight); }
[data-qa-section='hero'] h1.font-display, [data-qa-section='hero'] .font-display.text-4xl, [data-qa-section='hero'] h1 { font-size: var(--craft-hero-size); }
.craft-rounded { border-radius: var(--craft-radius); }
.craft-cta-radius, .craft-btn { border-radius: var(--craft-cta-radius); }
::selection { background: var(--craft-selection-bg); color: var(--craft-selection-fg); }
