/* Global Reset & Base */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #e5e5e5;
    --text-muted: #a3a3a3;
    --accent-yellow: #FFD700;
    /* Safety Yellow */
    --accent-orange: #FF8C00;
    --accent-green: #00FF94;
    /* Luminous Green */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.highlight-yellow {
    color: var(--accent-yellow);
}

.highlight-green {
    color: var(--accent-green);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: 900;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 10%, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.risk-reversal {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* Hero Visual */
.split-visual {
    display: flex;
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.visual-bad,
.visual-good {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bad {
    background: #2a0000;
    /* Dark Red tint */
    border-right: 1px solid #333;
}

.visual-good {
    background: #001a0a;
    /* Dark Green tint */
}

.overlay-text {
    position: absolute;
    top: 20px;
    font-weight: 900;
    font-size: 1.5rem;
    opacity: 0.5;
}

.ui-dashboard-mockup {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent-green);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.2);
}

.status-indicator {
    color: var(--accent-green);
    font-weight: 700;
    font-family: monospace;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: var(--glass-border);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 50%, var(--bg-dark) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border: var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 148, 0.05);
    border-color: var(--accent-green);
}

.role-badge {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 5px;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    text-align: center;
}

.offer-container {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--accent-yellow);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.05);
}

.value-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
}

.value-list li {
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-anchor {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 700;
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    text-align: center;
    opacity: 0.7;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    font-weight: 900;
    font-size: 1.5rem;
    color: #555;
    text-transform: uppercase;
}

.testimonial {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--text-muted);
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .headline {
        font-size: 2.5rem;
    }

    .split-visual {
        display: none;
        /* Hide visual on mobile for speed/simplicity or verify adjustment */
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}