@font-face {
    font-family: 'SetupGrotesk';
    src: url('/static/fonts/SetupGrotesk-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SetupGrotesk';
    src: url('/static/fonts/SetupGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --light-green: #01f9c4;
    --light-green-darker: #00cba7;
    --dark-green: #002a24;
    --dark-green-lighter: #026a54;
    --action-orange: #f6511d;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SetupGrotesk', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji';
    font-weight: 300;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--dark-green) 0%, #003d35 50%, var(--dark-green-lighter) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 0.05em 0 0.1em;
    vertical-align: -0.1em;
    display: inline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

strong, b {
    font-weight: lighter;
    font-family: 'SetupGrotesk', sans-serif;
}

/* Utility classes */
.form-reset { margin: 0 !important; }
.hidden { display: none !important; }
