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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #E3F2FD;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A1929 0%, #050C14 50%, #1a0f0a 100%);
    z-index: 0;
}

.circuit-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(212, 175, 55, 0.4) 40px, rgba(212, 175, 55, 0.4) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(212, 175, 55, 0.4) 40px, rgba(212, 175, 55, 0.4) 41px);
    animation: slideGrid 25s linear infinite;
}

@keyframes slideGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0 1rem;
}

.logo-hero {
    max-width: 300px;
    width: 60%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.7));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 6px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: #D4AF37;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhana', sans-serif;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-invest {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.btn-invest:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.btn-whitepaper {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #FFD700;
}

.btn-whitepaper:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Elevator Pitch */
.elevator-pitch {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.05));
    border: 3px solid #D4AF37;
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.elevator-pitch h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.elevator-pitch p {
    font-size: 1.4rem;
    line-height: 2;
    color: #D4AF37;
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    color: #FFD700;
    font-weight: 700;
    text-decoration: underline;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.7), rgba(26, 15, 10, 0.7));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #B8860B;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Problem/Solution */
.section {
    margin: 4rem 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ps-card {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.8), rgba(26, 15, 10, 0.6));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
}

.ps-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 { color: #E57373; }
.solution-card h3 { color: #81C784; }

.ps-card ul {
    list-style: none;
    padding: 0;
}

.ps-card li {
    padding: 0.8rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #D4AF37;
}

.problem-card li::before {
    content: '✗ ';
    color: #E57373;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-card li::before {
    content: '✓ ';
    color: #81C784;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 165, 0, 0.05));
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.6), rgba(26, 15, 10, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    font-family: 'Orbitron', sans-serif;
}

.step h4 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #D4AF37;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Market Opportunity */
.market-opp {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.market-opp h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00D4FF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.market-stat {
    text-align: center;
}

.market-stat .big-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00D4FF, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.market-stat p {
    color: #90CAF9;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Tokenomics */
.tokenomics {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.token-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.token-item {
    background: rgba(10, 25, 41, 0.5);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.token-item h4 {
    color: #81C784;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.token-item .percentage {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4CAF50;
    font-family: 'Orbitron', sans-serif;
}

.token-item p {
    color: #A5D6A7;
    margin-top: 0.5rem;
}

/* Roadmap */
.roadmap {
    margin: 4rem 0;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

.roadmap-item {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.7), rgba(26, 15, 10, 0.6));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    transition: all 0.3s;
}

.roadmap-item:hover {
    transform: translateX(10px);
    border-color: #FFD700;
}

.roadmap-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.roadmap-item ul {
    list-style: none;
    padding-left: 1rem;
}

.roadmap-item li {
    padding: 0.5rem 0;
    color: #D4AF37;
    font-size: 1.1rem;
}

.roadmap-item li::before {
    content: '▸ ';
    color: #FFD700;
    font-weight: bold;
}

/* Team */
.team-section {
    text-align: center;
    margin: 4rem 0;
}

.team-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 165, 0, 0.1));
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.team-cta h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-cta p {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Investment CTA */
.investment-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(255, 215, 0, 0.15));
    border: 3px solid #FFD700;
    border-radius: 30px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.investment-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.investment-cta p {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 4rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-links a {
    font-size: 2.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.3);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .problem-solution {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .elevator-pitch h2 {
        font-size: 2rem;
    }
}
