:root {
    --bg-canvas: #152638;
    --bg-accent: #435161;
    --text-muted: #687A8F;
    --text-primary: #909EAE;
}

html {
    font-size: 100%;
}

body {
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);  
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
    text-align: center;  
    padding: 15vh 40px 40px 40px; 
    box-sizing: border-box;
    max-width: 1000px;
}

h1 {
    font-size: clamp(3.5rem, 3rem + 3vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
}

p {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
    color: var(--text-muted);
}