:root {
    --primary-blue: #0059FF;
    --navy-dark: #0D2355;
    --text-main: #111111;
    --text-muted: #333333;
    --bg-white: #ffffff;
    --bg-tech-grey: #f0f0f0;
    --bg-soft-blue-grey: #f5f7fa;
    --accent-yellow: #FFC300;
    --tactile-shadow-xs: 2px 2px 0px var(--navy-dark);
    --tactile-shadow-s: 3px 3px 0px var(--navy-dark);
    --tactile-shadow-m: 4px 4px 0px var(--navy-dark);
    --tactile-shadow-ml: 6px 6px 0px var(--navy-dark);
    --tactile-shadow-l: 8px 8px 0px var(--navy-dark);
    --tactile-shadow-xl: 12px 12px 0px var(--navy-dark);
    --tactile-shadow-xxl: 16px 16px 0px var(--navy-dark);
    --tactile-shadow-white: 4px 4px 0px rgba(255, 255, 255, 0.2);
    --tactile-shadow-white-hover: 8px 8px 0px rgba(255, 255, 255, 0.3);
    --tactile-shadow-white-solid: 4px 4px 0px var(--bg-white);
    --tactile-shadow: var(--tactile-shadow-m);
    --tactile-shadow-hover: var(--tactile-shadow-l);
    --tactile-shadow-inset: inset 1px 1px 4px rgba(0, 0, 0, 0.2);
    --border-main: 2px solid var(--navy-dark);

    /* Animation & Interaction Tokens */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s ease;
    --hover-lift: -4px;

    /* Border Radius Tokens */
    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 24px;

    /* Typography Tokens */
    --font-primary: 'Lato', sans-serif;
    /* Body Text */
    --font-display: 'Poppins', sans-serif;
    /* Headings */

    /* Mobile-first spacing */
    --header-padding: 120px;
    --section-gap: 6rem;
    --section-padding-mobile: 4rem 1rem;
    --section-padding-desktop: 8rem 2rem;
    --container-padding: 2rem;
}

::selection {
    background-color: var(--accent-yellow);
    color: var(--navy-dark);
}

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

html {
    scroll-behavior: smooth;
    font-size: 14px;
    /* Smaller base for mobile */
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
    background-color: var(--bg-white);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 1000;
    color: var(--navy-dark);
    line-height: 1.1;
}

/* Mobile base typography */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 15px;
    }

    :root {
        --header-padding: 180px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }

    :root {
        --header-padding: 240px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    p {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
}