:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #ffffff;
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 300;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 300;
    opacity: 0.7;
}

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

/* Content Overlay */
.content-overlay {
    position: relative;
    z-index: 1;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero {
    align-items: flex-start;
    position: relative;
    padding-top: 10rem;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

/* Pill Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
    position: relative;
    overflow: hidden;
}

.btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.btn:hover .arrow {
    transform: translate(3px, -3px);
}

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

.btn-pill {
    padding: 1.2rem 2.5rem;
    font-size: 1.125rem;
}

.btn-pill-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    animation: scroll-line-anim 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scroll-line-anim {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Presentation Section */
.presentation {
    align-items: flex-start;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    text-align: left;
    transition: transform 0.5s ease, background 0.5s ease;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.6);
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.glass-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.card-line {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    margin-top: 2rem;
    transition: width 0.3s ease;
}

.glass-card:hover .card-line {
    width: 60px;
}

/* Interactive Section */
.interactive {
    position: relative;
}

.interactive-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.interactive-text {
    flex: 1;
    min-width: 300px;
    padding-right: 4rem;
}

.interactive-area {
    flex: 1;
    min-width: 300px;
    height: 500px;
}

/* CTA Section */
.cta {
    align-items: center;
    text-align: center;
    min-height: 80vh;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.7);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--text-primary);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .price {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    min-height: 70px;
}

.features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    margin-right: 12px;
    color: var(--text-primary);
    font-weight: 900;
}

.w-100 {
    width: 100%;
}

.btn.invert {
    background: transparent;
    color: var(--text-primary);
}
.btn.invert:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* Global Reach */
.global-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.global-text {
    max-width: 600px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item h4 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.stat-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Marquee */
.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    background: var(--text-primary);
    color: var(--bg-color);
    transform: rotate(-3deg) scale(1.1);
    margin: 8rem 0;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
}
.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
}
.marquee-inner {
    display: flex;
    animation: marquee 25s linear infinite;
}
.marquee-inner span {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    padding-right: 2rem;
    letter-spacing: -0.02em;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Spotlight Card */
.spotlight-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.spotlight-card {
    position: relative;
    width: 100%;
    padding: 6rem 3rem;
    border-radius: 30px;
    background: rgba(20, 20, 20, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}
.spotlight-card:hover {
    transform: translateY(-5px);
}
.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.15), 
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}
.spotlight-card:hover::before {
    opacity: 1;
}
.spotlight-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.magnetic-btn-wrapper {
    display: inline-block;
    padding: 2rem;
    margin-top: 1rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    padding: 2rem 2.5rem;
    transition: transform 0.3s ease;
}
.faq-item:hover {
    transform: translateX(10px);
}
.faq-question {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.faq-answer {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 6rem 5%;
    }
    
    .interactive-container {
        flex-direction: column;
    }
    
    .interactive-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .interactive-area {
        height: 300px;
        width: 100%;
    }

    .nav-links > a:not(.btn) {
        display: none;
    }

    .main-header {
        mix-blend-mode: normal;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(10px);
        padding: 1.2rem 5%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
        flex: 1;
        min-width: 150px;
    }
    
    .nav-links {
        gap: 0.8rem !important;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .btn-pill-small {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spotlight-card {
        padding: 4rem 2rem;
    }
    
    .marquee-section {
        margin: 5rem 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .main-header {
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.5rem !important;
    }
    
    .btn-pill-small {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn .arrow {
        margin-left: 5px;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .section {
        padding: 4rem 4%;
    }
}
