/* ============================================================================
   sections.css — Hero, section headers, footer
   ============================================================================ */

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero h1 { margin-bottom: 1.5rem; max-width: 800px; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #fb923c, var(--accent2));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* --- Info Banner --- */
.info-banner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    max-width: 740px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-banner .banner-icon { font-size: 1.5rem; flex-shrink: 0; }

.info-banner h4 {
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.info-banner p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 1rem; }

.section-header .overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
}

/* --- Network map --- */
.network-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.net-node {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    text-align: center;
    min-width: 140px;
    transition: all var(--transition);
}

.net-node:hover { border-color: var(--accent); transform: translateY(-3px); }
.net-node.forge { border-color: var(--accent); background: rgba(249,115,22,0.07); }
.net-node .net-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.net-node .net-name { font-weight: 700; font-size: 0.95rem; }
.net-node .net-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

.net-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

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

.footer-copy { color: var(--text-muted); font-size: 0.8rem; }
