:root {
    --background: #080b10;
    --surface: #10151d;
    --surface-light: #171e29;
    --text: #f4f6f8;
    --muted: #aab3c0;
    --border: #273140;
    --accent: #d8b86a;
    --accent-light: #f0d38b;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(216, 184, 106, 0.10), transparent 34rem),
        var(--background);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8, 11, 16, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.navigation a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.navigation a:hover {
    color: var(--text);
}

.hero {
    padding: 110px 0 90px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    max-width: 900px;
    margin: 0 0 28px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
}

h3 {
    margin-top: 0;
}

.hero-copy,
.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.15rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-block;
    padding: 13px 20px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: var(--accent);
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

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

.section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: linear-gradient(145deg, var(--surface), var(--surface-light));
}

.card p {
    color: var(--muted);
}

.project-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent-light);
    font-size: 0.78rem;
}

.legal {
    max-width: 850px;
    padding: 72px 0 100px;
}

.legal h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.legal h2 {
    margin-top: 48px;
    font-size: 1.55rem;
}

.legal p,
.legal li {
    color: var(--muted);
}

.notice {
    margin: 28px 0;
    padding: 20px;
    border-left: 3px solid var(--accent);
    background: var(--surface);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 38px 0;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
}

@media (max-width: 760px) {
    .header-inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .navigation {
        gap: 12px 18px;
    }

    .hero {
        padding: 75px 0 65px;
    }

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