:root {
    --bg: #0c0a09;
    --bg-deep: #090707;
    --ink: #f5efe8;
    --muted: rgba(245, 239, 232, 0.7);
    --accent: #ffb24a;
    --accent-strong: #e15a63;
    --border: rgba(255, 255, 255, 0.12);
    --card: rgba(22, 14, 14, 0.9);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

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

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(900px 600px at 15% 10%, rgba(255, 178, 74, 0.22), transparent 60%),
        radial-gradient(900px 700px at 85% 0%, rgba(225, 90, 99, 0.22), transparent 65%),
        linear-gradient(180deg, #100b0b 0%, #120b0b 50%, var(--bg-deep) 100%);
    line-height: 1.7;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(900px, 90vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    padding: 32px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--muted);
}

.brand img {
    width: 34px;
    height: 34px;
}

nav {
    display: inline-flex;
    gap: 16px;
    color: var(--muted);
    font-size: 0.95rem;
}

nav a {
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

main {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
}

h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    margin-bottom: 12px;
}

.lede {
    color: var(--muted);
    margin-bottom: 24px;
}

section {
    margin-bottom: 24px;
}

section h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

section p,
section ul {
    color: var(--muted);
}

ul {
    padding-left: 18px;
}

footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 24px 0 40px;
}

@media (max-width: 640px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    main {
        padding: 28px;
    }
}
