/* ==========================================================================
   SOLARSCRIPTS PRO OFFICIAL WEBSITE STYLESHEET
   Clean Minimalist Dark Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
    --accent-color: #FFFFFF;
    --accent-glow: rgba(255, 255, 255, 0.25);
    --bg-app: #030303;
    --bg-header: #080808;
    --bg-card: #0D0D0D;
    --bg-card-hover: #121212;
    --border-color: #222222;
    --border-highlight: #444444;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --font-main: 'Inter', system-ui, sans-serif;
    --font-title: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-app);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

/* Background Particle Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-pro-badge {
    font-size: 10px;
    font-weight: 800;
    background: #FFFFFF;
    color: #000000;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-discord-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-discord-link:hover {
    color: var(--text-primary);
}

.btn-nav-buy {
    background: #FFFFFF;
    color: #000000;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #FFFFFF;
}

.btn-nav-buy:hover {
    background: #E5E5E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 20px 120px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--text-primary);
    text-shadow: 0 0 25px var(--accent-glow);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.btn-buy-now {
    background: #FFFFFF;
    color: #000000;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    background: #F0F0F0;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-discord-hero {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.btn-discord-hero:hover {
    border-color: var(--border-highlight);
    transform: translateY(-2px);
}

/* Feature Cards Section */
.features-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 20px;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 14px;
}

.feature-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Purchase Pro Section */
.purchase-section {
    position: relative;
    max-width: 700px;
    margin: 0 auto 140px;
    padding: 0 20px;
    z-index: 10;
}

.purchase-card {
    background: linear-gradient(135deg, #0F0F0F 0%, #050505 100%);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.purchase-badge {
    display: inline-block;
    background: #FFFFFF;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.purchase-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.purchase-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-header);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
