/* Import Spotify-style Clean Sans-serif and SoundCloud-style Heavy Display Font */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-base: #020202;         /* Pitch Black */
    --bg-card: #121212;         /* Spotify Card Dark Gray */
    --bg-card-hover: #1f1f1f;   /* Spotify Card Hover Gray */
    --text-main: #ffffff;       /* Pure White */
    --text-muted: #a7a7a7;      /* Spotify Muted Gray */
    --accent-orange: #ff5500;   /* SoundCloud Vivid Orange */
    --accent-purple: #8a2be2;   /* Seven Sky Purple */
    --border-glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.5;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography (Headers Reduced by 30% for cleaner presentation) */
h1, h2, .massive-title {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.0rem, 4.2vw, 3.4rem); /* Reduced 30% */
    margin-bottom: 1.5rem;
}

h2.section-title {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem); /* Reduced 30% */
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.subsection-title {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-base);
}

.btn-primary:hover {
    transform: scale(1.04);
}

.btn-secondary {
    background: #232323;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: #2a2a2a;
    transform: scale(1.04);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
    margin-top: 1.2rem;
    width: 100%;
    border-radius: 8px;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 4rem;
    background: var(--bg-base);
    overflow: hidden; /* Keeps background blur inside */
    z-index: 1; /* Sets root stacking order for child elements */
}

/* Music Illustration Background bound to <div class="hero-bg"> */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Bright purple ambient glow blended with a high-contrast music/sound illustration */
    background-image: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.45) 0%, transparent 60%),
                     url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=1200&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    filter: blur(35px); /* Softened studio image to create an awesome music glow background */
    opacity: 0.35; /* Perfectly balanced for dark-mode readability */
    z-index: -1; /* Placed strictly behind content so links and text stay accessible */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2; /* Keeps text completely above the background layer */
    max-width: 800px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-badges svg {
    width: 15px;
    height: 15px;
    color: var(--accent-orange);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.alt-bg {
    background-color: #080808;
}

/* Grids */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-glass);
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Featured / Best Value Badge Adjustments */
.featured-card {
    border: 1px solid rgba(138, 43, 226, 0.3);
    background: linear-gradient(180deg, #181225 0%, #121212 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-orange);
    color: white;
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

/* Small Sub-Genre Cards */
.small-card {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.small-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

/* Lead Magnet Banner */
.lead-magnet {
    margin-top: 4rem;
    background: linear-gradient(90deg, #121212, #1d0f30);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.free-badge {
    display: inline-block;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.lead-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lead-content p {
    color: var(--text-muted);
}

/* Features Comparison Section (Bullet Stripping & Custom SVG Icons) */
.feature-list h3 {
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.bad-list, .good-list {
    list-style: none !important;
    list-style-image: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.bad-list li, .good-list li {
    list-style: none !important;
    list-style-type: none !important;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-left: 2.2rem;
    position: relative;
}

.bad-list li { color: var(--text-muted); }
.good-list li { color: var(--text-main); font-weight: 600; }

/* Custom Red Cross SVG Icon */
.bad-list li::before {
    content: "";
    position: absolute;
    left: 0; 
    top: 50%; 
    transform: translateY(-50%);
    width: 18px; 
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Custom Green Checkmark SVG Icon */
.good-list li::before {
    content: "";
    position: absolute;
    left: 0; 
    top: 50%; 
    transform: translateY(-50%);
    width: 20px; 
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Audience Pills */
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.pill {
    padding: 0.8rem 1.6rem;
    border-radius: 99px;
    background: var(--bg-card);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 0;
}

.faq-item summary {
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-content {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer styling */
.footer {
    padding: 4rem 0 2rem;
    background: #000000;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.brand {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    text-align: center;
    color: #555555;
    font-size: 0.8rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Layout Breakpoints */
@media (max-width: 900px) {
    .cta-group { justify-content: center; }
    .trust-badges { justify-content: center; }
    .lead-magnet { flex-direction: column; text-align: center; }
}