:root {
    color-scheme: dark;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    --accent: #00ec98;
    --accent-contrast: #008f5c;
    --on-accent: #131313;
    --background: #131313;
    --surface: #1f1f1f;
    --elevated: #2c2c2c;
    --error: #f18282;
    --primary: #eeeeee;
    --secondary: #c7c7c7;
    --tertiary: #969ca2;
    --stroke: rgba(255, 255, 255, 0.08);
}

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

html,
body {
    margin: 0;
    padding: 0;
    background: var(--background);
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    overscroll-behavior: none;
    color: var(--primary);
    background-image: url("background-pattern.svg");
    opacity: 1;
    transform: opacity 0.5;
}

img {
    width: 100%;
    height: auto;
}

.icon {
    max-width: 64px;
}

.page-slide {
    width: 100wv;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 560px;
    padding: 0 20px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}

h1 {
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 16px;
}

p.subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary);
    margin-bottom: 16px;
}

p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.6em;
    font-weight: 400;
}

.button {
    font-family: var(--font-mono);
    font-size: 13px;
    height: 40px;
    appearance: none;
    border: none;
    outline: none;
    font-weight: 400;
    cursor: pointer;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
}

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

.badge-button > svg {
    fill: var(--background);
}

.navigation {
    font-size: 12px;
    list-style: none;
    padding: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation li {
    color: var(--tertiary);
    display: inline-block;
}

.navigation li a {
    color: var(--tertiary);
    cursor: pointer;
}

.navigation li a:hover {
    text-decoration: underline;
}

.navigation li:after {
    content: "|";
    color: var(--quaternary);
    margin: 0 16px;
    opacity: 0.5;
}

.navigation li:last-child:after {
    display: none;
}

.button-group {
    display: none;
}

@media (max-width: 600px) {
    .icon {
        max-width: 56px;
    }

    h1 {
        font-size: 32px;
    }

    p.subtitle {
        font-size: 16px;
    }

    .navigation {
        flex-direction: column;
        gap: 8px;
    }

    .navigation li:after {
        display: none;
    }
}
