@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;700;900&display=swap');

:root {
    --bg-color: #030508;
    --surface-color: rgba(255, 255, 255, 0.02);
    --surface-border: rgba(255, 255, 255, 0.05);
    --primary: #00f0ff;
    --primary-dark: #008b94;
    --secondary: #7000ff;
    --accent: #ff0055;
    --success: #00e676;
    --text-main: #ffffff;
    --text-muted: #94a1b2;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Dynamic Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.text-gradient {
    background: linear-gradient(to right, #00f0ff, #7000ff, #ff0055, #00f0ff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    to { background-position: 300% center; }
}

/* --- SUPER PREMIUM HERO CTA BUTTON --- */
.btn-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    background: #000;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.2);
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #00f0ff, #7000ff, #00f0ff, #7000ff);
    background-size: 400%;
    z-index: -2;
    border-radius: 50px;
    animation: glowingBorder 20s linear infinite;
}

.btn-hero-cta::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, rgba(20,20,25,0.9) 0%, #000 100%);
    border-radius: 50px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.4), 0 0 20px rgba(112, 0, 255, 0.4);
}

.btn-hero-cta:hover::after {
    opacity: 0.7; /* Reveals more of the gradient background */
}

@keyframes glowingBorder {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.btn-hero-cta span.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.btn-hero-cta:hover span.arrow {
    transform: translateX(8px);
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: rgba(3, 5, 8, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--surface-border);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}
.logo span { color: var(--text-muted); font-weight: 400; margin-left: 5px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

.btn-outline {
    border: 1px solid var(--surface-border);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-dark);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 140px 5% 80px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-indicators p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mockup Panel - 3D Effect */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.software-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    z-index: 10;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(112, 0, 255, 0.15) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.glass-window {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 240, 255, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-window:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 240, 255, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.window-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.close { background: #ff5f56; }
.dot.minimize { background: #ffbd2e; }
.dot.expand { background: #27c93f; }

.main-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Sections */
section { padding: 100px 5%; }

.section-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features-grid {
    display: grid;
    /* Forces a 2x2 grid on larger screens to prevent 3+1 awkward wrapping for 4 items */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

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

.nav-fondeohub {
    color: var(--success) !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    border: 1px solid rgba(0, 230, 118, 0.5);
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-fondeohub:hover {
    background: rgba(0, 230, 118, 0.1);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    transform: translateY(-2px);
    color: #fff !important;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

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

/* Pricing Section */
.pricing { position: relative; }

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.old-price-container {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}

.old-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 6px;
    background: var(--accent);
    transform: rotate(-8deg);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.8);
    border-radius: 4px;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, rgba(0,0,0,0.5) 100%);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
}

.price { margin-bottom: 20px; }

.amount {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.pricing-features {
    text-align: left;
    margin: 40px 0;
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #e0e0e0;
    font-size: 1.05rem;
}
.pricing-features li:last-child { margin-bottom: 0; }

.pricing-features ion-icon {
    color: var(--success);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(0,230,118,0.5));
}

.btn-buy-crypto {
    background: linear-gradient(90deg, #101522, #1a2333);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.btn-buy-crypto:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,240,255,0.2);
    transform: translateY(-2px);
}

.btn-buy-stripe {
    background: linear-gradient(90deg, #101522, #1a2333);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.btn-buy-stripe:hover {
    box-shadow: 0 10px 25px rgba(99,91,255,0.3);
    border-color: #635bff;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.payment-methods {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--surface-border);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(3, 5, 8, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-5px);

/* Footer */
footer {
    border-top: 1px solid var(--surface-border);
    padding: 80px 5% 30px;
    background: #020305;
}

/* Responsive */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 160px; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .nav-links { display: none; }
    .btn-hero-cta { width: 100%; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
