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

:root {
    --navy-deepest: #0A1628;
    --navy-deep: #0D1B2A;
    --navy-mid: #1B2838;
    --navy-light: #2A3F5F;
    --green: #4ECCA3;
    --green-bright: #5FD6B3;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --text-dim: #8B98A8;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-deepest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(78, 204, 163, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 204, 163, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://buydemotracks.com/wp-content/uploads/2026/02/artist-hero-recording-session-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(13, 27, 42, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subhead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card.highlight {
    border-color: var(--green);
    background: rgba(78, 204, 163, 0.1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: var(--navy-deepest);
    box-shadow: 0 4px 15px rgba(78, 204, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 204, 163, 0.4);
}

/* Section Spacing - TIGHTENED */
section {
    padding: 3.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    margin-top: 0.5rem;
}

/* Problem Cards */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2rem;
}

.problem-card {
    background: var(--navy-deep);
    border: 1px solid var(--navy-mid);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.problem-card.bad {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
}

.problem-card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.problem-card.bad .problem-card-number {
    color: #FF6B6B;
}

.problem-card-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.callout-box {
    background: var(--navy-deep);
    border-left: 4px solid var(--green);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    text-align: center;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    background: var(--navy-deep);
    border: 1px solid var(--navy-mid);
    border-radius: 1rem;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: var(--navy-deepest);
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Income Cards */
.income-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2rem;
}

.income-card {
    background: var(--navy-deep);
    border: 2px solid var(--navy-mid);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.income-card.featured {
    border-color: var(--green);
    border-width: 3px;
    background: rgba(78, 204, 163, 0.05);
    transform: scale(1.05);
}

.income-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.income-card.featured .income-amount {
    font-size: 3rem;
}

.income-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.income-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA sections */
.cta-inline {
    text-align: center;
    padding: 2rem 0;
    margin: 1.5rem 0;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(78, 204, 163, 0.05) 0%, transparent 70%);
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Force full-width + hide Divi sidebar/title for this landing page */
body.page-id-29379 #sidebar,
body.page-id-29379 .et_sidebar,
body.page-id-29379 .widget-area,
body.page-id-29379 .et_right_sidebar #sidebar,
body.page-id-29379 .et_left_sidebar #sidebar { display: none !important; }

body.page-id-29379 #left-area { width: 100% !important; float: none !important; }
body.page-id-29379 #main-content .container:before { display: none !important; }

body.page-id-29379 .main_title,
body.page-id-29379 .entry-title,
body.page-id-29379 header.entry-header { display: none !important; }

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
    
    .hero-stat-cards,
    .problem-cards,
    .steps,
    .income-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .income-card.featured {
        transform: scale(1);
    }
    
    .btn {
        width: 100%;
        max-width: 400px;
    }
}
