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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(56,189,248,.08), transparent 35%),
        radial-gradient(circle at bottom left, rgba(14,165,233,.06), transparent 40%),
        var(--bg);

    color: var(--text);
    font-family: var(--font-family);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

button {
    border: none;
    cursor: pointer;
    font: inherit;
}

section {
    width: min(var(--container), calc(100% - 3rem));
    margin: 0 auto;
    padding: var(--space-6) 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    letter-spacing: -.03em;
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

h3 {
    font-size: 1.3rem;
}

p {
    color: var(--text-muted);
}

::selection {
    background: var(--primary);
    color: #fff;
}
