:root {
    --bg-dark: #0b0c0e;
    --text-main: #fff;
    --text-muted: rgba(255, 255, 255, .6);
    --text-soft: rgba(255, 255, 255, .45);
    --accent: #ff4d3d;
    --approve: #3DFFBA;

    /* type rhythm */
    --fs-h1: clamp(3rem, 8vw, 6rem);
    --fs-h2: clamp(2.5rem, 6vw, 4rem);
    --fs-h3: clamp(2rem, 4.5vw, 3rem);
    --fs-body: 1rem;
    --fs-label: .75rem;
    --lh-body: 1.6;
    --track-wide: .18em;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
}

h1, h2, h3, p {
    margin: 0;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: var(--fs-body);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-color-soft {
    color: var(--text-soft);
}
.no-underline {
    text-decoration: none;
}