:root {
    --primary: #111111;
    --secondary: #666666;
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #e5e5e5;
    --text: #111111;
    --text-muted: #666666;
    --radius: 4px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.navbar {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    background: #fff;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.section {
    padding: 4rem 0;
}

.bg-surface {
    background-color: var(--surface);
}

.form-control {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Toasts/Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1055;
}