:root {
    --bg-color: #0B0515;
    --grid-color: rgba(255, 255, 255, 0.03);
    --primary-color: #BD34FE;
    --secondary-color: #EC4899;
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    --glass-bg: rgba(20, 10, 30, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Grid */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

/* Glowing Orbs */
.glow-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.glow-orb.purple {
    top: -100px;
    left: -100px;
    background: var(--primary-color);
    animation: float 10s ease-in-out infinite;
}

.glow-orb.pink {
    bottom: -100px;
    right: -100px;
    background: var(--secondary-color);
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-container {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: rgba(189, 52, 254, 0.1);
    border: 1px solid rgba(189, 52, 254, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E9D5FF;
    text-transform: uppercase;
}

.robot-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

/* Hero Section */
.hero {
    padding: 30px 0 50px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 15px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.3));
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.subtitle strong {
    color: #E9D5FF;
}

/* VSL Player */
.vsl-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.vsl-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 0 40px rgba(189, 52, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.vsl-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 40%, rgba(189, 52, 254, 0.4) 50%, transparent 60%, transparent 100%);
    animation: rotate 4s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
    transition: transform 0.3s ease;
    animation: pulse-play 2s infinite;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

.video-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* CTA */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    z-index: 10;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(90deg, #A855F7, #EC4899);
    border-radius: 8px;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-text {
    position: relative;
    z-index: 2;
}

.pulse-neon {
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 10px rgba(236, 72, 153, 0.4), 0 0 20px rgba(168, 85, 247, 0.4);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.8), 0 0 40px rgba(168, 85, 247, 0.6), 0 0 60px rgba(236, 72, 153, 0.4);
        transform: scale(1.02);
    }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: sweep 3s infinite linear;
    z-index: 1;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 200%;
    }
}

.cta-button:hover {
    filter: brightness(1.1);
}

.security-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Floating Editor (Design element from image) */
.floating-editor {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 320px;
    background: #110820;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(189, 52, 254, 0.15);
    transform: rotate(5deg) translateY(0);
    animation: float-editor 6s ease-in-out infinite;
    z-index: 0;
    display: none;
}

@media(min-width: 1024px) {
    .floating-editor {
        display: block;
    }
}

@keyframes float-editor {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-20px);
    }
}

.editor-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dots span:nth-child(1) {
    background-color: #EF4444;
}

.dots span:nth-child(2) {
    background-color: #EAB308;
}

.dots span:nth-child(3) {
    background-color: #22C55E;
}

.editor-body {
    padding: 20px;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #D1D5DB;
}

.editor-body .keyword {
    color: #EC4899;
}

.editor-body .variable {
    color: #60A5FA;
}

.editor-body .class {
    color: #A78BFA;
}

.editor-body .string {
    color: #34D399;
}

.editor-body .method {
    color: #FCD34D;
}

.cursor {
    display: inline-block;
    color: var(--primary-color);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #fff, #A3A3A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card.glass:hover {
    transform: translateY(-5px);
    border-color: rgba(189, 52, 254, 0.5);
    background: rgba(30, 15, 50, 0.6);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #E9D5FF;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Media Queries */
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .title {
        margin-bottom: 15px;
    }

    .vsl-container {
        max-width: 720px;
    }
}