:root {
    --deep-ocean: #1e40af;
    --coastal-teal: #0891b2;
    --muted-jade: #047857;
    --warm-amber: #d97706;
    --alert-coral: #dc2626;
    --pure-white: #f9fafb;
    --stormy-grey: #374151;
    --soft-slate: #9ca3af;

    --clean-base: var(--pure-white);
    --primary: var(--deep-ocean);
    --primary-accent: var(--coastal-teal);
    --text-primary: var(--stormy-grey);
    --text-secondary: var(--soft-slate);
    --success: var(--muted-jade);
    --warning: var(--warm-amber);
    --danger: var(--alert-coral);
}

* {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #047857 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.6;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #f9fafb, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}