:root {
    --bg-black: #0A0A0A;
    --neon-cyan: #00E5FF;
    --electric-blue: #2979FF;
    --mint-green: #00FFC2;
    --glass-white: rgba(255, 255, 255, 0.05);
    --border-white: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-muted: #A0A0A0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 32px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.hero {
    padding: 100px 0;
    text-align: center;
}

.badge {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

h1 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-primary {
    background-color: var(--neon-cyan);
    color: var(--bg-black);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.5);
}

/* Feature Showcase */
.showcase {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 120px;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--neon-cyan);
}

.feature-content p {
    font-size: 18px;
    color: var(--text-muted);
}

.feature-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.feature-image img, .feature-image video {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    border-radius: 32px;
    border: 8px solid #1A1A1A;
    box-shadow: 0 30px 100px rgba(0, 229, 255, 0.2);
    display: block;
    margin: 0 auto;
    background-color: #121212;
    object-fit: contain !important;
}

.feature-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Pricing Grid */
#pricing {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 120px;
}

.glass-card {
    background: var(--glass-white);
    border: 1px solid var(--border-white);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.pricing-card {
    text-align: center;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.price {
    font-size: 56px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.price span {
    font-size: 18px;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.features-list li {
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--mint-green);
    margin-right: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

footer {
    background: rgba(0,0,0,0.5);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.policy-content {
    padding: 80px 0;
}

.policy-content h1 {
    font-size: 48px;
    margin-bottom: 48px;
}

.policy-text h2 {
    margin: 32px 0 16px;
    color: var(--neon-cyan);
}

.policy-text p, .policy-text li {
    color: var(--text-muted);
    margin-bottom: 16px;
}
