/* Super Genes - Public Funnel Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(156, 163, 175, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(107, 114, 128, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #d4d7dc 0%, #b8bcc4 50%, #d4d7dc 100%);
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(156, 163, 175, 0.03) 2px,
            rgba(156, 163, 175, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(107, 114, 128, 0.03) 2px,
            rgba(107, 114, 128, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(160deg, 
        #ff4444 0%, 
        #dc2626 15%, 
        #e63946 30%,
        #8b949e 45%,
        #6b7280 55%,
        #4b5563 70%,
        #1f2937 85%,
        #111827 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 3px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15);
    filter: 
        drop-shadow(0 0 20px rgba(220, 38, 38, 0.5))
        drop-shadow(0 0 40px rgba(220, 38, 38, 0.3))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: translateZ(0);
}

h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(160deg, 
        rgba(220, 38, 38, 0.4) 0%,
        rgba(139, 148, 158, 0.3) 50%,
        rgba(31, 41, 55, 0.4) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
}

h1::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

p {
    color: #4b5563;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Logo */
.logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 200px;
    height: auto;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.cta-button-white {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(107, 114, 128, 0.2);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-pink {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(107, 114, 128, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

/* Quiz Styles */
.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Results Styles */
.score {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(160deg, 
        #ff4444 0%, 
        #dc2626 15%, 
        #e63946 30%,
        #8b949e 45%,
        #6b7280 55%,
        #4b5563 70%,
        #1f2937 85%,
        #111827 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: 
        drop-shadow(0 0 15px rgba(220, 38, 38, 0.4))
        drop-shadow(0 0 30px rgba(220, 38, 38, 0.2))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-bottom: 1rem;
}

.score-label {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.insights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.insight {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.insight h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

/* Subtitle */
.subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .score {
        font-size: 3rem;
    }
}
