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

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

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 100px;       /* Increased */
    width: auto;
    display: block;
    margin: 0 auto 0px; /* Increased bottom margin */
    max-width: 320px;   /* Increased */
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    min-height: 80vh;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #999;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Section */
.steps {
    padding: 60px 20px;
    background: #111;
}

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

.steps-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    padding: 30px 20px;
    border: 1px solid #333;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: transparent;
}

.step:hover .step-number {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.step-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-description {
    color: #999;
    font-weight: 300;
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

/* CTA Button */
.cta-section {
    text-align: center;
    padding: 0 20px 60px;
    background: #111;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    border-top: 1px solid #333;
    padding: 30px 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 80px 15px 40px;
        min-height: 70vh;
    }

    .steps {
        padding: 40px 15px;
    }

    .step {
        padding: 25px 15px;
    }

    .steps-grid {
        gap: 25px;
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 0 15px 40px;
    }

    .cta-button {
        padding: 16px 35px;
        width: 100%;
        max-width: 280px;
    }

    .footer {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 15px;
    }

    .hero {
        padding: 70px 10px 30px;
    }

    .steps {
        padding: 30px 10px;
    }

    .step {
        padding: 20px 12px;
    }

    .cta-section {
        padding: 0 10px 30px;
    }
}

/* Subtle background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Enhanced mobile interactions */
@media (hover: none) and (pointer: coarse) {
    .step:active {
        transform: scale(0.98);
    }
    
    .cta-button:active {
        transform: scale(0.95);
    }
}