/*
Theme Name: BigBreakingWire Prime Landing
Theme URI: https://bigbreakingwire.com
Author: Antigravity
Author URI: https://bigbreakingwire.com
Description: A premium, dark-mode landing page theme for BigBreakingWire Prime.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bigbreakingwire-prime
*/

:root {
    --bg-color: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #9494a0;
    --accent-glow: #00f0ff;
    --accent-color: #00d2ff;
    --accent-purple: #7a28ff;
    --success: #00ff88;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 60vh;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 50vh;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 60%);
    opacity: 0.1;
    filter: blur(120px);
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.login-btn {
    border: 1px solid var(--card-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.login-btn:hover {
    background: var(--card-bg);
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5%;
    min-height: 80vh;
}

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

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-color));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Floating Glass Cards */
.hero-graphics {
    position: relative;
    width: 400px;
    height: 400px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 16px;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-card.float-1 {
    top: 20%;
    right: 10%;
    width: 240px;
    animation: float 6s ease-in-out infinite;
}

.stat-card.float-2 {
    bottom: 20%;
    left: 0;
    width: 220px;
    animation: float 8s ease-in-out infinite alternate;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-card .positive {
    color: var(--success);
    font-size: 2rem;
    font-weight: 800;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features */
.features-section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    padding: 6rem 5%;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    width: 350px;
    text-align: left;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: scale(1.02);
}

.premium-card {
    background: linear-gradient(180deg, rgba(122, 40, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%), var(--card-bg);
    border: 1px solid var(--accent-purple);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-color));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

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

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.outline-btn {
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.outline-btn:hover {
    border-color: var(--text-main);
    background: var(--card-bg);
}

.primary-btn {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-color));
    color: white;
}

footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    color: var(--text-muted);
}

.footer-content .brand {
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-graphics {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
}
