body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

#hyperspeed-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
}

.hero-content .slogan {
    font-size: 1.75rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content .tagline {
    font-size: 1.25rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    max-width: 600px;
    margin: 1rem auto 0;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    transition: transform 0.2s ease;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-content .btn:hover {
    transform: scale(1.05);
}

.content-section {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: #212529;
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    font-size: 2.5rem;
}

.feature-card {
    text-align: center;
    border: none;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
}

.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #0d6efd;
    border-width: 2px;
}

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

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