:root {
    --color-bg: #030305;
    --color-surface: #0a0a10;
    --color-surface-hover: #11111a;
    --color-text: #e2e8f0;
    --color-text-dim: #94a3b8;

    --color-accent: #00ff88;
    /* Neon Green - Profit */
    --color-accent-glow: rgba(0, 255, 136, 0.3);

    --color-secondary: #00f0ff;
    /* Cyan */
    --color-secondary-glow: rgba(0, 240, 255, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Gradients */
.bg-grad-1,
.bg-grad-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    opacity: 0.15;
}

.bg-grad-1 {
    top: -10vw;
    left: -10vw;
    width: 40vw;
    height: 40vw;
    background: var(--color-secondary);
}

.bg-grad-2 {
    bottom: 20%;
    right: -10vw;
    width: 50vw;
    height: 50vw;
    background: var(--color-accent);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
.headline {
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.2;
}

.text-accent {
    color: var(--color-accent);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(90deg, #ffffff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.max-w-lg {
    max-width: 800px;
    margin: 0 auto;
}

.max-w-sm {
    max-width: 500px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.btn-primary {
    background: var(--color-accent);
    color: #000;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--color-accent-glow);
    transform: translateY(-2px);
    background: #00e67a;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary-glow) inset;
    transform: translateY(-2px);
}

.btn-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
}

.btn-ig:hover {
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    transform: translateY(-2px);
}

/* Glass Panel */
.glass-panel {
    background: rgba(10, 10, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.logo i {
    color: var(--color-accent);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--color-text-dim);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

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

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    max-width: 90%;
}

.mysterious-note {
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    border-left: 2px solid var(--color-secondary);
    padding-left: 1rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Abstract Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-chart {
    position: relative;
    width: 100%;
    height: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-line {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    opacity: 0.5;
}

.candle {
    position: absolute;
    width: 12px;
    background: var(--color-accent);
    bottom: 50px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-accent-glow);
    animation: float 4s ease-in-out infinite alternate;
}

.candle.down {
    background: #ff3366;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

.candle::before {
    content: '';
    position: absolute;
    width: 2px;
    background: inherit;
    left: 5px;
    height: 140%;
    top: -20%;
    z-index: -1;
}

.c-1 {
    left: 10%;
    height: 40px;
    bottom: 80px;
    animation-delay: 0s;
}

.c-2 {
    left: 30%;
    height: 60px;
    bottom: 60px;
    animation-delay: 0.2s;
}

.c-3 {
    left: 50%;
    height: 80px;
    bottom: 120px;
    animation-delay: 0.4s;
}

.c-4 {
    left: 70%;
    height: 50px;
    bottom: 180px;
    animation-delay: 0.6s;
}

.c-5 {
    left: 90%;
    height: 100px;
    bottom: 150px;
    animation-delay: 0.8s;
}

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

    to {
        transform: translateY(-15px);
    }
}

.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    top: 30%;
    left: 40%;
    animation: pulseOrbs 6s infinite alternate;
}

@keyframes pulseOrbs {
    from {
        transform: scale(1);
        opacity: 0.2;
    }

    to {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

/* Problem Section */
.section-heading {
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--color-text-dim);
    font-size: 1.1rem;
}

.punchlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.punch-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.punch-card:hover {
    transform: translateY(-5px);
    background: var(--color-surface-hover);
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 51, 102, 0.05);
}

.punch-card i {
    font-size: 2rem;
    color: #ff3366;
    margin-bottom: 1.5rem;
    display: block;
}

.punch-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.feature-list i {
    width: 24px;
    text-align: center;
}

.mysterious-note-alt {
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-left: 2px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
}

.precision-circle {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.precision-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.2);
}

.precision-circle::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: rgba(0, 255, 136, 0.2);
}

.inner-circle {
    width: 150px;
    height: 150px;
    border: 1px dashed var(--color-accent);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: conic-gradient(from 0deg, transparent 70%, rgba(0, 255, 136, 0.4) 100%);
    border-radius: 100% 0 0 0;
    transform-origin: bottom right;
    animation: sweep 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes sweep {
    from {
        transform: translate(-100%, -100%) rotate(0deg);
    }

    to {
        transform: translate(-100%, -100%) rotate(360deg);
    }
}

/* Different Section */
.quote-box {
    margin-top: 3rem;
}

.quote {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.quote-sub {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Teaser Section */
.teaser h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.teaser p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text-dim);
}

.exclusive-text {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #fff !important;
    margin-top: 2rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram CTA */
.ig-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ig-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.ig-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-dim);
}

.ig-perks {
    list-style: none;
    margin-bottom: 3rem;
}

.ig-perks li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    border: 8px solid #222;
    border-radius: 36px;
    margin: 0 auto;
    position: relative;
    background: #000;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: rotate(5deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
}

.mock-ig-header {
    height: 60px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.mock-ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
}

.mock-post {
    background: #222;
    aspect-ratio: 1;
    border-radius: 4px;
    background-image: linear-gradient(45deg, #111, #333);
}

/* Email Capture */
.email-capture h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.email-capture .subheadline {
    font-size: 1.1rem;
    color: var(--color-text-dim);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

.spam-notice {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--color-text-dim);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Animation Classes */
.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .hero {
        padding-top: 140px;
        align-items: flex-start;
    }

    .hero-container,
    .solution-container,
    .ig-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero .subheadline {
        margin: 0 auto 2rem;
    }

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

    .feature-list li {
        justify-content: center;
        text-align: left;
    }

    .mysterious-note-alt {
        border-left: none;
        border-top: 2px solid var(--color-accent);
        border-radius: 0 0 8px 8px;
    }

    .ig-perks li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .quote {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .punch-card {
        padding: 2rem 1.5rem;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }
}