:root {
    color-scheme: light;
    --background: #f7f5ef;
    --foreground: #161616;
    --muted: #69645b;
    --line: rgba(22, 22, 22, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
    color: var(--foreground);
}

body {
    display: grid;
    min-height: 100vh;
    margin: 0;
    grid-template-rows: 1fr auto;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9), transparent 24rem),
        var(--background);
}

.page {
    display: grid;
    place-items: center;
    padding: clamp(2rem, 8vw, 6rem);
}

.hero {
    width: min(920px, 100%);
    text-align: center;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(4rem, 17vw, 13rem);
    font-weight: 760;
    letter-spacing: -0.085em;
    line-height: 0.82;
}

footer {
    padding: 1.25rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    width: min(680px, calc(100% - 2rem));
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(22, 22, 22, 0.14);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 0.3rem;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.button {
    border: 1px solid var(--foreground);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.button.primary {
    color: var(--background);
    background: var(--foreground);
}

.button.secondary {
    color: var(--foreground);
    background: transparent;
}

@media (max-width: 600px) {
    .page {
        align-items: center;
        padding: 2rem 1rem;
    }

    h1 {
        letter-spacing: -0.07em;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
