:root {
    --bg-dark: #0B0D10;
    --gold: #C9A24D;
    --blood-red: #8E1B1B;
    --text-primary: #E6E6E6;
    --text-muted: #8A8F98;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(circle at 20% 10%, rgba(201, 162, 77, 0.06), transparent 40%),
            radial-gradient(circle at 80% 30%, rgba(142, 27, 27, 0.05), transparent 45%),
            radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.03), transparent 55%);
    opacity: 1;
}

/* Keep anchor targets from hiding behind the sticky header */
section {
    scroll-margin-top: 88px;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.02em;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
    line-height: 1.15;
}

h1 {
    font-size: 64px;
    font-weight: 700;
}

h2 {
    font-size: 40px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
}

.section {
    padding-top: 0;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(201, 162, 77, 0.12);
    background: rgba(11, 13, 16, 0.75);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--gold);
}

.header-cta .btn {
    padding: 10px 18px;
    border-radius: 12px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(201, 162, 77, 0.18);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1;
}

.nav-mobile {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 18px;
    border-top: 1px solid rgba(201, 162, 77, 0.10);
}

.nav-mobile a {
    display: block;
    padding: 10px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.nav-mobile a:hover {
    color: var(--gold);
}

.nav-mobile.open {
    display: block;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }
}

/* HERO */
.hero h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    margin-top: 24px;
    max-width: 720px;
    font-size: 20px;
    color: var(--text-muted);
}

.cta-group {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.btn.primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn.primary:hover {
    background-color: var(--blood-red);
}

.btn.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn.secondary:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.hero .micro {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* SECTION HEAD */
.section-head {
    max-width: 820px;
}

.section-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: var(--text-muted);
}

/* TYPO HELPERS */
.lead {
    margin-top: 18px;
    font-size: 18px;
    color: var(--text-primary);
    max-width: 760px;
}

.muted {
    margin-top: 14px;
    color: var(--text-muted);
    max-width: 720px;
}

/* CARDS */
.card-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid rgba(201, 162, 77, 0.18);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card h3 {
    margin-bottom: 2px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 77, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.card-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.card-list li {
    position: relative;
    padding-left: 16px;
    color: var(--text-primary);
    font-size: 15px;
}

.card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* SPLIT LAYOUT */
.split {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 40px;
    align-items: start;
}

/* PILLS */
.pill-grid {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.pill {
    border: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 18px;
}

.pill h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pill p {
    font-size: 15px;
    color: var(--text-muted);
}

/* SIGIL */
.sigil {
    position: sticky;
    top: 28px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    justify-items: center;
}

.sigil-inner {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 77, 0.25);
    background:
            radial-gradient(circle at 30% 30%, rgba(201, 162, 77, 0.12), transparent 55%),
            radial-gradient(circle at 70% 70%, rgba(142, 27, 27, 0.10), transparent 58%),
            rgba(11, 13, 16, 0.2);
    overflow: hidden;
}

.sigil-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sigil-caption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* MEDIA (VIDEO) */
.media {
    position: sticky;
    top: 28px;
    border: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    justify-items: center;
}

.media-inner {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    overflow: hidden;
}

.media-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.media-caption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* GAMEPLAY */
.gameplay-top {
    grid-template-columns: 1.25fr 1fr;
    align-items: start;
}

.gameplay-pillars {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* OWNERSHIP */
.ownership-top {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 24px;
    align-items: start;
}

.ownership-head {
    max-width: 860px;
}

.ownership-badge {
    display: grid;
    justify-items: end;
}

.badge {
    width: 100%;
    max-width: 360px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    background:
            radial-gradient(circle at 30% 30%, rgba(201, 162, 77, 0.10), transparent 55%),
            radial-gradient(circle at 70% 70%, rgba(142, 27, 27, 0.08), transparent 60%),
            rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 10px;
}

.badge-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.ownership-pillars {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* ECOSYSTEM */
.orbit {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.orbit-core {
    grid-column: 1 / -1;
    border: 1px solid rgba(201, 162, 77, 0.22);
    background:
            radial-gradient(circle at 35% 25%, rgba(201, 162, 77, 0.14), transparent 55%),
            radial-gradient(circle at 70% 70%, rgba(142, 27, 27, 0.10), transparent 60%),
            rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.orbit-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.orbit-core h3 {
    margin-bottom: 10px;
}

.orbit-core p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.orbit-node {
    border: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 22px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.orbit-node h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.orbit-node p {
    font-size: 15px;
    color: var(--text-muted);
}

.orbit-node:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 77, 0.35);
    background: rgba(255, 255, 255, 0.03);
}

.orbit-footnote {
    margin-top: 18px;
    max-width: 920px;
}

@media (min-width: 1100px) {
    .orbit {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .orbit-core {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        text-align: left;
        display: grid;
        align-content: center;
        padding: 34px;
    }

    .orbit-core p {
        margin: 0;
        max-width: 520px;
    }

    .node-market {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }

    .node-community {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .node-token {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
}

/* TEAM */
.team-section-title {
    margin-top: 56px;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    gap: 20px;
}

.team-grid.founders {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid.contributors {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    border: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.team-card.primary {
    border-color: rgba(201, 162, 77, 0.3);
    background:
            radial-gradient(circle at 30% 30%, rgba(201, 162, 77, 0.10), transparent 55%),
            rgba(255, 255, 255, 0.03);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 77, 0.2);
}

.team-card h4 {
    font-size: 16px;
    font-weight: 700;
}

.team-role {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.4;
}

/* COMMUNITY */
.community-box {
    border: 1px solid rgba(201, 162, 77, 0.2);
    background:
            radial-gradient(circle at 25% 20%, rgba(201, 162, 77, 0.14), transparent 55%),
            radial-gradient(circle at 80% 60%, rgba(142, 27, 27, 0.10), transparent 60%),
            rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: start;
}

.community-stats {
    display: grid;
    gap: 12px;
}

.stat {
    border: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(11, 13, 16, 0.25);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 6px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.inline-link {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 77, 0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.inline-link:hover {
    color: var(--text-primary);
    border-color: rgba(201, 162, 77, 0.65);
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(201, 162, 77, 0.14);
    background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.footer-title {
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-sub {
    margin-top: 8px;
    color: var(--text-muted);
}

.footer-muted {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-right {
    display: grid;
    justify-content: end;
    gap: 10px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--gold);
}

/* GLOBAL RESPONSIVE */
@media (max-width: 980px) {
    .split {
        grid-template-columns: 1fr;
    }

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

    .card {
        padding: 24px;
    }

    .sigil,
    .media {
        position: relative;
        top: 0;
    }

    .media-inner {
        max-width: 100%;
    }

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

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

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

    .ownership-badge {
        justify-items: start;
    }

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

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

    .orbit-core {
        text-align: left;
    }

    .team-grid.founders {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid.contributors {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

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

    .footer-right {
        justify-content: start;
    }
}

@media (max-width: 760px) {
    .team-grid.founders,
    .team-grid.contributors {
        grid-template-columns: 1fr;
    }
}
