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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 35%, #4a2c8a 65%, #2d1b69 100%);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    justify-content: center;
}

/* Logo */

.logo-placeholder {
    margin-bottom: 40px;
}

.logo {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

/* Typography */

.title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 56px;
}

/* Phases */

.phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    margin-bottom: 56px;
}

.phase {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.phase:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
}

.phase-number {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    display: block;
}

.phase h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.phase p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

/* Buttons */

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: #fff;
    color: #2d1b69;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 640px) {
    .phases {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 48px 20px 72px;
    }

    .phase {
        padding: 24px 20px;
    }
}
