/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
}

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary, .btn-secondary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary:hover {
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1), transparent 70%);
    overflow: hidden;
}

/* Galaxy Background */
.galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-text {
    height: 4.5rem;
    overflow: hidden;
    position: relative;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s ease;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-mockup {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-screen {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 10px;
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, #0a0a0a, #1a1a1a), 
                      linear-gradient(135deg, rgba(0, 255, 136, 0.6), rgba(0, 204, 255, 0.4), rgba(0, 255, 136, 0.8));
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Clean Game Background */
.game-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 1;
}



/* Speech Bubble Response Coming From Screen */
.audio-response {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
    width: min(400px, 90vw);
    max-width: 500px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.6s ease 2s forwards;
}

/* Speech Bubble Tail Pointing to Screen */
.audio-response::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(0, 255, 136, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.1));
}

/* Inner triangle for speech bubble tail */
.audio-response::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 255, 136, 0.1);
    z-index: 1;
    margin-top: -1px;
}

.response-waves {
    display: flex;
    gap: 3px;
    align-items: center;
}

.response-waves span {
    width: 3px;
    height: 20px;
    background: #00ff88;
    border-radius: 2px;
    animation: voiceWave 1.5s ease-in-out infinite;
}

.response-waves span:nth-child(2) { animation-delay: 0.1s; }
.response-waves span:nth-child(3) { animation-delay: 0.2s; }
.response-waves span:nth-child(4) { animation-delay: 0.3s; }

.response-text {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.voice-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    opacity: 0;
    animation: fadeInUp 0.6s ease 1s forwards;
}

.voice-waves {
    display: flex;
    gap: 3px;
    align-items: center;
}

.voice-waves span {
    width: 3px;
    height: 20px;
    background: #00ff88;
    border-radius: 2px;
}

.voice-indicator p {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.05), transparent);
}

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

/* Feature Cards */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for feature cards */
.features-grid .feature-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(5).animate-in {
    transition-delay: 0.5s;
}

.features-grid .feature-card:nth-child(6).animate-in {
    transition-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 255, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00ff88;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 204, 255, 0.3));
    border-color: rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature Sparkles Animation */
.feature-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-sparkles {
    opacity: 1;
}

.feature-sparkles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ff88;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.feature-sparkles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.feature-sparkles span:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 0.3s;
}

.feature-sparkles span:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 0.6s;
}

.feature-sparkles span:nth-child(4) {
    top: 70%;
    left: 80%;
    animation-delay: 0.9s;
}

.feature-sparkles span:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 1.2s;
}

.feature-sparkles span:nth-child(6) {
    top: 80%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Interactive Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.how-it-works-section .section-container {
    position: relative;
    z-index: 2;
}

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

/* Step Cards */
.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for step cards */
.steps-container .step-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.steps-container .step-card:nth-child(2).animate-in {
    transition-delay: 0.3s;
}

.steps-container .step-card:nth-child(3).animate-in {
    transition-delay: 0.5s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.step-card.active {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    transform: rotate(45deg);
    transform-origin: top right;
    opacity: 0.3;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.step-card.active .step-number {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00ff88;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.1);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #00ff88;
    width: 0;
    transition: width 0.5s ease;
}

.step-card.active .step-progress {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.05), rgba(0, 255, 136, 0.05));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-quote {
    font-size: 1.2rem;
    color: #00ff88;
    font-style: italic;
    text-align: center;
    margin: 2rem 0 3rem 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 255, 136, 0.05);
    border-left: 4px solid #00ff88;
    border-radius: 8px;
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 3rem;
    color: #00ff88;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.founder-quote::after {
    content: '"';
    font-size: 3rem;
    color: #00ff88;
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: Georgia, serif;
}

.founders-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.founder h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.founder p {
    color: #888888;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInRight 1s ease 0.3s both;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #888888;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for pricing cards */
.pricing-container .pricing-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.pricing-container .pricing-card:nth-child(2).animate-in {
    transition-delay: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.pricing-card.featured {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 255, 0.05));
}

.pricing-card.featured:hover {
    border-color: rgba(0, 255, 136, 0.7);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 1rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
}

.pricing-tier-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-interval {
    font-size: 0.9rem;
    color: #888888;
    margin-left: 0.5rem;
}

.pricing-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feature-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #00ff88;
    transition: all 0.3s ease;
}

.feature-item.excluded .feature-check {
    color: #666666;
    opacity: 0.5;
}

.feature-item.excluded span {
    color: #666666;
    text-decoration: line-through;
}

.feature-item.highlight span {
    color: #00ff88;
    font-weight: 500;
}

.feature-item span {
    color: #cccccc;
    line-height: 1.4;
}

.pricing-cta {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
}

.pricing-card.featured .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #888888;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: #888888;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

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

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

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

@keyframes voiceWave {
    0%, 100% { height: 20px; }
    50% { height: 30px; }
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-button:hover {
    color: #00ff88;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
/* Large Desktop */
@media (min-width: 1200px) {
    .section-container {
        padding: 0 3rem;
    }
    
    .hero-container {
        gap: 6rem;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 900px) {
    .hero-container {
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-mockup {
        padding: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mockup-screen {
        height: 250px;
    }
    
    .audio-response {
        width: min(350px, 85vw);
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
        top: -80px;
    }
    
    .response-text, .voice-indicator p {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founders-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .rotating-text {
        height: clamp(3rem, 8vw, 4.5rem);
    }
}

/* Large Mobile */
@media (max-width: 640px) {
    .section-container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 8rem 0 2rem;
    }
    
    .hero-mockup {
        padding: 1rem;
        margin-top: 0rem;
    }
    
    .mockup-screen {
        height: 200px;
    }
    
    .audio-response {
        width: min(300px, 88vw);
        padding: 0.8rem 1rem;
        top: -40px;
        left: 25%;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.75rem;
        line-height: 1.4;
        transform: translateX(-50%);
    }
    
    .response-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .voice-indicator {
        position: static;
        transform: none;
        margin-top: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .rotating-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .word {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #00ff88, #00ccff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0;
        transition: all 0.8s ease;
    }
    
    .word.active {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .feature-card, .step-card {
        padding: 1.2rem;
    }
    
    .feature-icon, .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-title, .step-title {
        font-size: 1.1rem;
    }
    
    .founder-quote {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .founder-quote::before, .founder-quote::after {
        font-size: 2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
}

/* Small Mobile */
@media (max-width: 320px) {
    .section-container {
        padding: 0 0.8rem;
    }
    
    .audio-response {
        width: min(280px, 75vw);
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .response-text, .voice-indicator p {
        font-size: 0.7rem;
    }
    
    .hero-mockup {
        padding: 0.8rem;
    }
    
    .mockup-screen {
        height: 180px;
    }
    
    .btn-large {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .feature-card, .step-card {
        padding: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .word {
        transition: none !important;
    }
    
    .rotating-text .word.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
