
:root {
    --color-base:          #F2F0F7;
    --color-base-alt:      #EAE6F5;
    --color-ink:           #1C1820;
    --color-ink-muted:     #5A5265;

    --color-accent:        #4B3A8C;
    --color-accent-soft:   #7B6BAD;
    --color-magenta:       #8C2D6B;
    --color-magenta-soft:  #B85990;

    --font-display: 'Caveat', cursive;
    --font-body:    'Nunito', sans-serif;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.25rem;
    --text-xl:   1.5rem;
    --text-2xl:  2rem;
    --text-3xl:  3rem;
    --text-4xl:  4.5rem;

    --space-1:  8px;
    --space-2:  16px;
    --space-3:  24px;
    --space-4:  32px;
    --space-6:  48px;
    --space-8:  64px;

    --radius-chip: 999px;
    --radius-card: 12px;
    --transition:  0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

body {
    background-color: var(--color-base);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    height: 100%;
}