/* =========================================================
   MONEYTOOL.IO
   TYPOGRAPHY SYSTEM
   ========================================================= */

/* =========================================================
   BASE
   ========================================================= */

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;

    color: var(--text-primary);
    background: var(--background);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 16px;

    color: var(--text-primary);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-weight: 750;
    line-height: 1.2;

    letter-spacing: -0.025em;

    text-wrap: balance;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

p {
    margin-top: 0;
    margin-bottom: 18px;

    color: var(--text-body);

    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: var(--primary);

    text-decoration: none;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   STRONG / EMPHASIS
   ========================================================= */

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}


/* =========================================================
   SMALL TEXT
   ========================================================= */

small {
    font-size: 0.875rem;
    line-height: 1.5;
}


/* =========================================================
   LISTS
   ========================================================= */

ul,
ol {
    margin-top: 0;
    margin-bottom: 18px;
}

li {
    line-height: 1.65;
}


/* =========================================================
   FORM TYPOGRAPHY
   ========================================================= */

button,
input,
textarea,
select {
    font-family: inherit;
}

button,
input,
textarea,
select {
    font-size: 1rem;
}


/* =========================================================
   IMAGES
   ========================================================= */

img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CODE
   ========================================================= */

code,
pre {
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: rgba(15, 118, 110, 0.16);
    color: var(--text-primary);
}


/* =========================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================= */

@media (max-width: 650px) {

    body {
        font-size: 15px;
        line-height: 1.65;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.12;
    }

    h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}