:root {
    --bg-color: #02040a;
    /* Deep Minimalist Navy */
    --section-bg: rgba(255, 255, 255, 0.02);
    --text-white: #FFFFFF;
    --neon-green: #3CFF79;
    --soft-green: #D4FFD6;
    --gray-text: #B0B0B0;
    --urgency-red: #FF4433;
    --urgency-bg: rgba(42, 5, 5, 0.8);
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;

    /* Deep Premium Gradient Base */
    background: radial-gradient(circle at 50% -20%, #0d1f12 0%, #05070a 60%, #020202 100%);
    min-height: 100vh;
}

/* Tech Grid Layer (Blueprint Effect) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(60, 255, 121, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 255, 121, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    /* Subtle grid */
    opacity: 0.6;
    z-index: -2;
    animation: grid-drift 120s linear infinite;
    pointer-events: none;
}

/* Floating Particles Layer */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(1.5px 1.5px at 100px 100px, rgba(200, 255, 210, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 200px 300px, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 400px 100px, rgba(60, 255, 121, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50px 400px, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 600px 500px, rgba(60, 255, 121, 0.3) 0%, transparent 100%);
    background-size: 800px 800px;
    opacity: 0.7;
    z-index: -1;
    animation: particles-float 80s linear infinite;
    pointer-events: none;
}

@keyframes grid-drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-60px, -60px);
    }
}

@keyframes particles-float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -40px);
    }

    100% {
        transform: translate(-40px, -80px);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    padding: 0 24px;
    max-width: 430px;
    /* Precise Mobile width max */
    margin: 0 auto;
}

/* Utilities */
.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(60, 255, 121, 0.3);
}

.text-white {
    color: var(--text-white);
}

.text-red-400 {
    color: var(--urgency-red);
}

.text-orange-400 {
    color: #FF9900;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-bold {
    font-weight: 700;
}

.font-mono {
    font-family: 'Courier New', monospace;
    letter-spacing: -0.5px;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.gap-4 {
    gap: 1rem;
}

.relative {
    position: relative;
}

.z-10 {
    position: relative;
    z-index: 10;
}

.strike {
    text-decoration: line-through;
    opacity: 1;
    color: #FF5555;
    font-weight: 700;
    font-size: 20px;
}

.highlight-money {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    font-style: italic;
}

/* SECTIONS */
section {
    padding: 50px 0;
    border-bottom: 1px solid #1a1a1a;
}

/* HERO SECTION */
.hero-section {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background: transparent;
    /* Let body bg show through */
}

.hero-headline {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subheadline-new {
    font-size: 18px;
    color: #ddd;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 0 10px;
    border-left: 3px solid var(--neon-green);
    display: inline-block;
}

.hero-visual {
    margin: 20px 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(60, 255, 121, 0.15);
    border: 1px solid #333;
}

.hero-img {
    width: 100%;
    display: block;
    opacity: 0.9;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    opacity: 0.8;
    box-shadow: 0 0 20px var(--neon-green);
    animation: scan 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* STORY SECTION */
.story-section {
    background-color: transparent;
}

.story-card p {
    margin-bottom: 18px;
    /* Increased spacing */
    font-size: 17px;
    color: #cccccc;
    line-height: 1.6;
}

.story-intro {
    font-weight: 700;
    font-size: 20px !important;
    margin-bottom: 25px !important;
}

.highlight-box {
    border-left: 4px solid var(--neon-green);
    background: linear-gradient(90deg, #113311 0%, transparent 100%);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.emotional-alert {
    background: #100505;
    /* Darker, slightly reddish dark */
    border: 1px dotted rgba(60, 255, 121, 0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.story-climax {
    margin-top: 30px;
    /* Removed default padding/border styles to use emotional-alert class if needed, or keep for legacy */
    padding: 10px;
    border: none;
    border-radius: 0;
    background: transparent;
}

/* Re-applying padding/bg via specific combined helper in HTML or just override .story-climax.emotional-alert above */

/* BELIEF SECTION */
.belief-section {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.belief-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.belief-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ddd;
}

.cross {
    margin-right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ff3333;
}

.belief-highlight {
    margin-top: 40px;
    background: rgba(60, 255, 121, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(60, 255, 121, 0.2);
    color: var(--soft-green);
    font-size: 16px;
}

/* PROMISE SECTION */
.promise-section {
    background: transparent;
}

.promise-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.ai-promise-box {
    background: #151515;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 16px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promise-item {
    color: var(--neon-green);
    padding: 5px 0;
}

.promise-final {
    margin-top: 35px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding: 0 10px;
}

.urgency-problem-box {
    background: #1a0505;
    border: 1px solid #3a0a0a;
    border-left: 4px solid var(--urgency-red);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.icon-warning {
    font-size: 18px;
    margin-right: 8px;
}

/* HOW IT WORKS & AI MOCKUP */
.how-section {
    background-color: transparent;
}

/* NEW AI MOCKUP STYLES */
.ai-mockup-container {
    background: #111;
    border-radius: 20px;
    border: 1px solid #333;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(60, 255, 121, 0.1);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.ai-mockup-header {
    background: #222;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dot-group {
    display: flex;
    gap: 6px;
    margin-right: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

.ai-title {
    font-family: monospace;
    font-size: 12px;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.ai-chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(180deg, #111 0%, #050505 100%);
    min-height: 250px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-msg.ai {
    background: #1a2a1a;
    border-bottom-left-radius: 2px;
    border: 1px solid #2a4a2a;
    color: #e0ffe0;
    align-self: flex-start;
}

.chat-msg.user {
    background: #333;
    border-bottom-right-radius: 2px;
    color: #fff;
    align-self: flex-end;
}

.chat-typing {
    font-size: 10px;
    color: var(--neon-green);
    margin-top: 5px;
    font-family: monospace;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}


.steps-grid {
    display: grid;
    gap: 25px;
}

.step-card {
    background: #151515;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: #aaa;
}

/* URGENCY SECTION */
.urgency-section {
    background: var(--urgency-bg);
    border-top: 1px solid #441111;
    border-bottom: 1px solid #441111;
}

.urgency-stripe {
    background: rgba(255, 68, 51, 0.1);
    padding: 15px;
    border-left: 4px solid var(--urgency-red);
    margin-bottom: 30px;
    text-align: left;
}

.urgency-box {
    background: #1a0505;
    border: 1px solid #441111;
    padding: 25px;
    border-radius: 12px;
}

.urgency-list {
    list-style: none;
    font-size: 17px;
    line-height: 2;
    text-align: left;
    display: inline-block;
}

.deadline-text {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 900;
    color: var(--urgency-red);
    text-transform: uppercase;
}

/* VALUE/PRICING */
.value-section {
    padding: 60px 0;
}

.comparison-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bad-option {
    padding: 20px;
    background: #181818;
    border-radius: 12px;
    text-align: center;
    opacity: 0.9;
    transform: scale(1);
    margin-bottom: -20px;
    /* Pull into the good option */
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    z-index: 5;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.scarcity-row {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.scarcity-row:last-of-type {
    border-bottom: none;
}

.neon-number {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(60, 255, 121, 0.5);
}

.scarcity-footer {
    margin-top: 15px;
    background: rgba(255, 68, 51, 0.1);
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
}

.good-option {
    padding: 40px 25px;
    background: linear-gradient(160deg, #0f220f 0%, #000000 100%);
    border-radius: 20px;
    border: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(60, 255, 121, 0.15);
}

.badge-offer {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--neon-green);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.final-price-box {
    margin-top: 30px;
    text-align: center;
    background: rgba(60, 255, 121, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed rgba(60, 255, 121, 0.3);
}

.price-big {
    font-size: 56px;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(60, 255, 121, 0.4);
}

.price-sub {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ff4433;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
}

/* SOCIAL PROOF - NEW STYLE */
.testimonials-grid {
    gap: 20px;
}

.chat-bubble.with-avatar {
    display: flex;
    gap: 15px;
    background: #1e1e1e;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #555;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23777" viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: cover;
}

.chat-content {
    flex-grow: 1;
}

.stars {
    color: #FFD700;
    font-size: 10px;
    margin-left: 5px;
}

/* FAQ */
.faq-list {
    gap: 15px;
}

.faq-question {
    background: #151515;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #222;
}

.cta-mid-section {
    padding: 60px 0;
    background: #080808;
    border-bottom: 1px solid #222;
}

/* CTA FINAL */
.cta-section {
    padding-bottom: 100px;
    padding-top: 60px;
}

.main-cta-button {
    display: block;
    width: 100%;
    margin: 0 auto;
    background: var(--neon-green);
    color: #000;
    padding: 25px 15px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(60, 255, 121, 0.6);
    text-decoration: none;
    line-height: 1.2;
    border: 2px solid #fff;
}

.main-cta-button.small-margin {
    margin-top: 0;
    padding: 20px;
    font-size: 20px;
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(60, 255, 121, 0.6);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(60, 255, 121, 0.9);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(60, 255, 121, 0.6);
    }
}

/* Desktop override */
@media (min-width: 768px) {
    .container {
        border-left: 1px solid #111;
        border-right: 1px solid #111;
    }
}