/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --accent-primary: #7c5cff;
    --accent-secondary: #ff6b9d;
    --accent-tertiary: #00d4aa;
    --accent-glow: rgba(124, 92, 255, 0.4);
    
    --gradient-hero: linear-gradient(135deg, #7c5cff 0%, #ff6b9d 50%, #ffb86c 100%);
    --gradient-card: linear-gradient(145deg, rgba(124, 92, 255, 0.1) 0%, rgba(255, 107, 157, 0.05) 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(124, 92, 255, 0.3);
    
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Syne', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Interactive Grid Background ===== */
#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.08) 0%, transparent 50%);
    transition: background 0.3s ease;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    overflow: visible;
}

em {
    font-family: var(--font-display);
    font-style: italic;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: #6a4ae8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(124, 92, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-glow {
    box-shadow: 0 0 30px var(--accent-glow);
    background: var(--accent-primary);
    color: white;
}

.btn-glow:hover {
    box-shadow: 0 0 40px var(--accent-glow);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 60px 100px;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-tertiary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.accent {
    font-family: var(--font-display);
    font-style: italic;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
}

.play-icon {
    font-size: 0.8rem;
}

.call-icon {
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

/* DAW Mockup */
.daw-mockup {
    width: 100%;
    max-width: 560px;
    perspective: 1000px;
}

.daw-window {
    background: #1a1a24;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(124, 92, 255, 0.1);
}

.daw-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #12121a;
    border-bottom: 1px solid var(--border-color);
}

.daw-dots {
    display: flex;
    gap: 6px;
}

.daw-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.daw-dots span:nth-child(1) { background: #ff5f57; }
.daw-dots span:nth-child(2) { background: #ffbd2e; }
.daw-dots span:nth-child(3) { background: #28ca41; }

.daw-transport {
    display: flex;
    gap: 4px;
    margin-left: 20px;
}

.transport-btn {
    width: 28px;
    height: 28px;
    background: #252530;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-btn.play {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.daw-time {
    margin-left: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--accent-tertiary);
    background: #0a0a0f;
    padding: 4px 12px;
    border-radius: 4px;
}

.daw-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px 16px;
    background: #16161f;
    border-bottom: 1px solid var(--border-color);
}

.toolbar-item {
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toolbar-item.active {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 107, 157, 0.1));
    color: var(--accent-primary);
    border: 1px solid var(--border-accent);
}

.toolbar-item svg {
    width: 14px;
    height: 14px;
}

.daw-content {
    display: flex;
    min-height: 200px;
}

.daw-sidebar {
    width: 90px;
    background: #12121a;
    border-right: 1px solid var(--border-color);
    padding: 8px 0;
}

.track-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.track-label.ai-track {
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.15), transparent);
    color: var(--text-primary);
    position: relative;
}

.label-color {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ai-badge {
    font-size: 0.6rem;
    color: var(--accent-primary);
    background: rgba(124, 92, 255, 0.2);
    padding: 2px 4px;
    border-radius: 3px;
    margin-right: 4px;
}

.daw-timeline {
    flex: 1;
    position: relative;
    background: #1a1a24;
}

.timeline-grid {
    display: flex;
    height: 24px;
    border-bottom: 1px solid var(--border-color);
    background: #12121a;
}

.grid-marker {
    flex: 1;
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 4px 8px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.track-lane {
    height: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding: 4px 8px;
    position: relative;
}

.track-lane.ai-lane {
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.08), rgba(255, 107, 157, 0.05));
}

.audio-clip {
    height: 100%;
    border-radius: 4px;
    position: relative;
}

.audio-clip.drums {
    width: 95%;
    background: linear-gradient(90deg, #4a9eff 0%, #4a9eff 100%);
    opacity: 0.7;
}

.audio-clip.bass {
    width: 90%;
    margin-left: 5%;
    background: linear-gradient(90deg, #ff6b9d 0%, #ff6b9d 100%);
    opacity: 0.7;
}

.audio-clip.synth {
    width: 70%;
    margin-left: 15%;
    background: linear-gradient(90deg, #ffb86c 0%, #ffb86c 100%);
    opacity: 0.7;
}

.audio-clip.keys {
    width: 60%;
    margin-left: 20%;
    background: linear-gradient(90deg, #00d4aa 0%, #00d4aa 100%);
    opacity: 0.7;
}

.audio-clip.topline {
    width: 75%;
    margin-left: 10%;
    background: linear-gradient(135deg, #7c5cff 0%, #ff6b9d 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.4);
}

.topline-wave {
    flex: 1;
    height: 16px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin-right: 8px;
}

.generating-badge {
    font-size: 0.55rem;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.playhead {
    position: absolute;
    top: 0;
    left: 35%;
    width: 2px;
    height: 100%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.playhead::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.daw-panel {
    padding: 12px 16px;
    background: #12121a;
    border-top: 1px solid var(--border-color);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.panel-icon {
    color: var(--accent-primary);
}

.panel-options {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.option-pill {
    padding: 6px 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: #1a1a24;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    cursor: pointer;
}

.option-pill.active {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 107, 157, 0.1));
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.generate-btn {
    width: 100%;
    padding: 10px;
    background: var(--gradient-hero);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ===== Section Styles ===== */
section {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Features Section ===== */
.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(22, 22, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-medium);
    overflow: visible;
}

.feature-card:hover {
    background: rgba(28, 28, 40, 0.6);
    border-color: rgba(124, 92, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 92, 255, 0.1);
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background: rgba(124, 92, 255, 0.2);
    border-color: rgba(124, 92, 255, 0.4);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    line-height: 1.5;
    overflow: visible;
    display: block;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Feature Visual */
.feature-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
}

.visual-track {
    flex: 1;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.visual-track.highlight {
    background: linear-gradient(145deg, rgba(124, 92, 255, 0.2), rgba(255, 107, 157, 0.1));
    border: 1px solid var(--border-accent);
}

.track-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.track-wave {
    height: 40px;
    background: linear-gradient(90deg, 
        var(--accent-primary) 0%, 
        var(--accent-secondary) 50%, 
        var(--accent-tertiary) 100%
    );
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 Q5 5 10 20 T20 20 T30 20 T40 20 T50 20 T60 20 T70 20 T80 20 T90 20 T100 20' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 Q5 5 10 20 T20 20 T30 20 T40 20 T50 20 T60 20 T70 20 T80 20 T90 20 T100 20' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    border-radius: var(--radius-sm);
    opacity: 0.8;
}

.track-wave.instrumental {
    background: var(--text-muted);
}

.track-wave.topline {
    background: var(--accent-primary);
}

.track-wave.combined {
    background: var(--gradient-hero);
    opacity: 1;
}

.visual-plus, .visual-equals {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ===== For Who Section ===== */
.for-who {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(18, 18, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 100px 60px;
}

.audience-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.audience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audience-card.reverse {
    direction: rtl;
}

.audience-card.reverse > * {
    direction: ltr;
}

.audience-image {
    height: 350px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
}

.audience-image-new {
    height: 280px;
    border-radius: var(--radius-lg);
    background: rgba(22, 22, 31, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.audience-card:hover .audience-image-new {
    background: rgba(28, 28, 40, 0.5);
    border-color: rgba(124, 92, 255, 0.2);
}

.audience-image-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.1) 0%, transparent 70%);
}

.audience-icon {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 1;
}

.audience-icon svg {
    width: 100%;
    height: 100%;
}

.audience-image.indie {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='350' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%237c5cff' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='%23ff6b9d' stop-opacity='0.2'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='%230a0a0f' width='400' height='350'/%3E%3Ccircle cx='200' cy='175' r='80' fill='url(%23g1)'/%3E%3Ccircle cx='200' cy='175' r='40' fill='none' stroke='%237c5cff' stroke-width='2' opacity='0.5'/%3E%3Cpath d='M180 155 L180 195 L210 175 Z' fill='%23ffffff' opacity='0.8'/%3E%3C/svg%3E");
}

.audience-image.studio {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='350' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%230a0a0f' width='400' height='350'/%3E%3Crect x='50' y='100' width='300' height='150' rx='10' fill='%23161620'/%3E%3Crect x='70' y='120' width='80' height='50' rx='4' fill='%231c1c28'/%3E%3Crect x='160' y='120' width='80' height='50' rx='4' fill='%231c1c28'/%3E%3Crect x='250' y='120' width='80' height='50' rx='4' fill='%231c1c28'/%3E%3Crect x='70' y='190' width='260' height='40' rx='4' fill='%231c1c28'/%3E%3Ccircle cx='90' cy='210' r='8' fill='%237c5cff'/%3E%3Ccircle cx='120' cy='210' r='8' fill='%23ff6b9d'/%3E%3Ccircle cx='150' cy='210' r='8' fill='%2300d4aa'/%3E%3C/svg%3E");
}

.audience-image.label {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a20 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='350' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%230a0a0f' width='400' height='350'/%3E%3Cpath d='M100 250 L100 100 L150 80 L200 120 L250 70 L300 110 L300 250' fill='none' stroke='%237c5cff' stroke-width='3'/%3E%3Cpath d='M100 250 L100 150 L150 130 L200 160 L250 120 L300 150 L300 250' fill='rgba(124,92,255,0.2)'/%3E%3Ccircle cx='100' cy='100' r='5' fill='%23ff6b9d'/%3E%3Ccircle cx='150' cy='80' r='5' fill='%23ff6b9d'/%3E%3Ccircle cx='200' cy='120' r='5' fill='%23ff6b9d'/%3E%3Ccircle cx='250' cy='70' r='5' fill='%23ff6b9d'/%3E%3Ccircle cx='300' cy='110' r='5' fill='%23ff6b9d'/%3E%3C/svg%3E");
}

.audience-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.audience-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.audience-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-benefits li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.audience-benefits li::first-letter {
    color: var(--accent-primary);
}

/* ===== Trending Section ===== */
.trending {
    max-width: 1200px;
    margin: 0 auto;
}

.trends-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trend-card {
    background: rgba(22, 22, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-medium);
}

.trend-card:hover {
    background: rgba(28, 28, 40, 0.6);
    border-color: rgba(124, 92, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.trend-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trend-badge.hot {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.trend-badge.rising {
    background: rgba(124, 92, 255, 0.2);
    color: var(--accent-primary);
}

.trend-badge.steady {
    background: rgba(0, 212, 170, 0.2);
    color: var(--accent-tertiary);
}

.trend-genre {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trend-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.trend-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.trend-meter {
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.meter-fill {
    height: 100%;
    background: var(--gradient-hero);
    border-radius: 3px;
    transition: width 1s ease;
}

.trend-stat {
    font-size: 0.8rem;
    color: var(--accent-tertiary);
    font-weight: 500;
}

/* ===== Pricing Section ===== */
.pricing {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-cards.pricing-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pricing-card {
    background: rgba(22, 22, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    background: rgba(28, 28, 40, 0.6);
    border-color: rgba(124, 92, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-simple .pricing-card {
    padding: 60px 40px;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.pricing-icon-svg {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.pricing-icon-svg svg {
    width: 100%;
    height: 100%;
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(124, 92, 255, 0.1) 100%);
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-hero);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-simple .pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-simple .pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-simple .pricing-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== Book a Call Section ===== */
.book-call {
    max-width: 1200px;
    margin: 0 auto;
}

.book-call-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: rgba(18, 18, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 80px;
}

.book-call-text .section-tag {
    margin-bottom: 16px;
}

.book-call-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.book-call-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.call-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.call-benefits li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.book-call-visual {
    display: flex;
    justify-content: center;
}

.call-card {
    background: rgba(22, 22, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 320px;
}

.call-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.call-card-header .avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.call-card-header div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.call-card-header strong {
    font-size: 1rem;
}

.call-card-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.call-card-times {
    display: flex;
    gap: 12px;
}

.time-slot {
    flex: 1;
    padding: 12px 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.time-slot:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.time-slot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* ===== Waitlist Section ===== */
.waitlist {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content {
    background: rgba(22, 22, 31, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.waitlist-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-notes span {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-notes span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-notes span:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-notes span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.floating-notes span:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.waitlist-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
    position: relative;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.waitlist-form input:focus {
    border-color: var(--accent-primary);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 80px 60px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--text-primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 40px 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .feature-visual {
        flex-direction: column;
    }
    
    .audience-card,
    .audience-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .trends-container,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .book-call-content {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        text-align: center;
    }
    
    .call-benefits {
        align-items: center;
    }
    
    .book-call-text .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta .btn-ghost {
        display: none;
    }
    
    .for-who {
        padding: 60px 24px;
    }
    
    .book-call-content {
        padding: 40px 24px;
    }
    
    .call-card-times {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-content {
        padding: 60px 30px;
    }
}

