:root {
    --bg-dark: #070709;
    --neon-pink: #ff2a5f;
    --neon-cyan: #00f0ff;
    --text-main: #f0f0f5;
    --text-muted: #888899;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
}

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

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

h1, h2, h3, .glitch {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

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

/* === Background Effects === */
.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    opacity: 0.3;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    animation: float 10s infinite alternate ease-in-out;
}

.top-right {
    top: -200px; right: -200px;
    background: var(--neon-pink);
}

.bottom-left {
    bottom: -200px; left: -200px;
    background: var(--neon-cyan);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, 30px); }
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* === Glassmorphism Utility === */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

/* === Navbar === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0; z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--neon-pink); }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--neon-pink);
    color: white;
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
}
.btn-primary:hover {
    background: #ff104b;
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}
.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* === Hero Section === */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    margin-top: 5rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(255, 42, 95, 0.1);
    border: 1px solid rgba(255, 42, 95, 0.3);
    color: var(--neon-pink);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Glitch Effect */
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.8;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip: rect(20px, 9999px, 80px, 0); }
    20% { clip: rect(60px, 9999px, 15px, 0); }
    40% { clip: rect(10px, 9999px, 50px, 0); }
    60% { clip: rect(80px, 9999px, 10px, 0); }
    80% { clip: rect(30px, 9999px, 90px, 0); }
    100% { clip: rect(5px, 9999px, 30px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.trust-item i { color: var(--neon-cyan); }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-container:hover .play-button {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translate(-50%, -50%) scale(1.1);
}

/* === Typography & Sections === */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

section {
    padding: 6rem 5%;
}

/* === About / Steps === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    padding: 2.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px; right: 20px;
    font-size: 4rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === Features === */
.features {
    display: flex;
    justify-content: center;
}

.flex-row {
    padding: 4rem;
    max-width: 800px;
    width: 100%;
}

.feat-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feat-list {
    list-style: none;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feat-list i {
    color: var(--neon-cyan);
    font-size: 1.5rem;
}

/* === Pricing Cards === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 3rem;
    z-index: 10;
}

.pricing-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.pricing-card.active {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.2);
    transform: scale(1.05);
    background: rgba(255, 42, 95, 0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-pink);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
    line-height: 1;
}

.pricing-card .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === Checkout === */
.checkout-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.checkout-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin-top: 1rem;
}

.checkout-info {
    flex: 1;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
}

.checkout-info h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--neon-cyan); }
.checkout-info p { color: var(--text-muted); margin-bottom: 2rem; }

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
}
.currency { font-size: 2rem; color: var(--neon-pink); }
.period { font-size: 1rem; color: var(--text-muted); font-family: 'Outfit', sans-serif;}

.money-back {
    color: #00f0ff !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-box {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-box h3 { margin-bottom: 1rem; text-align: center; }

/* Dynamic PayPal Messages Wrapper */
#paypal-messages {
    min-height: 35px;
    margin-bottom: 1rem;
}

.crypto-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.crypto-note a {
    color: var(--neon-pink);
    border-bottom: 1px dashed var(--neon-pink);
}

/* === Footer === */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 1000px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.active { transform: scale(1.02); }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; margin-top: 8rem; }
    .cta-group { justify-content: center; }
    .trust-indicators { justify-content: center; flex-wrap: wrap; }
    .steps-grid { grid-template-columns: 1fr; }
    .checkout-container { flex-direction: column; }
    .checkout-info, .payment-box { padding: 2rem; }
}
