:root {
    --bg-void: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary-accent: #2c2c2c;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* Marketing Plan Colors */
    --plan-yellow: #FFD700;
    --plan-cyan: #00E5FF;
    --plan-gradient: linear-gradient(135deg, #FFD700 0%, #00E5FF 100%);

    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Mesh */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    animation: floatBlob 25s infinite ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--plan-yellow);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--plan-cyan);
    bottom: -100px;
    left: -100px;
    animation-delay: -8s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: white;
    top: 40%;
    left: 50%;
    animation-delay: -15s;
    opacity: 0.05;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-content {
    flex-grow: 1;
    padding-top: 140px;
    padding-bottom: 80px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* HEADER STYLES */
header {
    padding: 20px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: white;
    color: black !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


/* HERO */
.page-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.page-title span {
    background: var(--plan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin: 0 auto 50px;
    max-width: 700px;
    line-height: 1.6;
}

/* VISUAL: Strategy Board */
.hero-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    perspective: 1000px;
}

.strategy-board {
    position: relative;
    width: 600px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateX(10deg);
}

.strategy-line {
    height: 2px;
    width: 100px;
    background: var(--plan-cyan);
    opacity: 0.5;
    position: relative;
}

.strategy-node {
    width: 20px;
    height: 20px;
    background: var(--plan-yellow);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--plan-yellow);
    position: relative;
    z-index: 2;
}

.node-end {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.2rem;
}

.floating-card {
    position: absolute;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--plan-cyan);
    border-radius: 8px;
    color: var(--plan-cyan);
    font-family: monospace;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: -20px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -30px;
    left: 250px;
    animation-delay: -2s;
    border-color: var(--plan-yellow);
    color: var(--plan-yellow);
}

.card-3 {
    top: -40px;
    right: 50px;
    animation-delay: -4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

@media(min-width: 900px) {
    .hero-cta-group {
        flex-direction: row;
    }
}


/* BLUEPRINT SECTION */
.blueprint-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    padding: 60px;
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--plan-cyan);
}

.blueprint-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.blueprint-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--plan-yellow);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--plan-yellow);
    width: 30px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: white;
    min-width: 100px;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}


/* ROADMAP TIMELINE */
.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--plan-yellow), var(--plan-cyan));
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.3;
}

.roadmap-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.roadmap-item.right {
    align-self: flex-end;
    margin-left: auto;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
}

.roadmap-marker {
    position: absolute;
    top: 0;
    right: -22px;
    width: 44px;
    height: 44px;
    background: var(--bg-void);
    border: 2px solid var(--plan-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plan-cyan);
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.roadmap-item.right .roadmap-marker {
    right: auto;
    left: -22px;
    border-color: var(--plan-yellow);
    color: var(--plan-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.roadmap-content {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    transition: 0.3s;
}

.roadmap-content:hover {
    transform: scale(1.02);
    background: var(--bg-card-hover);
}

.roadmap-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.roadmap-content p {
    color: var(--text-muted);
    line-height: 1.5;
}


/* BUTTONS */
.btn-neon {
    background: var(--plan-yellow);
    color: black;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}


/* FINAL CTA */
.final-cta-box {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 60px 25px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.final-cta-box p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        padding: 0 25px;
    }

    .page-title {
        font-size: 3rem;
    }

    .strategy-board {
        width: 100%;
        height: 250px;
        transform: none;
    }

    .card-1 {
        left: 10px;
    }

    .card-2 {
        left: auto;
        right: 10px;
    }

    .card-3 {
        right: auto;
        left: 20px;
        top: auto;
        bottom: 20px;
    }

    .hero-cta-group {
        margin-bottom: 60px;
    }

    .btn-neon,
    .btn-ghost {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .blueprint-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    /* Roadmap Mobile */
    .roadmap-container::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .roadmap-item.right {
        padding-left: 50px;
    }

    .roadmap-marker {
        left: -2px;
        right: auto;
    }

    .roadmap-item.right .roadmap-marker {
        left: -2px;
    }

    .final-cta-box h2 {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        transition: 0.4s;
    }

    .nav-links.menu-open {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links .btn-primary {
        background: transparent !important;
        color: white !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
    }
}