/**
 * RinaWarp Terminal Website Styles
 * Copyright (c) 2025 RinaWarp Technologies, LLC
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

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

/* Competitive Advantage Alert Banner */
.advantage-alert {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7d 50%, #ff8c94 100%);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    border-bottom: 3px solid #ff3742;
    position: relative;
    overflow: hidden;
}

.advantage-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.alert-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.advantage-alert h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantage-alert p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.advantage-alert strong {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.advantage-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.advantage-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffff, #ff69b4, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: #e0ffff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.version-badge:hover {
    transform: translateY(-3px);
}

/* Pricing Section */
.pricing-hero {
    padding: 60px 20px;
    text-align: center;
}

.pricing-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: #ff69b4;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.pricing-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ffff;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.plan-period {
    color: #cccccc;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 8px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.buy-button {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Demo Section */
.demo-section {
    padding: 80px 20px;
    text-align: center;
}

.demo-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
}

.demo-terminal {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.9rem;
    border: 1px solid #333;
}

.terminal-line {
    margin-bottom: 8px;
    line-height: 1.4;
}

.terminal-input {
    color: #00ff88;
}

.terminal-output {
    color: #ffffff;
}

.terminal-ai {
    color: #ff69b4;
}

.demo-button {
    background: linear-gradient(135deg, #00ffff, #0099cc);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

/* Progress Section */
.testing-section {
    padding: 80px 20px;
    text-align: center;
}

.testing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.progress-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
}

.progress-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ffff;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #00ff88, #00ffff);
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    text-align: center;
}

.community-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #e0ffff;
    margin-bottom: 15px;
}

.author {
    color: #00ffff;
    font-weight: 600;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.mini-cta {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.mini-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Download Section */
.download-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin: 60px 0;
    border-radius: 20px;
}

.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

/* Feedback Button */
.feedback-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.feedback-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.6);
}

.pulse {
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .advantage-alert h3 {
        font-size: 1.2rem;
    }
    
    .advantage-alert p {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feedback-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pricing-card, .demo-card, .feature-card, .progress-card, .testimonial {
        padding: 25px 20px;
    }
    
    .advantage-alert h3 {
        font-size: 1.1rem;
    }
    
    .advantage-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
