:root {
    --bg-body: #0a0b10;
    --bg-nav: rgba(16, 18, 27, 0.8);
    --bg-card: #14161f;
    --bg-card-hover: #1c1f2b;
    --primary: #6366f1; /* Indigo/Blurple */
    --primary-hover: #4f46e5;
    --accent: #a855f7; /* Purple */
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border: #2d313f;
    --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; list-style: none; }

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

/* --- Navigation --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 70px;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo { font-size: 1.4rem; font-weight: 700; color: var(--text-white); display: flex; align-items: center; gap: 8px; }
.logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    color: var(--text-gray); font-weight: 500; font-size: 0.95rem; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }

.btn-panel {
    background: var(--primary); color: white;
    padding: 8px 18px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.btn-panel:hover { background: var(--primary-hover); transform: translateY(-1px); }
.mobile-toggle { display: none; color: white; font-size: 1.5rem; }

/* --- Hero Section --- */
.hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.hero-content { max-width: 800px; margin: 0 auto; }
.badge-pill {
    display: inline-block; padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary); border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    margin-bottom: 20px; letter-spacing: 1px;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-btns { display: flex; gap: 15px; justify-content: center; }
.btn-primary {
    background: var(--text-white); color: black; padding: 12px 24px;
    border-radius: 6px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover { background: #e0e0e0; }
.btn-secondary {
    background: transparent; color: var(--text-white); border: 1px solid var(--border);
    padding: 12px 24px; border-radius: 6px; font-weight: 600; transition: 0.3s;
}
.btn-secondary:hover { border-color: var(--text-white); }

/* --- Stats Strip --- */
.stats-strip {
    max-width: 1000px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px;
    display: flex; justify-content: space-around; align-items: center;
    margin-bottom: 80px; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.2rem; font-weight: 700; color: var(--text-white); }
.stat-label { font-size: 0.85rem; color: var(--text-gray); }
.divider { height: 40px; width: 1px; background: var(--border); }

/* --- Hardware Grid --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; margin-bottom: 10px; }
.section-header.left-align { text-align: left; }

.hw-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-bottom: 100px;
}

.hw-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 22, 31, 0.5) 100%);
    border: 1px solid var(--border); padding: 30px; border-radius: 12px;
    text-align: center; transition: 0.3s;
}
.hw-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.hw-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.hw-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.hw-card p { color: var(--text-gray); font-size: 0.9rem; }

/* --- Features Grid (Small Cards) --- */
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; margin-bottom: 100px;
}

.feat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 25px; border-radius: 10px; display: flex; flex-direction: column; align-items: flex-start;
    transition: 0.3s;
}
.feat-card:hover { background: var(--bg-card-hover); }
.icon-box {
    background: rgba(99, 102, 241, 0.1); color: var(--primary);
    width: 45px; height: 45px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 15px;
}
.feat-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.feat-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; }

/* --- Footer --- */
footer { border-top: 1px solid var(--border); padding: 60px 20px 20px; margin-top: 50px; }
.footer-content {
    max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-col h3 { margin-bottom: 15px; font-size: 1.5rem; }
.footer-col h4 { margin-bottom: 20px; color: var(--text-white); }
.footer-col a { display: block; color: var(--text-gray); margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; margin-top: 60px; color: #555; font-size: 0.85rem; }

/* --- Pricing Specifics --- */
.shop-container { padding-top: 120px; max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
.shop-header { text-align: center; margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 20px; }

.plan-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 30px; position: relative; display: flex; flex-direction: column;
}
.plan-card.popular { border-color: var(--primary); box-shadow: 0 0 30px rgba(99, 102, 241, 0.15); }
.badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
}
.plan-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.price { font-size: 2.5rem; font-weight: 700; margin-top: 10px; }
.price span { font-size: 1rem; color: var(--text-gray); font-weight: 400; }
.plan-specs ul { margin-bottom: 30px; }
.plan-specs li { margin-bottom: 12px; color: var(--text-gray); font-size: 0.95rem; }
.plan-specs li i { color: var(--primary); margin-right: 10px; }
.plan-specs li strong { color: var(--text-white); }
.full-width { width: 100%; margin-top: auto; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    h1 { font-size: 2.5rem; }
    .stats-strip { flex-direction: column; gap: 20px; }
    .divider { width: 40px; height: 1px; }
    .footer-content { grid-template-columns: 1fr; }
}
