/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Syne:wght@700;800&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-dark: #030303;
    --bg-panel: #0a0a0a;
    --primary: #00FFA3;
    /* Neon Green */
    --primary-dim: #00b372;
    --accent: #2A2A2A;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;

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

    --gradient-glow: radial-gradient(circle at center, rgba(0, 255, 163, 0.15) 0%, rgba(3, 3, 3, 0) 70%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

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

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

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

.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 4px;
    /* Sharp corners for modern feel, slightly rounded */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.6);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 30%, #111 0%, #030303 70%);
    padding-top: 50px;
    padding-bottom: 50px;
    /* Added padding to prevent cutoff on mobile */
}

/* New Grid System for Split Content */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /* Two rows for text */
    gap: 20px 60px;
    /* Row gap 20, Column gap 60 */
    align-items: center;
}

.hero-text-upper {
    grid-column: 1;
    grid-row: 1;
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    /* Spans both text rows on desktop */
    position: relative;
    display: flex;
    /* Centers image in its cell */
    justify-content: center;
}

.hero-text-lower {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    /* Aligns text to top of its cell */
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    /* Reduced bottom margin since image might come next on mobile */
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 255, 163, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 163, 0.2);
}

.hero-img-container {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    /* Constraint width */
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-img-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(0.8);
}

/* Story */
.story-section {
    background: var(--bg-dark);
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    position: relative;
}

.story-item {
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.story-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-marker {
    position: absolute;
    left: -51px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.profit-highlight {
    font-size: 5rem;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

/* AI Solution */
.solution-section {
    background: #050505;
    overflow: hidden;
}

.feature-box {
    background: linear-gradient(145deg, #0e0e0e, #050505);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Pricing */
.pricing-section {
    padding-bottom: 150px;
    text-align: center;
}

.price-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary), transparent, transparent);
    border-radius: 20px;
    opacity: 0.5;
}

.price-main {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero {
        padding: 50px 0;
        /* Adjusted padding for mobile */
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-bottom: 40px;
    }

    .hero-text-upper h1 {
        font-size: 3rem;
        margin-bottom: 0;
        word-wrap: break-word;
    }

    .hero-visual {
        margin: 10px 0;
    }

    .hero-visual img {
        max-width: 100%;
    }

    .hero-text-lower p {
        margin-top: 10px;
    }

    .story-container {
        padding-left: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .story-marker {
        left: -31px;
    }

    /* Fix for big numbers causing overflow */
    .profit-highlight {
        font-size: 2.5rem;
        word-break: break-word;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.2rem !important;
        word-wrap: break-word;
    }
}