
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Header Space */
.header-space {
    height: 100px;
    width: 100%;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    filter: blur(1px);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: rgba(0, 255, 157, 0.08);
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    background: rgba(0, 191, 255, 0.06);
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    background: rgba(157, 0, 255, 0.05);
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 80%;
    background: rgba(255, 157, 0, 0.07);
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 30%;
    background: rgba(0, 255, 157, 0.06);
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 157, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Container */
.main-container {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Logo/Icon */
.logo-placeholder {
    margin-bottom: 3rem;
}

.bio5-icon {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bio5-icon:hover {
    background: rgba(0, 255, 157, 0.15);
    border-color: rgba(0, 255, 157, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.icon-circle {
    width: 12px;
    height: 12px;
    background: #00ff9d;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.icon-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #00ff9d;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px #00ff9d;
    }
    50% {
        box-shadow: 0 0 20px #00ff9d, 0 0 30px #00ff9d;
    }
}

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff9d 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.subtitle-container {
    margin-bottom: 3rem;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Indicator */
.progress-container {
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff9d, #00bfff);
    border-radius: 2px;
    width: 67%;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

#progress-percentage {
    color: #00ff9d;
    font-weight: 600;
}

/* Section Divider */
.section-divider {
    margin: 4rem 0;
    position: relative;
    height: 1px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.5), transparent);
}

.divider-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 255, 157, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hedge5-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 191, 255, 0.1));
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 50px;
    color: #00ff9d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.hedge5-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.3);
    border-color: rgba(0, 255, 157, 0.6);
}

.hedge5-link:hover .link-arrow {
    transform: translateX(5px);
}

.hedge5-link:hover .link-glow {
    opacity: 1;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.link-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 191, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Email Signup */
.email-signup {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.email-signup h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.input-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#email-input:focus {
    border-color: #00ff9d;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ff9d, #00bfff);
    border: none;
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 120px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.4);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

/* Interactive Zone */
.interactive-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.click-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.3), transparent);
    transform: scale(0);
    pointer-events: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .input-container {
        flex-direction: column;
    }
    
    #email-input {
        min-width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .bio5-icon {
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-space {
        height: 80px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .email-signup {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .background-elements,
    .floating-shapes,
    .particles-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}