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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}



/* Logo */
.logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

/* Sections */
.section {
    flex: 1;
    min-height: 100vh;
    padding: 120px 40px 80px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.section.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

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

/* Hero */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Home section specific styling */
.home-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 80px;
}

.home-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.home-section .hero {
    padding-top: 0;
    margin-bottom: 40px;
}

.home-section .launch-section {
    margin-top: 40px;
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-section .countdown {
    margin-top: 30px;
    margin-bottom: 0;
}

/* Home page footer with reduced gap */
.home-section ~ .footer {
    margin-top: 20px;
    padding: 30px 20px;
}

.launch-section {
    text-align: center;
    margin-top: 120px;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Home section specific styling */
.home-section {
    min-height: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.home-section .container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-section .launch-section {
    margin-top: 80px;
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.launch-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Responsive adjustments for home section */
@media (max-width: 768px) {
    .home-section {
        padding-top: 60px;
    }
    
    .home-section .hero {
        margin-bottom: 30px;
    }
    
    .home-section .launch-section {
        margin-top: 30px;
        padding: 20px 0 0 0;
    }
    
    .home-section .countdown {
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    .home-section ~ .footer {
        margin-top: 15px;
        padding: 25px 15px;
    }
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 200;
    display: block;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.1);
}

.feature-card {
    background: #000000;
    padding: 60px 40px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
}

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

/* FAQ Section */
.faq-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.vision-section,
.mission-section {
    margin: 60px 0;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.vision-section h3,
.mission-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Team Section */
.team-section {
    margin: 80px 0;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.team-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card .role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card .stake {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.team-card .description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.5;
}

/* Investment Info */
.investment-info {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.investment-info h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.investment-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Platform Details */
.platform-details {
    margin: 80px 0;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-details h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.detail-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.detail-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

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

/* Compliance Section */
.compliance-section {
    margin: 80px 0;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.compliance-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.compliance-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.compliance-section strong {
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    margin: 80px 0;
    text-align: center;
}

.contact-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 16px;
}

/* Policy Sections */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 300;
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.policy-container p {
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Adaptive Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Section-specific footer adaptations */

/* Home section - minimal footer */
#home.active ~ .footer {
    margin-top: 0;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}


#home.active ~ .footer .footer-links {
    margin: 15px 0;
}

#home.active ~ .footer .footer-links a {
    margin: 0 10px;
    font-size: 12px;
}

/* Features section - standard footer */
#features.active ~ .footer {
    margin-top: 80px;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.98);
}

#features.active ~ .footer .footer-disclaimer {
    display: block;
    font-size: 12px;
}

/* About section - expanded footer with contact emphasis */
#about.active ~ .footer {
    margin-top: 100px;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

#about.active ~ .footer .footer-disclaimer {
    display: block;
    font-size: 14px;
    max-width: 1000px;
    margin: 25px auto;
}

#about.active ~ .footer .footer-links {
    margin: 40px 0;
}

#about.active ~ .footer .footer-links a {
    margin: 0 20px;
    font-size: 15px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

#about.active ~ .footer .footer-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Policy sections - compact legal footer */
#privacy.active ~ .footer,
#copyright.active ~ .footer,
#ownership.active ~ .footer {
    margin-top: 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#privacy.active ~ .footer .footer-disclaimer,
#copyright.active ~ .footer .footer-disclaimer,
#ownership.active ~ .footer .footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

#privacy.active ~ .footer .footer-links a,
#copyright.active ~ .footer .footer-links a,
#ownership.active ~ .footer .footer-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Keep original footer elements styling */
.footer-logo {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 20px auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links {
    margin: 30px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 15px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #000000;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: rgba(255, 255, 255, 0.6);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-align: center;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal-content button {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.modal-content button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Survey Options */
.survey-options {
    margin: 20px 0;
    text-align: left;
}

.survey-options label {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s ease;
}

.survey-options label:hover {
    color: #ffffff;
}

.survey-options input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

/* Responsive adjustments for adaptive footer */
@media (max-width: 768px) {
    /* Home section mobile */
    #home.active ~ .footer {
        padding: 20px 15px;
    }
    
    #home.active ~ .footer .footer-links a {
        margin: 0 5px;
        font-size: 11px;
    }
    
    /* Features section mobile */
    #features.active ~ .footer {
        margin-top: 60px;
        padding: 40px 15px;
    }
    
    /* About section mobile */
    #about.active ~ .footer {
        margin-top: 60px;
        padding: 50px 15px;
    }
    
    #about.active ~ .footer .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    #about.active ~ .footer .footer-links a {
        margin: 0;
        width: 200px;
        text-align: center;
    }
    
    /* Policy sections mobile */
    #privacy.active ~ .footer,
    #copyright.active ~ .footer,
    #ownership.active ~ .footer {
        margin-top: 30px;
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    #home.active ~ .footer {
        padding: 15px 10px;
    }
    
    #about.active ~ .footer .footer-links a {
        width: 160px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 30px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section {
        padding: 100px 20px 60px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 20px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
}