:root {
    --black: #050505;
    --dark: #0e0e0e;
    --gold: #c6a24a;
    --rich-gold: #e0c36d;
    --teal: #14f1d9;
    --gray: #bdbdbd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: white;
    line-height: 1.6;
}


/* ===== PARTICLE HERO ===== */
.particle-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #030303;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
   
}



#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* 👈 ADD THIS */
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.particle-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(198,162,74,0.18), rgba(0,0,0,0.85));
    z-index: 1;
}

.particle-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
}

.particle-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--rich-gold);
    margin-bottom: 20px;
}

.particle-hero p {
    font-size: 1.1rem;
    color: #bdbdbd;
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--rich-gold);
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== SECTION BASE ===== */
section {
    padding: 120px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* ===== ABOUT ===== */
.about-system {
    background: #060606;
    padding: 140px 20px;
    border-top: 1px solid rgba(198,162,74,0.15);
    position: relative;
}

.about-system::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(198,162,74,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(198,162,74,0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.3;
}

.system-header {
    max-width: 720px;
    margin-bottom: 80px;
    position: relative;
}

.system-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.system-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    color: var(--rich-gold);
    margin: 12px 0 18px;
}

.system-header p {
    color: #bdbdbd;
    font-size: 1.05rem;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.system-node {
    background: linear-gradient(145deg, #0b0b0b, #040404);
    border: 1px solid rgba(198,162,74,0.25);
    padding: 36px;
    position: relative;
}

.system-node::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.node-id {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    font-size: 0.9rem;
}

.system-node h3 {
    margin: 14px 0;
    color: #fff;
    font-size: 1.15rem;
}

.system-node p {
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== VALUES GRID ===== */
.intent-stack {
    background: #030303;
    padding: 160px 20px;
    position: relative;
    border-top: 1px solid rgba(198,162,74,0.12);
}

.intent-header {
    max-width: 700px;
    margin-bottom: 100px;
}

.intent-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.intent-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    color: var(--rich-gold);
    margin-top: 14px;
}

.intent-line {
    position: absolute;
    top: 260px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 360px);
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0.6;
}

.intent-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 120px;
}

.intent-item.left .intent-content {
    grid-column: 1;
    text-align: right;
    padding-right: 80px;
}

.intent-item.right .intent-content {
    grid-column: 2;
    padding-left: 80px;
}

.intent-index {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    background: #030303;
    padding: 6px 12px;
    border: 1px solid rgba(198,162,74,0.3);
}

.intent-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 14px;
}

.intent-content p {
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 420px;
    display: inline-block;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .intent-line {
        left: 24px;
        transform: none;
    }

    .intent-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .intent-item.left .intent-content,
    .intent-item.right .intent-content {
        grid-column: 1;
        padding: 0;
        text-align: left;
    }

    .intent-index {
        left: 24px;
        transform: none;
    }
}

/* ===== SPLIT SECTIONS ===== */
.community-network {
    background: radial-gradient(circle at center, #080808, #020202);
    padding: 160px 20px;
    border-top: 1px solid rgba(198,162,74,0.15);
}

.community-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.community-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.community-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    color: var(--rich-gold);
    margin: 12px 0 18px;
}

.community-header p {
    color: #bdbdbd;
    font-size: 1.05rem;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    position: relative;
}

.network-node {
    background: transparent;
    border-left: 2px solid rgba(198,162,74,0.35);
    padding-left: 24px;
    position: relative;
}

.network-node::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.network-node h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.network-node p {
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid rgba(198,162,74,0.15);
}

@media (max-width: 768px) {
    section {
        padding: 80px 20px;
    }
}
