/* Minimal placeholder styling — replaced when the Framer build lands. */
:root {
    color-scheme: light dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #e6e6e6;
        background: #111;
    }
}

main {
    max-width: 38rem;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
}

a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration: none;
}

hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid currentColor;
    opacity: 0.15;
}

small {
    opacity: 0.7;
    font-size: 0.875rem;
}

code {
    background: rgba(0, 0, 0, 0.06);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.9em;
}

@media (prefers-color-scheme: dark) {
    code {
        background: rgba(255, 255, 255, 0.1);
    }
}
