:root {
    --bg-color: #0A0A0C; 
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --accent-color: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

.site-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #FFFFFF;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.8);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-trial {
    background: transparent;
    color: #00C8FF;
    border: 1px solid #00C8FF;
}

.btn-trial:hover {
    background: rgba(0, 200, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
    color: #00C8FF;
}

.header .btn-secondary {
    padding: 8px 20px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    margin-top: 140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 50vh;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: var(--text-primary);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Canvas & Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1;
    max-width: 650px;
    margin: 0 auto;
}

.network-canvas {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
}

.glass-orb {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.hero-image {
    width: 50%;
    height: 50%;
    max-width: 250px;
    max-height: 250px;
    border-radius: 20%;
    z-index: 2;
    transform: translateY(-10px);
    animation: levitate 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@keyframes levitate {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

/* Glass Cards (Benefits) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* Benefits Section */
.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    padding: 24px;
    text-align: left;
}

.benefit-card:nth-of-type(even) {
    flex-direction: row-reverse;
}

.benefit-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.benefit-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.benefit-separator {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- UNIQUE CARDS --- */
.speed-card {
    background: radial-gradient(circle at right, rgba(255, 200, 0, 0.05), var(--glass-bg));
    border-color: rgba(255, 200, 0, 0.1);
}
.speed-card .icon { color: #FFC800; border-color: rgba(255, 200, 0, 0.2); box-shadow: inset 0 0 20px rgba(255, 200, 0, 0.05); }

.security-card {
    background: radial-gradient(circle at left, rgba(0, 200, 255, 0.05), var(--glass-bg));
    border-color: rgba(0, 200, 255, 0.1);
}
.security-card .icon { color: #00C8FF; border-color: rgba(0, 200, 255, 0.2); box-shadow: inset 0 0 20px rgba(0, 200, 255, 0.05); }

.device-card {
    background: radial-gradient(circle at right, rgba(200, 100, 255, 0.05), var(--glass-bg));
    border-color: rgba(200, 100, 255, 0.1);
}
.device-card .icon { color: #C864FF; border-color: rgba(200, 100, 255, 0.2); box-shadow: inset 0 0 20px rgba(200, 100, 255, 0.05); transition: all 0.3s ease; }

.start-card {
    background: radial-gradient(circle at left, rgba(0, 255, 100, 0.05), var(--glass-bg));
    border-color: rgba(0, 255, 100, 0.1);
}
.start-card .icon { color: #00FF64; border-color: rgba(0, 255, 100, 0.2); box-shadow: inset 0 0 20px rgba(0, 255, 100, 0.05); }

/* --- INTERACTIVE WIDGETS --- */
.interactive-widget {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

/* Speed Ping */
.ping-result {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

/* Security Scan */
.scan-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.status-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--text-secondary);
    transition: all 0.3s;
}
.status-dot.safe { background: #00C8FF; box-shadow: 0 0 10px #00C8FF; }

/* Device Tabs */
.device-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; background: rgba(0,0,0,0.3); padding: 4px; border-radius: 8px;
}
.device-tab {
    background: transparent; border: none; color: var(--text-secondary);
    padding: 8px 16px; border-radius: 6px; transition: all 0.3s;
}
.device-tab.active { background: rgba(255,255,255,0.15); color: var(--text-primary); }

/* VPN Toggle */
.vpn-toggle {
    width: 60px; height: 32px; background: rgba(255,255,255,0.1);
    border-radius: 16px; position: relative; transition: background 0.3s;
}
.vpn-toggle.on { background: #00FF64; }
.toggle-knob {
    width: 24px; height: 24px; background: #fff; border-radius: 50%;
    position: absolute; top: 4px; left: 4px; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vpn-toggle.on .toggle-knob { transform: translateX(28px); }
.toggle-status { font-weight: 600; transition: color 0.3s; }
.toggle-status.on { color: #00FF64; }

/* --- NEW SECTIONS --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Instructions */
.instructions { margin-bottom: 120px; }
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 30px;
}
.step-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
    padding: 30px; text-align: center; position: relative; transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-10px); }
.step-number {
    width: 50px; height: 50px; background: rgba(255,255,255,0.05); color: var(--text-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; border: 1px solid var(--glass-border);
}
.step-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

/* Pricing */
.pricing { margin-bottom: 120px; }
.urgency-timer {
    color: #FF3B30; font-weight: 600; margin: 0 auto 40px auto;
    background: rgba(255, 59, 48, 0.1); padding: 12px 24px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; width: fit-content;
    border: 1px solid rgba(255, 59, 48, 0.25); box-shadow: 0 0 20px rgba(255, 59, 48, 0.1);
}
.timer { font-family: monospace; font-size: 1.25rem; margin-left: 8px; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 30px;
}
.pricing-card {
    padding: 40px 30px; display: flex; flex-direction: column; position: relative;
    border: 1px solid var(--glass-border); border-radius: 24px; transition: transform 0.3s, box-shadow 0.3s;
    background: var(--glass-bg);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.pricing-card.popular {
    border-color: rgba(0, 255, 100, 0.4); background: radial-gradient(circle at top right, rgba(0,255,100,0.05), var(--glass-bg));
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #00FF64; color: #000; font-weight: 700; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem;
}

.pricing-card.trial-card {
    border-color: rgba(0, 200, 255, 0.4); background: radial-gradient(circle at top left, rgba(0,200,255,0.05), var(--glass-bg));
}
.trial-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #00C8FF; color: #000; font-weight: 700; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem;
}

.pricing-card.premium-card {
    border-color: rgba(200, 100, 255, 0.3); background: radial-gradient(circle at bottom right, rgba(200,100,255,0.05), var(--glass-bg));
}
.premium-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #C864FF, #8A2BE2); color: #fff; font-weight: 700; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(200, 100, 255, 0.4);
}
.pricing-header h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-secondary); }
.price { font-size: 2.5rem; font-weight: 700; margin-bottom: 30px; }
.price span { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 30px 0; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--text-secondary); font-size: 0.95rem; }
.check-icon { width: 22px; height: 22px; color: #00FF64; flex-shrink: 0; }
.pricing-card .btn { width: 100%; text-align: center; }

/* FAQ */
.faq { margin-bottom: 120px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; transition: border-color 0.3s; }
.faq-item[open] { border-color: rgba(255, 255, 255, 0.2); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; color: var(--text-primary);
    font-size: 1.1rem; font-weight: 600; padding: 20px 24px; display: flex; justify-content: space-between;
    align-items: center; cursor: none; list-style: none; font-family: inherit;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; color: var(--text-secondary); }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: #00FF64; }
.faq-answer { padding: 0 24px 24px 24px; }
.faq-answer p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; line-height: 1.6; }
.faq-answer a { color: #00C8FF; text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* CTA Section */
.cta-section {
    margin: 100px auto;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
}

.cta-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #00FF64;
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    opacity: 0.15;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

.cta-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #00C8FF;
    filter: blur(120px);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    opacity: 0.15;
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-socials a {
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
}

.footer-socials a:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* --- CUSTOM CURSOR --- */
@media (pointer: fine) {
    body, a, button, .btn {
        cursor: none !important;
    }
}

.custom-cursor__dot,
.custom-cursor__ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (pointer: fine) {
    .custom-cursor__dot,
    .custom-cursor__ring {
        opacity: 1;
    }
}

.custom-cursor__dot {
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.3s;
}

.custom-cursor__ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s, opacity 0.3s; 
    z-index: 9998;
}

.custom-cursor__dot.hover {
    background: transparent;
}

.custom-cursor__ring.hover {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero p {
        margin: 0 auto 32px auto;
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .pricing-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 30px;
        padding-top: 30px;
        gap: 16px;
    }
    
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: center;
        padding: 30px 20px;
    }

    .step-card {
        padding: 20px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .benefit-card,
    .benefit-card:nth-of-type(even) {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .benefit-separator {
        height: 80px;
    }

    .header {
        padding: 16px 0;
    }
    .header .btn-secondary {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .hero {
        margin-top: 110px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        max-width: 300px;
    }
    .glass-card {
        padding: 24px;
    }
}
