:root {
    --bg-color: #0d1117;
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --primary: #ff6800; /* Bunny's Orange accent */
    --primary-hover: #ff8533;
    --gradient-1: #ff6800;
    --gradient-2: #ff2a5f;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.glow-bg {
    position: fixed;
    top: -30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,104,0,0.12) 0%, rgba(13,17,23,0) 70%);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

.glow-bg::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,42,95,0.08) 0%, rgba(13,17,23,0) 70%);
    border-radius: 50%;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 104, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 104, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 104, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 104, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--gradient-2));
}

.pulse {
    animation: pulse 2s infinite;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero {
    text-align: center;
    padding: 7rem 0 5rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item h3 span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
}

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

.feature-card {
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 104, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

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

.comparison {
    margin-bottom: 8rem;
}

.comparison-box {
    padding: 4rem 3rem;
    text-align: center;
}

.comparison-box h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
    text-align: left;
}

.compare-row p { margin: 0; }

.compare-row:last-of-type {
    border-bottom: none;
    margin-bottom: 3rem;
}

.header-row {
    font-weight: 700;
    color: white;
    border-bottom: 2px solid var(--glass-border);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.col.bunny {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.mt-30 {
    margin-top: 40px;
}

footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    background: rgba(13, 17, 23, 0.8);
}

/* Scroll Animations */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.transition-delay-1 { transition-delay: 100ms; }
.transition-delay-2 { transition-delay: 200ms; }
.transition-delay-3 { transition-delay: 300ms; }
.transition-delay-4 { transition-delay: 400ms; }

@media (max-width: 768px) {
    .compare-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .header-row {
        display: none;
    }
    
    .col::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        margin-bottom: 0.3rem;
        color: #fff;
        font-family: 'Outfit', sans-serif;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .stats-row {
        gap: 2.5rem;
        flex-direction: column;
    }
}
