:root {
    --background: oklch(0.98 0.005 285);
    --foreground: oklch(0.15 0.02 285);
    --muted: oklch(0.96 0.005 285);
    --muted-foreground: oklch(0.5 0.02 285);
    --card: oklch(1 0 0);
    --border: oklch(0.9 0.01 285);

    --accent-brand: oklch(0.6 0.19 25);
    --accent-brand-hover: oklch(0.55 0.19 25);
    --accent-secondary: oklch(0.65 0.15 35);

    --radius: 0.75rem;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Geist", system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 1.5rem;
}

/* NAV */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 72px;
    gap: 2rem;
}

.center {
    text-align: center;
}

/* Brand */

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
}

.nav-title {
    font-size: 1.1rem;
}

/* Links */

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
}

/* CTA */

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

.btn.small {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 999px;
}


.footer {
    border-top: 1px solid var(--border);
    padding: 10px 0;
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
}


.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-brand);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-brand-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
}

.profile-icon {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.nav-brand {
    user-select: none;
}