:root {
    --bg-color: #030712;
    --bg-gradient: radial-gradient(circle at top, #0f172a 0%, #030712 100%);
    --card-bg: rgba(17, 24, 39, 0.7);
    --card-hover-border: rgba(168, 85, 247, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-secondary);
}

nav ul li a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #c084fc;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-bg {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 50%;
    height: 90%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(6, 182, 212, 0.0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.features-grid--single {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .features-grid--single {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.75rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Paywall Gold Card Section */
.monetization {
    padding: 80px 0 120px;
    background: rgba(168, 85, 247, 0.02);
    border-top: 1px solid rgba(168, 85, 247, 0.05);
    border-bottom: 1px solid rgba(168, 85, 247, 0.05);
}

.gold-showcase {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-gold);
    border-radius: 2.5rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.3);
    position: relative;
    overflow: hidden;
}

.gold-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.gold-badge {
    display: inline-block;
    background: #ffffff;
    color: #d97706;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.gold-showcase h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.gold-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 1.5rem 0;
    line-height: 1;
}

.gold-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 440px;
    margin: 0 auto 2.5rem;
}

.gold-benefits {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gold-benefits li {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gold-benefits li::before {
    content: '🧪';
    font-size: 1.1rem;
}

.gold-btn {
    background: #ffffff;
    color: #d97706;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gold-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Legal Content Page */
.legal-content {
    padding: 160px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.25rem;
    color: var(--accent-purple);
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0;
}

.legal-content ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-cyan);
}

.legal-content a {
    color: var(--accent-cyan);
    font-weight: 600;
    border-bottom: 1px dotted var(--accent-cyan);
}

.legal-content a:hover {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    text-align: center;
    color: var(--text-secondary);
    background: rgba(3, 7, 18, 0.4);
}

footer p {
    font-size: 1rem;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

footer ul li a {
    font-weight: 500;
}

footer ul li a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 140px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 3.8rem;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-bg {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    header {
        height: auto;
        padding: 0.75rem 0;
    }
    header .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a {
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
    .gold-showcase {
        padding: 3rem 1.5rem;
        border-radius: 2rem;
    }
    .gold-showcase h3 {
        font-size: 1.75rem;
    }
    .gold-price {
        font-size: 3rem;
    }
}
