
/* ==========================================================
   RESET
========================================================== */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:62.5%;
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    font-size:1.6rem;
    line-height:1.6;

    color:var(--color-text);
    background:var(--color-background);

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
    border:none;
    background:none;
}

/* ==========================================================
   DESIGN TOKENS
========================================================== */

:root{

    /* Brand */
    --color-primary:#2563EB;
    --color-primary-dark:#1D4ED8;
    --color-primary-light:#DBEAFE;

    /* Background */
    --color-background:#F8FAFC;
    --color-surface:#FFFFFF;

    /* Text */
    --color-text:#1F2937;
    --color-text-light:#6B7280;

    /* Borders */
    --color-border:#E5E7EB;

    /* Status */
    --color-success:#10B981;
    --color-warning:#F59E0B;
    --color-danger:#EF4444;

    /* Radius */
    --radius-sm:8px;
    --radius-md:16px;
    --radius-lg:24px;
    --radius-xl:999px;

    /* Shadows */
    --shadow-sm:0 2px 10px rgba(15,23,42,.05);
    --shadow-md:0 8px 24px rgba(15,23,42,.08);
    --shadow-lg:0 20px 40px rgba(15,23,42,.12);

    /* Animation */
    --transition:.25s ease;

    /* Layout */
    --container-width:1200px;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1{
    font-size:5.6rem;
    font-weight:800;
    line-height:1.1;
    color:var(--color-text);
}

h2{
    font-size:3.8rem;
    font-weight:700;
    line-height:1.2;
    color:var(--color-text);
    text-align:center;
    margin-bottom:4rem;
}

h3{
    font-size:2.4rem;
    font-weight:600;
    line-height:1.3;
}

h4{
    font-size:2rem;
    font-weight:600;
}

p{
    color:var(--color-text-light);
    line-height:1.8;
}

/* ==========================================================
   SECTIONS
========================================================== */

section{
    padding:2rem 0;
}

section:last-child{
    padding-bottom:0;
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:.8rem;
    padding:1.2rem 2.8rem;
    border-radius:var(--radius-md);
    background:var(--color-primary);
    color:white;
    font-weight:600;
    transition:var(--transition);

}

.btn:hover{
    background:var(--color-primary-dark);
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
}

.btn--secondary{
    background:white;
    color:var(--color-primary);
    border:1px solid var(--color-border);
}

.btn--secondary:hover{
    background:var(--color-primary-light);
}

/* ==========================================================
   CARD
========================================================== */
.card{
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
}

/* ==========================================================
   UTILITIES
========================================================== */
.text-center{
    text-align:center;
}

.text-primary{
    color:var(--color-primary);
}

.hidden{
    display:none;
}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px){

    h1{
        font-size:4.4rem;
    }

    h2{
        font-size:3rem;
        margin-bottom:3rem;
    }
}