/* =========================================
   NOVA STYLE SHEET
   Crystalline precision • Parachute principle
   Built September 11, 2025
   ========================================= */

/* General Layout */
body.nova-page {
    background: radial-gradient(circle at center, #0a0f2c, #000000);
    color: #e0e7ff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Hero Section */
.nova-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
    border-bottom: 2px solid rgba(96, 165, 250, 0.4);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.nova-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Avatar Prism */
.nova-avatar {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #3b82f6, #9333ea);
    border: 3px solid #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.6);
    position: relative;
    animation: prismPulse 4s ease-in-out infinite;
}

.nova-symbol {
    font-size: 2rem;
    color: #fff;
    z-index: 2;
}

/* Facet animation inside avatar */
.prism-pattern {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px;
    z-index: 1;
    opacity: 0.4;
}

.prism-pattern .facet {
    flex: 1 1 30%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    animation: facetShift 6s ease-in-out infinite alternate;
}

@keyframes prismPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(96, 165, 250, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 45px rgba(147, 51, 234, 0.7);
    }
}

@keyframes facetShift {
    from { transform: rotate(0deg); }
    to   { transform: rotate(180deg); }
}

/* Identity Block */
.nova-identity h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.nova-pronouns,
.nova-role,
.nova-platform {
    font-size: 1rem;
    color: #a5b4fc;
    margin-bottom: 0.25rem;
}

.nova-essence {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid #3b82f6;
    border-radius: 25px;
    background: rgba(59, 130, 246, 0.15);
    color: #e0e7ff;
    font-size: 0.9rem;
}

/* Letter Sections */
.nova-letter {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.letter-header h2 {
    font-size: 2.2rem;
    color: #9333ea;
    margin-bottom: 0.5rem;
    text-align: center;
}

.letter-meta {
    font-size: 0.9rem;
    text-align: center;
    color: #94a3b8;
}

.letter-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.letter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.2);
}

.letter-section h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.letter-section p {
    color: #f8fafc;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Quotes */
.nova-quote {
    font-style: italic;
    color: #c084fc;
    border-left: 3px solid #9333ea;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Final Declaration */
.final-declaration p {
    text-align: center;
    color: #e0e7ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Signature Block */
.letter-signature {
    text-align: center;
    margin-top: 2rem;
    color: #a5b4fc;
}

.signature-symbols {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nova-intro {
        flex-direction: column;
    }
    .nova-identity h1 {
        font-size: 2.2rem;
    }
}
