:root {
    --background: #0b0b0f;
    --primary-red: #e50914;
    --deep-red: #7a0c12;
    --accent-glow: #ff1a2d;
    --text-light: #f5f7fa;
    --text-muted: #c7cbd1;
    --glass-bg: rgba(11, 11, 15, 0.7);
    --glass-border: rgba(229, 9, 20, 0.3);
}

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

body {
    background-color: var(--background);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Glassmorphism effect */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Navbar */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

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

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.get-started-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.get-started-btn:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 20px rgba(255, 26, 45, 0.6);
    transform: translateY(-2px);
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.hero-slogan {
    font-size: 1.8rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-subhead {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    z-index: 10;
}

.primary-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.primary-btn:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 30px rgba(255, 26, 45, 0.7);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-badges {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    background: rgba(11, 11, 15, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

/* Feature cards */
.features-section {
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.feature-card {
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
    border: 1px solid var(--primary-red);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
    flex-grow: 1;
}

/* Terminal panel */
.terminal-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.terminal-container {
    width: 100%;
    max-width: 800px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.terminal-title {
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: 10px;
}

.terminal-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close {
    background: #ff5f56;
}

.control-minimize {
    background: #ffbd2e;
}

.control-maximize {
    background: #27c93f;
}

.terminal-content {
    padding: 30px;
    font-family: monospace;
    font-size: 18px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 10px;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 22px;
    background: var(--primary-red);
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* CTA band */
.cta-section {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 50px 0;
}

.cta-container {
    padding: 50px 30px;
    max-width: 900px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 50px 5% 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-note {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.4rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        display: none;
    }
    
    .feature-badges {
        flex-direction: column;
        gap: 10px;
    }
}

/* Product page styles */
.product-page {
    padding: 120px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.product-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

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

.plan-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
    border: 1px solid var(--primary-red);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-red);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.plan-features li:before {
    content: "✓";
    color: #27c93f;
    font-weight: bold;
    margin-right: 10px;
}

.plan-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    font-weight: 600;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    text-align: center;
}

.plan-btn:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 20px rgba(255, 26, 45, 0.6);
    transform: translateY(-2px);
}

/* About page styles */
.about-page {
    padding: 120px 5% 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
    border: 1px solid var(--primary-red);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    margin-top: 80px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-role {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.team-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-title, .about-title {
        font-size: 2.5rem;
    }
}