/* DRiPGATE Products - Styles */

:root {
    --color-bg: #0a0a0f;
    --color-surface: #12121a;
    --color-surface-light: #1a1a25;
    --color-primary: #10b981;
    --color-primary-dark: #059669;
    --color-accent: #3b82f6;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-border: #27272a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--color-text);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.nav-cta {
    background: var(--color-primary);
    color: var(--color-bg) !important;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-surface-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background: #2563eb;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--color-surface);
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-right: 60px;
}

.product-card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 14px;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Product Stack */
.product-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.product-tier {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-tier.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.product-tier.premium {
    border-color: var(--color-accent);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.tier-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
}

.tier-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail {
    padding: 32px;
}

.product-detail h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-tagline {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.value-prop {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 24px 0;
    text-align: center;
}

.value-prop strong {
    color: var(--color-primary);
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.scarcity {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: var(--radius-sm);
    padding: 12px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

/* Coaching Section */
.coaching-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-surface-light) 0%, var(--color-surface) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}

.coaching-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.coaching-price {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.coaching-subtitle {
    color: var(--color-text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.coaching-includes,
.coaching-who {
    text-align: left;
    margin: 32px 0;
}

.coaching-includes h4,
.coaching-who h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.coaching-who p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 15px;
}

.coaching-note {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-top: 20px;
}

/* Guarantee */
.guarantee {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.guarantee h2 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.guarantee p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text,
.footer-brand .logo-accent {
    font-size: 24px;
    font-weight: 800;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 12px;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .coaching-card {
        padding: 32px 24px;
    }
    
    .coaching-price {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
