@font-face {
    font-family: 'Figtree';
    src: url('/static/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
  }
  
  @font-face {
    font-family: 'Work Sans';
    src: url('/static/fonts/WorkSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
  }
  
  :root {
    --color-primary: #317de1;
    --color-primary-dark: #052b6a;
    --color-bg-light: #ebebeb;
    --color-bg-dark: #00234a;
    --color-navy: #052b6a;
  
    --color-text-primary: #00234a;
    --color-text-light: #e5e7eb;
    --color-text-muted: #64748b;
  
    --color-success: #09a958;
    --color-warning: #f59e0b;
    --color-danger: #f45140;
  
    --radius: 14px;
    --radius-large: 24px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-family: 'Figtree', sans-serif;
  }
  
  a {
    color: inherit;
  }
  
  .button-primary,
  .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 14px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
  }
  
  .button-primary {
    background: linear-gradient(180deg, #317de1, #2563eb);
    color: white;
    box-shadow: 0 12px 24px rgba(49,125,225,0.25);
  }
  
  .button-secondary {
    background: #f1f5f9;
    color: var(--color-bg-dark);
    border: 1px solid rgba(0,35,74,0.1);
  }
  
  .button-small {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(49,125,225,0.12);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }