/* ═══════════════════════════════════════════════════════════════ */
/* BASE STYLES */
/* ═══════════════════════════════════════════════════════════════ */

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

:root {
    --bg-dark: #07080f;
    --bg-lighter: #0f1119;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --cyan: #34d399;
    --accent: #ff6b35;
    --border: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO */
/* ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-name {
    background: linear-gradient(135deg, var(--cyan) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-status {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═══════════════════════════════════════════════════════════════ */

.site-footer {
    background-color: var(--bg-lighter);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.footer-network {
    margin-bottom: 1.5rem;
}

.network-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.footer-network ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.footer-network li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-network li a:hover {
    background-color: var(--border);
    color: var(--text);
    border-color: var(--cyan);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-social a {
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .footer-network ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-network li a {
        display: block;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ACCESSIBILITY */
/* ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --bg-dark: #ffffff;
        --bg-lighter: #f8fafc;
        --text: #0f1419;
        --text-dim: #475569;
        --border: #e2e8f0;
    }
}
