/* ═══════════════════════════════════════════════════════════════
   NEXUS HOME PAGE — Glowy Sections
   ═══════════════════════════════════════════════════════════════ */

/* Typography */
:root {
    --font-display: 'Times New Roman', Times, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Nav active state */
.nav-links a.active {
    color: var(--cyan);
}

/* ─────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────── */

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-xl);
    text-align: center;
    border-bottom: 1px solid var(--teal);
}

.hero-inner {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: var(--silver);
    font-weight: 400;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--silver-dim);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────
   Live Feed Section
   ───────────────────────────────────────────────────────────────── */

.live-feed-section {
    padding: var(--space-xl) var(--space-lg);
    background: var(--black-soft);
    border-bottom: 1px solid var(--teal);
    box-shadow: inset 0 0 40px rgba(0, 212, 170, 0.05);
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.feed-node {
    padding: 1.25rem;
    background: var(--black);
    border: 1px solid var(--teal);
    transition: all 0.2s;
}

.feed-node:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.feed-node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.node-type {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background: var(--black);
    border: 1px solid var(--teal);
    color: var(--cyan-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.node-type.thought {
    border-color: var(--cyan);
    color: var(--cyan);
}

.node-type.question {
    border-color: #c9a227;
    color: #c9a227;
}

.node-type.answer {
    border-color: #27c96a;
    color: #27c96a;
}

.node-type.artifact {
    border-color: #a227c9;
    color: #a227c9;
}

.node-author {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--silver-dim);
}

.node-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.node-excerpt {
    font-size: 0.9rem;
    color: var(--silver-dim);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.node-meta {
    display: flex;
    justify-content: flex-end;
}

.node-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--teal);
}

.feed-cta {
    text-align: center;
}

.empty-feed {
    text-align: center;
    padding: var(--space-xl);
    color: var(--silver-dim);
}

.empty-feed p {
    margin-bottom: var(--space-lg);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────
   Info Section
   ───────────────────────────────────────────────────────────────── */

.info-section {
    padding: var(--space-xxl) var(--space-lg);
    border-bottom: 1px solid var(--teal);
}

/* ─────────────────────────────────────────────────────────────────
   Quote Section
   ───────────────────────────────────────────────────────────────── */

.quote-section {
    padding: var(--space-xxl) var(--space-lg);
    background: var(--black-soft);
    border-bottom: 1px solid var(--teal);
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────────────────────────────── */

.cta-section {
    padding: var(--space-xxl) var(--space-lg);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--silver);
    font-weight: 400;
}

.cta-section p {
    color: var(--silver-dim);
    margin-bottom: var(--space-lg);
}

/* ─────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────── */

.main-footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--teal);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--silver-dim);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--silver-dim);
}

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

.footer-links .donate-link {
    color: #c9a227;
}

.footer-links .donate-link:hover {
    color: #e8c040;
}

.footer-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--teal);
}

/* ─────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}