:root {

    --bg:#f8f7f4;
    --text:#111;
    --muted:#666;
    --white:#fff;

    --border:rgba(17,17,17,.08);

    --shadow:
    0 20px 60px rgba(0,0,0,.08);

    --radius-lg:32px;
    --radius-md:22px;
    --radius-sm:14px;

    --container:1440px;

}


* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html,
body{

    width:100%;
    max-width:100%;
    overflow-x:hidden;

}

html {

    scroll-behavior:smooth;

}


body {

    font-family:"Inter",sans-serif;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

    background:var(--bg);

    color:var(--text);

}


a {

    text-decoration:none;

    color:inherit;

}


.container {

    width:min(90%,var(--container));

    margin:auto;

}



/* =========================================================
   RILITY — GLOBAL TYPOGRAPHY
   SINGLE SOURCE OF TRUTH
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: "Inter", sans-serif;
    color: var(--text);
    margin-top: 0;
}

h1 {
    font-size: 68px;
    line-height: 1.08;
    letter-spacing: -3px;
    font-weight: 600;
    margin: 0 0 24px;
}

h2 {
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 600;
    margin: 0 0 24px;
}

h3 {
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 600;
}

h4 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.025em;
    font-weight: 600;
}

@media (max-width: 600px) {

    h1 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -1.5px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.08;
        letter-spacing: -0.25px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 24px;
        line-height: 1.08;
        letter-spacing: -.035em;
        font-weight: 600;
    }

    h4 {
        font-size: 20px;
        line-height: 1.3;
        font-weight: 600;
    }
}
