/* Global Styles & Variables */
:root {
    /* User Provided Palette */
    /* Purples/Blues */
    --color-bg-dark: #200162;
    /* Deep Purple Background */
    --color-primary-dark: #1744C1;
    /* Strong Blue */
    --color-secondary: #4E38B7;
    /* Purple Secondary */

    /* Pinks/Magentas */
    --color-primary: #FE1B73;
    /* Vibrant Pink */
    --color-accent: #C0278F;
    /* Magenta */

    /* Highlights */
    --color-highlight: #FBBF31;
    /* Gold/Yellow */

    /* Neutrals */
    --color-text-light: #FEFEFF;
    --color-text-gray: #e2e8f0;
    /* Lighter gray for contrast on purple */
    --color-card-bg: rgba(32, 1, 98, 0.6);
    /* Translucent purple */

    /* Glows */
    --glow-primary: 0 0 20px rgba(254, 27, 115, 0.5);
    /* Pink Glow */
    --glow-highlight: 0 0 20px rgba(251, 191, 49, 0.4);
    /* Gold Glow */

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Background & Animation */
/* CSS Stars Generation */
/* Since we are in plain CSS, we simulate the stars with a static large box-shadow list. 
   For a robust "Gazing" effect, we use 3 layers of parallax stars. 
   I will generate a fixed set of random stars here for the effect. */

@keyframes animStar {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-2000px);
    }
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.stars-1 {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 1744px 122px #FFF, 134px 1321px #FFF, 92px 859px #FFF, 1803px 941px #FFF, 321px 1632px #FFF, 1500px 500px #FFF, 200px 800px #FFF, 900px 1200px #FFF, 1600px 200px #FFF, 400px 1700px #FFF, 1100px 600px #FFF, 50px 300px #FFF, 700px 1500px #FFF, 1300px 900px #FFF, 1900px 100px #FFF, 600px 1300px #FFF, 1200px 400px #FFF, 100px 1900px #FFF, 1700px 700px #FFF, 300px 1100px #FFF;
    animation: animStar 50s linear infinite;
}

.stars-2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 1744px 122px #FFF, 134px 1321px #FFF, 92px 859px #FFF, 1803px 941px #FFF, 321px 1632px #FFF, 1400px 300px #FFF, 250px 1000px #FFF, 600px 400px #FFF, 1800px 1500px #FFF, 100px 600px #FFF;
    animation: animStar 100s linear infinite;
}

.stars-3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 1200px 800px #FFF, 400px 1200px #FFF, 1600px 300px #FFF;
    animation: animStar 150s linear infinite;
    opacity: 0.5;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    /* Layered background: Deep Purple Gradients */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(254, 27, 115, 0.15), transparent 30%),
        /* Pink Glow */
        radial-gradient(circle at 85% 30%, rgba(23, 68, 193, 0.2), transparent 30%);
    /* Blue Glow */
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-text-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-gradient {
    /* Pink to Purple gradient */
    background: linear-gradient(135deg, #FE1B73 0%, #C0278F 50%, #FBBF31 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(254, 27, 115, 0.3));
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Responsive Nav Utilities */
.hidden-mobile {
    display: none;
}

/* Navigation Styles */
/* Navigation Styles */
.mobile-menu-btn {
    display: none;
    /* Hidden on Desktop */
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.nav-links {
    display: flex;
    /* Flex Row on Desktop */
    gap: 2rem;
    align-items: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    header .container {
        position: relative;
        /* Ensure context for absolute nav */
    }

    .mobile-menu-btn {
        display: block;
        /* Visible on Mobile */
    }

    .logo-img {
        max-height: 50px;
        /* Smaller mobile logo */
    }

    .nav-links {
        display: none;
        /* Hidden by default on Mobile */
        position: absolute;
        top: 100%;
        /* Below header */
        left: 0;
        width: 100%;
        background: rgba(32, 1, 98, 0.98);
        /* Solid background */
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(254, 27, 115, 0.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    /* Pink to Blue gradient */
    background: linear-gradient(135deg, #FE1B73, #1744C1);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 27, 115, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 27, 115, 0.6);
    filter: brightness(1.1);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(32, 1, 98, 0.85);
    border-bottom: 1px solid rgba(254, 27, 115, 0.2);
}

.logo-img {
    height: auto;
    max-height: 135px;
    width: auto;
    max-width: 450px;
}

.nav-links button {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.8;
}

.nav-links button:hover {
    opacity: 1;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Hero Section */
.hero {
    padding-top: 280px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-video-container {
    margin-top: 4rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(254, 27, 115, 0.3);
    box-shadow: 0 0 40px rgba(254, 27, 115, 0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(32, 1, 98, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 27, 115, 0.5);
    /* Pink Border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(254, 27, 115, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    /* Icon Gradient: Yellow -> Pink */
    background: linear-gradient(135deg, #FBBF31, #FE1B73);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(254, 27, 115, 0.4));
}

.icon-danger {
    background: none;
    -webkit-text-fill-color: #ef4444;
    /* Keep red for danger, or use #FF1B6E for brand pink-red */
    color: #ef4444;
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.4));
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

/* Feature Card Hover Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 1, 98, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    padding: 1rem;
    pointer-events: none;
    /* Let clicks pass through when hidden */
}

/* Show overlay on hover */
.feature-card:hover .card-overlay {
    opacity: 1;
    pointer-events: auto;
    /* Enable clicks */
}

.overlay-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 5px;
    background: transparent;
    color: var(--color-highlight);
    /* Gold */
    font-weight: 700;
    text-align: center;
    width: auto;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s;
}

.overlay-btn:hover {
    color: #fff;
    text-decoration-color: var(--color-primary);
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px var(--color-highlight));
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pain-icon {
    color: #ef4444;
    /* Red for pain */
    flex-shrink: 0;
    margin-top: 4px;
}

/* Form Section */
.contact-section {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-top: 1rem;
    line-height: 1.4;
}

/* Message Box */
.message-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
}

.message-box.success {
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid rgba(52, 168, 83, 0.3);
    color: #4ade80;
}

.message-box.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.message-box.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .form-wrapper {
        padding: 20px;
    }
}