:root {
    /* Palette colors */
    --primary: #0f172a;        /* Slate 900 */
    --primary-dark: #020617;   /* Slate 950 */
    --secondary: #0ea5e9;      /* Sky 500 */
    --accent: #38bdf8;         /* Sky 400 */

    /* Text colors */
    --heading: #0f172a;        /* Slate 900 */
    --text: #334155;           /* Slate 700 */
    --text-muted: #64748b;     /* Slate 500 */

    /* Surfaces */
    --surface: #ffffff;
    --surface-alt: #f8fafc;    /* Slate 50 */
    --surface-dark: #0f172a;   /* Slate 900 */

    /* On surfaces */
    --on-surface: #334155;
    --on-surface-alt: #334155;
    --on-dark: #f8fafc;
    --on-primary: #ffffff;

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--surface-alt);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 700;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-surface { background-color: var(--surface); }
.bg-surface-alt { background-color: var(--surface-alt); }

/* Custom utilities */
.container-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: white;
}

/* Section Spacing */
.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

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