:root {
    --bg-dark: #09090b;
    --bg-card: #131316;
    --neon-green: #00ff88;
    --neon-green-glow: rgba(0, 255, 136, 0.4);
    --neon-purple: #b026fa;
    --neon-purple-glow: rgba(176, 38, 250, 0.4);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.badge,
.btn,
.step-num,
.price-container,
.ticker,
.time-value {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
}

/* Typography elements */
.highlight-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.highlight-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple-glow);
}

.text-center {
    text-align: center;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.ticker-item {
    padding: 0 2rem;
    color: var(--text-muted);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Assuming duplicated content takes exactly 50% */
}

/* Background Glow */
.glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.glow-sphere.green {
    background: var(--neon-green);
    top: -100px;
    right: -100px;
}

.glow-sphere.purple {
    background: var(--neon-purple);
    top: 30%;
    left: -200px;
}

.bottom-left {
    top: auto;
    bottom: -100px;
    left: -100px;
}

.bottom-right {
    top: auto;
    bottom: 200px;
    right: -100px;
    left: auto;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: url('hero-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.85) 0%, rgba(9, 9, 11, 0.95) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.glitch-text {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.85;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-large {
    padding: 20px 48px;
    font-size: 2.2rem;
}

.btn-max {
    width: 100%;
    margin-top: 2rem;
    padding: 20px;
    font-size: 2rem;
}

.btn-glow-green {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-glow-green:hover {
    background: #00e077;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.btn-glow-purple {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 20px rgba(176, 38, 250, 0.4);
}

.btn-glow-purple:hover {
    background: #9b20de;
    box-shadow: 0 0 40px rgba(176, 38, 250, 0.6);
    transform: translateY(-2px);
}

/* Social Proof */
.social-proof {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -15px;
    position: relative;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #222;
    border: 3px solid var(--bg-dark);
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.social-proof span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Who is this for */
.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.icon.green {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.icon.purple {
    background: rgba(176, 38, 250, 0.1);
    color: var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(176, 38, 250, 0.1);
}

.target-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.target-card p {
    color: var(--text-muted);
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.step-num {
    color: var(--neon-green);
    font-size: 3rem;
    margin-right: 20px;
    opacity: 0.8;
}

.accordion-header i {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-body {
    padding: 0 30px 30px 95px;
    color: var(--text-muted);
}

.accordion-body ul {
    margin-top: 15px;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
}

/* Pricing & Timer */
.pricing {
    padding-bottom: 150px;
}

.timer-box {
    text-align: center;
    margin-bottom: 60px;
}

.timer-box p {
    color: var(--neon-purple);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.time-value {
    font-size: 4rem;
    line-height: 1;
    color: var(--text-main);
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.colon {
    font-size: 3rem;
    color: var(--border-color);
    font-family: 'Teko', sans-serif;
    margin-top: -15px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-purple);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0 0 50px rgba(176, 38, 250, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(176, 38, 250, 0.4);
}

.pricing-card h3 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.price-container {
    text-align: center;
    margin-bottom: 40px;
}

.old-price {
    font-size: 2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price {
    font-size: 5rem;
    line-height: 1;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--neon-purple);
}

.secure-payment {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.secure-payment i {
    margin-right: 5px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer .links {
    margin-top: 15px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--neon-green);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .glitch-text {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .countdown {
        gap: 10px;
    }

    .time-block {
        width: 80px;
        height: 80px;
    }

    .time-value {
        font-size: 3rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .accordion-body {
        padding-left: 30px;
    }

    .step-num {
        font-size: 2rem;
        margin-right: 10px;
    }

    .btn-large {
        font-size: 1.8rem;
        padding: 15px 30px;
    }

    .current-price {
        font-size: 4rem;
    }
}