:root {
    --bg: #0b0b0b;
    --card: #151515;
    --primary: #ff3333;
    --primary-glow: rgba(255, 51, 51, 0.4);
    --secondary: #222;
    --text: #ffffff;
    --text-dim: #888;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes glowPulse { 0% { box-shadow: 0 0 10px var(--primary-glow); } 50% { box-shadow: 0 0 25px var(--primary-glow); } 100% { box-shadow: 0 0 10px var(--primary-glow); } }

.fade-in { animation: fadeIn 1.2s ease forwards; }
.slide-up { animation: slideUp 0.8s ease forwards; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-logo {
    height: 40px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a0505 0%, var(--bg) 70%);
}

.hero-content {
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 700;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.glow {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    animation: glowPulse 2s infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #ff5555;
}

.btn-secondary {
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    border: 1px solid var(--glass);
    margin-left: 15px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--glass);
}

/* Features */
.features {
    padding: 100px 8%;
    background: black;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
}

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

.glass {
    background: var(--card);
    border: 1px solid var(--glass);
    padding: 50px 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.glass:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing */
.pricing {
    padding: 100px 8%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 450px;
    text-align: center;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 30px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

ul {
    list-style: none;
    margin-bottom: 40px;
}

ul li {
    padding: 12px 0;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass);
}

/* Footer */
footer {
    padding: 60px 8%;
    border-top: 1px solid var(--glass);
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-dim);
    margin-left: 20px;
    text-decoration: none;
}
