:root {
    --void: #03010a;
    --deep: #080514;
    --card: #0e0a1f;
    --card2: #130e28;
    --p1: #7c3aed;
    --p2: #a855f7;
    --p3: #c084fc;
    --p4: #e9d5ff;
    --teal: #22d3ee;
    --blue: #3b82f6;
    --pink: #e879f9;
    --glow1: rgba(124, 58, 237, 0.4);
    --glow2: rgba(168, 85, 247, 0.3);
    --glowteal: rgba(34, 211, 238, 0.3);
    --border: rgba(124, 58, 237, 0.2);
    --border2: rgba(168, 85, 247, 0.15);
    --text: #f0e8ff;
    --muted: #8b7aa8;
    --mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--void);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--p2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
}

.cursor-trail {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, left 0.12s ease-out, top 0.12s ease-out;
}

/* NOISE OVERLAY */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* CANVAS BACKGROUND */
#bgCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(3, 1, 10, 0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--p1), var(--p3));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.logo-text .auto {
    color: var(--p3);
}

.logo-text .mata {
    color: var(--text);
}

.logo-text .mx {
    color: var(--teal);
    font-size: 14px;
    vertical-align: super;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--p2);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover {
    color: var(--p3);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* DROPDOWN NAV */
.nav-drop {
    position: relative;
}

.nav-drop-btn {
    background: none;
    border: none;
    cursor: none;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    padding: 0;
}

.nav-drop-btn:hover,
.nav-drop:hover .nav-drop-btn {
    color: var(--p3);
}

.nav-drop-btn svg {
    transition: transform 0.3s;
}

.nav-drop:hover .nav-drop-btn svg {
    transform: rotate(180deg);
}

.drop-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 300px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--glow1);
}

.nav-drop:hover .drop-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}

.drop-item:hover {
    background: rgba(124, 58, 237, 0.15);
}

.drop-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.drop-item:hover .drop-ico {
    background: rgba(168, 85, 247, 0.3);
}

.drop-name {
    font-size: 13px;
    font-weight: 700;
}

.drop-sub {
    font-size: 11px;
    color: var(--muted);
}

.nav-cta {
    background: linear-gradient(135deg, var(--p1), var(--p2));
    color: white !important;
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: 0 0 20px var(--glow1);
    transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    box-shadow: 0 0 35px var(--glow2), 0 0 60px var(--glow1) !important;
    transform: translateY(-1px) !important;
}

.nav-cta::after {
    display: none !important;
}

/* SECTIONS BASE */
section {
    position: relative;
    z-index: 2;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-orb1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.12) 0%, transparent 70%);
    top: 30%;
    right: 5%;
    animation: orbFloat 12s ease-in-out infinite 3s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

/* CIRCUIT LINES */
.circuit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 100px;
    padding: 8px 20px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--p3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease both;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 30px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .line-auto {
    display: block;
    background: linear-gradient(90deg, var(--p1), var(--p2), var(--p3), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: shimmer 4s linear infinite;
}

.hero-title .line-mata {
    display: block;
    color: var(--text);
    -webkit-text-stroke: 1px rgba(168, 85, 247, 0.3);
}

.hero-title .line-mx {
    display: block;
    font-size: 0.45em;
    color: var(--teal);
    letter-spacing: 8px;
    -webkit-text-fill-color: var(--teal);
    background: none;
}

@keyframes shimmer {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-sub strong {
    color: var(--p3);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: all 0.3s;
    box-shadow: 0 0 30px var(--glow1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite 1s;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    60%,
    100% {
        left: 120%;
    }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--glow2), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--p3);
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    cursor: none;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--p2);
    box-shadow: 0 0 30px var(--glow1);
    transform: translateY(-3px);
}

/* FLOATING TAGS */
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.7s 0.4s ease both;
}

.tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: rgba(14, 10, 31, 0.5);
    transition: all 0.3s;
}

.tag:hover {
    color: var(--p3);
    border-color: var(--p2);
    background: rgba(124, 58, 237, 0.1);
}

.tag span {
    color: var(--teal);
    margin-right: 4px;
}

/* TICKER */
.ticker-wrap {
    background: linear-gradient(90deg, var(--p1), rgba(124, 58, 237, 0.7), var(--blue), rgba(59, 130, 246, 0.7), var(--p1));
    background-size: 400%;
    animation: gradMove 6s linear infinite;
    padding: 11px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

@keyframes gradMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 400%
    }
}

.ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: tick 28s linear infinite;
    white-space: nowrap;
}

.tick-item {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 50px;
    color: rgba(255, 255, 255, 0.65);
}

.tick-item b {
    color: white;
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== PRICING ===== */
.pricing {
    padding: 20px 60px;
}

.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.section-tag::before,
.section-tag::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal));
}

.section-tag::after {
    background: linear-gradient(90deg, var(--teal), transparent);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-title span {
    background: linear-gradient(90deg, var(--p2), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 70px;
    line-height: 1.7;
}

/* TOGGLE */
.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.toggle-label.active {
    color: var(--p3);
}

.toggle-switch {
    width: 54px;
    height: 28px;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: none;
    transition: background 0.3s;
}

.toggle-switch.monthly {
    background: rgba(124, 58, 237, 0.5);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--p2), var(--p3));
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 0 10px var(--glow2);
}

.toggle-switch.monthly .toggle-knob {
    transform: translateX(26px);
}

.save-badge {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
}

.plan-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--glow1);
}

.plan-card.featured {
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.08), var(--card));
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 60px var(--glow1);
}

.plan-card.featured::before {
    background: linear-gradient(90deg, transparent, var(--p2), transparent);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-cur {
    font-size: 18px;
    color: var(--muted);
    font-weight: 700;
}

.price-amt {
    font-family: 'Orbitron', monospace;
    font-size: 52px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.plan-card.featured .price-amt {
    background: linear-gradient(90deg, var(--p2), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-per {
    font-size: 13px;
    color: var(--muted);
}

.plan-billing {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.plan-features li::before {
    content: '▸';
    color: var(--p2);
    font-size: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li {
    color: var(--text);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    color: var(--p3);
}

.plan-btn:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--p2);
    box-shadow: 0 0 20px var(--glow1);
}

.plan-btn.primary {
    background: linear-gradient(135deg, var(--p1), var(--p2));
    border: none;
    color: white;
    box-shadow: 0 0 30px var(--glow1);
}

.plan-btn.primary:hover {
    box-shadow: 0 0 50px var(--glow2), 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ===== BOTS REDES SOCIALES ===== */
.social-bots {
    padding: 100px 60px;
    background: rgba(8, 5, 20, 0.6);
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bot-card {
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.bot-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--p1), var(--p2), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.bot-card:hover::after {
    transform: scaleX(1);
}

.bot-card:hover {
    border-color: rgba(168, 85, 247, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow1);
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.bot-net {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.bot-net.ig {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.bot-net.tw {
    background: linear-gradient(135deg, #000, #1a1a2e);
}

.bot-net.tk {
    background: linear-gradient(135deg, #010101, #69C9D0);
}

.bot-net.fb {
    background: linear-gradient(135deg, #0866ff, #1a3c8a);
}

.bot-net.yt {
    background: linear-gradient(135deg, #ff0000, #8b0000);
}

.bot-net.ln {
    background: linear-gradient(135deg, #0077b5, #004d7a);
}

.bot-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.bot-type {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bot-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.bf {
    font-family: var(--mono);
    font-size: 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--p3);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.bot-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bot-price {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--p2), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-price-sub {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
}

.bot-btn {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: var(--p3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: none;
    transition: all 0.25s;
    text-decoration: none;
}

.bot-btn:hover {
    background: rgba(124, 58, 237, 0.3);
    border-color: var(--p2);
}

/* ===== N8N AUTOMATIONS ===== */
.automations {
    padding: 30px 60px;
}

.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.auto-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.auto-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glowteal);
}

.auto-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auto-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.auto-badge {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--teal);
}

.auto-badge.n8n {
    background: rgba(255, 100, 0, 0.1);
    border-color: rgba(255, 100, 0, 0.25);
    color: #ff8c42;
}

.auto-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auto-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.auto-flow {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.flow-node {
    font-family: var(--mono);
    font-size: 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--p3);
    padding: 5px 12px;
    border-radius: 6px;
}

.flow-arrow {
    color: var(--muted);
    font-size: 12px;
}

.auto-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.auto-price {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--teal);
}

.auto-price small {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    font-weight: 400;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 100px 60px;
    background: rgba(8, 5, 20, 0.5);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--p1), var(--p2), var(--teal));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 0 30px var(--glow1), 0 0 60px var(--glow2);
    border: 2px solid rgba(196, 132, 252, 0.3);
    transition: transform 0.3s;
}

.step:hover .step-num {
    transform: scale(1.1);
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 60px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s;
}

.testi-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    color: var(--p2);
    font-size: 14px;
}

.testi-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-text strong {
    color: var(--p3);
    font-style: normal;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
}

.testi-role {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124, 58, 237, 0.15), transparent);
}

.cta-final-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-final-title span {
    background: linear-gradient(90deg, var(--p2), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-final p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* FOOTER */
footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 60px 60px 28px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--muted);
    cursor: none;
    transition: all 0.2s;
    text-decoration: none;
}

.fsoc:hover {
    border-color: var(--p2);
    color: var(--p3);
    box-shadow: 0 0 15px var(--glow1);
}

.footer-col h4 {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--p3);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted);
}

.footer-bottom span {
    color: var(--p3);
}

.footer-bottom .mono {
    font-family: var(--mono);
    color: var(--teal);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.on {
    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;
}

/* GLITCH TEXT */
.glitch {
    position: relative;
    animation: glitch 4s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        text-shadow: none;
    }

    92% {
        text-shadow: -2px 0 var(--teal), 2px 0 var(--pink);
    }

    94% {
        text-shadow: 2px 0 var(--teal), -2px 0 var(--pink);
    }

    96% {
        text-shadow: none;
    }

    98% {
        text-shadow: -1px 0 var(--pink), 1px 0 var(--teal);
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--p1), var(--p2));
    border-radius: 3px;
}


/* ===== TABLET ≤1024px ===== */
@media (max-width: 1024px) {
    nav {
        padding: 0 30px;
    }

    .hero {
        padding: 120px 30px 80px;
    }

    .hero-title {
        font-size: clamp(40px, 7vw, 90px);
    }

    .bots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.featured {
        order: -1;
        grid-column: 1 / -1;
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .steps::before {
        display: none;
    }

    .auto-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .social-bots,
    .automations,
    .how,
    .testimonials,
    .cta-final {
        padding: 80px 30px;
    }

    .pricing {
        padding: 80px 30px;
    }

    footer {
        padding: 40px 30px 24px;
    }
}

/* ===== MOBILE ≤768px ===== */
@media (max-width: 768px) {

    /* Hide custom cursor on mobile */
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-trail {
        display: none !important;
    }

    /* NAV MOBILE */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(3, 1, 10);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 1050;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .nav-links .nav-cta {
        padding: 14px 36px;
        font-size: 14px;
    }

    /* Dropdowns in mobile: show inline */
    .nav-drop {
        text-align: center;
    }

    .drop-panel {
        position: static;
        transform: none;
        min-width: auto;
        width: 280px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: all 0.35s ease;
        margin-top: 8px;
        box-shadow: none;
    }

    .nav-drop:hover .drop-panel,
    .nav-drop:focus-within .drop-panel {
        opacity: 1;
        max-height: 500px;
        pointer-events: all;
        transform: none;
    }

    .nav-drop-btn {
        cursor: pointer;
        font-size: 16px;
        letter-spacing: 3px;
        justify-content: center;
    }

    /* HERO MOBILE */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-title .line-mx {
        font-size: 0.4em;
        letter-spacing: 4px;
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-glow,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 14px 28px;
        font-size: 13px;
    }

    .hero-tags {
        gap: 6px;
    }

    .tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* TICKER */
    .tick-item {
        padding: 0 30px;
        font-size: 10px;
    }

    /* SECTIONS */
    .section-title {
        font-size: clamp(22px, 5vw, 36px);
    }

    .section-sub {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* GRIDS TO 1 COLUMN */
    .bots-grid,
    .pricing-grid,
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card.featured {
        order: -1;
        grid-column: auto;
    }

    .testi-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .auto-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* STEPS 1 COLUMN */
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .step-num {
        width: 72px;
        height: 72px;
        font-size: 18px;
    }

    /* PLAN CARDS */
    .plan-card {
        padding: 30px 24px;
    }

    .price-amt {
        font-size: 40px;
    }

    /* BOT CARDS */
    .bot-card {
        padding: 24px 20px;
    }

    /* AUTO CARDS */
    .auto-card {
        padding: 28px 22px;
    }

    .auto-title {
        font-size: 16px;
    }

    .auto-price {
        font-size: 20px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* CTA */
    .cta-final {
        padding: 80px 20px;
    }

    .cta-final-title {
        font-size: clamp(28px, 7vw, 52px);
    }

    /* SECTIONS PADDING */
    .social-bots,
    .automations,
    .how,
    .testimonials {
        padding: 60px 20px;
    }

    .pricing {
        padding: 60px 20px;
    }

    footer {
        padding: 36px 20px 20px;
    }

    /* TOGGLE */
    .plan-toggle {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 36px;
    }

    .toggle-label {
        font-size: 12px;
    }
}

/* ===== SMALL MOBILE ≤480px ===== */
@media (max-width: 480px) {
    nav {
        padding: 0 16px;
        height: 60px;
    }

    .logo-text {
        font-size: 15px;
    }

    .hero {
        padding: 90px 16px 48px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 48px);
    }

    .hero-title .line-mx {
        font-size: 0.35em;
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .btn-glow,
    .btn-ghost {
        max-width: 100%;
        font-size: 12px;
        padding: 13px 20px;
    }

    .hero-tags {
        gap: 5px;
    }

    .tag {
        font-size: 9px;
        padding: 4px 8px;
    }

    .section-title {
        font-size: clamp(20px, 6vw, 30px);
    }

    .bot-card {
        padding: 20px 16px;
    }

    .bot-price {
        font-size: 18px;
    }

    .bot-btn {
        font-size: 10px;
        padding: 6px 12px;
    }

    .plan-card {
        padding: 24px 18px;
    }

    .price-amt {
        font-size: 34px;
    }

    .auto-card {
        padding: 22px 18px;
    }

    .step-num {
        width: 64px;
        height: 64px;
        font-size: 16px;
    }

    .testi-card {
        padding: 20px;
    }

    .cta-final-title {
        font-size: clamp(24px, 8vw, 40px);
    }

    .cta-final p {
        font-size: 15px;
    }

    .social-bots,
    .automations,
    .how,
    .testimonials,
    .cta-final {
        padding: 48px 16px;
    }

    .pricing {
        padding: 48px 16px;
    }

    footer {
        padding: 30px 16px 16px;
    }
}