/* --- VARIABLES & RESET --- */
:root {
    --bg: #030014;
    --card-bg: #0F0E1C;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --primary: #6366F1;
    --primary-hover: #4F46E5;
    --accent: #A855F7;
    --border: rgba(255, 255, 255, 0.08);
    --font: 'Plus Jakarta Sans', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* --- BETA BANNER --- */
.beta-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 110;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
}

.beta-content {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.beta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    backdrop-filter: blur(10px);
}

.beta-banner p {
    margin: 0;
    font-weight: 500;
}

.beta-banner strong {
    color: white;
}

/* --- HERO ADJUSTMENT --- */
.hero {
    padding: 140px 0 100px;
}

.ambient-light {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.light-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.purple {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -10%;
    left: 20%;
    animation: float 10s infinite alternate;
}

.blue {
    width: 600px;
    height: 600px;
    background: var(--primary);
    bottom: -10%;
    right: 10%;
    animation: float 12s infinite alternate-reverse;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(40px, -40px);
    }
}

/* --- NAVBAR --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
}

.logo-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

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

.nav-links a:not(.nav-cta) {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.nav-cta:hover {
    background: white;
    color: black;
}

/* LANG SWITCHER */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    border-left: 1px solid var(--border);
    padding-left: 15px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    padding: 2px;
    transition: 0.2s;
    font-family: var(--font);
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.lang-sep {
    color: var(--border);
    font-size: 12px;
}

/* --- HERO --- */
.hero {
    padding: 80px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* STAT HIGHLIGHT */
.stat-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 350px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 25px -10px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: 0.3s;
}

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

.trust-micro {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-micro i {
    color: #22c55e;
}

/* MOCKUP */
.app-mockup {
    background: #0F1115;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mockup-header {
    background: #18181b;
    padding: 12px;
    display: flex;
    gap: 6px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #eab308;
}

.green {
    background: #22c55e;
}

.mockup-body {
    padding: 25px;
}

.console-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 13px;
    font-family: monospace;
}

.status-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
}

.status-badge.red {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.btn-fake {
    background: var(--primary);
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.console-logs {
    background: #000;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 11px;
    color: #94a3b8;
}

.log-item {
    margin-bottom: 5px;
}

.log-item.success {
    color: #4ade80;
}

.log-item.highlight {
    color: #818cf8;
    font-weight: bold;
}

.floating-stat {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #1e1e24;
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    animation: float 6s infinite ease-in-out;
}

.fs-icon {
    font-size: 24px;
}

.fs-text strong {
    display: block;
    color: white;
    font-size: 13px;
}

.fs-text span {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
}

/* --- PRICING --- */
.pricing {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    transition: 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05), transparent);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

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

.price {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.beta-price {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
}

.beta-price span {
    color: var(--text-muted);
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 15px;
}

.card-features i {
    color: var(--primary);
}

.card-features li.disabled {
    color: #64748b;
}

.card-features li.disabled i {
    color: #64748b;
}

.card-features li.highlight {
    color: white;
}

.card-features li.highlight i {
    color: #22c55e;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-card.outline {
    border: 1px solid var(--border);
    color: white;
}

.btn-card.outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-card.glow {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

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

.sub-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* TOPUPS */
.topups-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.topups-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.topups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.topup-card {
    background: #000;
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    position: relative;
}

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

.featured-topup {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.t-badge {
    position: absolute;
    top: -10px;
    background: #22c55e;
    color: black;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}

.t-amount {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.t-price {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.t-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    transition: 0.2s;
}

.t-btn:hover {
    background: white;
    color: black;
}

/* DOWNLOAD */
.download-section {
    padding: 100px 0;
}

.dl-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.dl-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 30px auto 0;
}

.input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary);
}

.btn-dl {
    background: white;
    color: black;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-dl:hover {
    background: #e2e8f0;
}

.success-msg {
    margin-top: 20px;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 50px;
    font-size: 13px;
    color: var(--text-muted);
}

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

.socials a {
    margin-left: 15px;
    color: var(--text-muted);
    font-size: 16px;
    transition: 0.2s;
}

.socials a:hover {
    color: white;
}

@media(max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-img {
        display: none;
    }

    .stat-highlight {
        margin: 0 auto 40px;
    }

    .cta-group {
        justify-content: center;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-micro {
        justify-content: center;
        margin-top: 20px;
    }
}