@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #060810;
    --bg-dark-secondary: #0a0e17;
    --bg-card: rgba(15, 22, 36, 0.8);
    --bg-glass: rgba(10, 15, 28, 0.7);
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --primary-glow: #7C3AED;
    --secondary: #06B6D4;
    --secondary-light: #22D3EE;
    --accent: #F472B6;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    --font-heading: 'Space Grotesk', 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);
    --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.25);
    --shadow-glow-pink: 0 0 40px rgba(244, 114, 182, 0.25);
    
    --glass-bg: rgba(10, 15, 28, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============== MAIN ============== */
main {
    flex: 1;
    width: 100%;
}

/* ============== NAVBAR ============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(3, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), #A78BFA);
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #A78BFA);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glow {
    background: linear-gradient(135deg, var(--secondary), #22D3EE);
    color: var(--bg-dark);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-glow-hover:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.02);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 90% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 40%),
        var(--bg-dark);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    backdrop-filter: var(--glass-blur);
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-feature-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.hero-feature span:not(.hero-feature-icon):not(.hero-feature-label) {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.hero-feature-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Hero Visual - DAW Mockup */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.daw-mockup {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

.daw-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

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

.daw-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.daw-dots span:first-child { background: #FF5F56; }
.daw-dots span:nth-child(2) { background: #FFBD2E; }
.daw-dots span:last-child { background: #27C93F; }

.daw-title {
    font-size: 13px;
    color: var(--text-muted);
}

.daw-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    min-height: 280px;
}

.daw-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daw-track-header {
    height: 20px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 4px;
}

.daw-track-wave {
    height: 60px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(108, 99, 255, 0.3) 20%, 
        rgba(0, 212, 255, 0.3) 40%,
        rgba(108, 99, 255, 0.3) 60%,
        transparent 80%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.daw-track-wave::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, 
        transparent 0px, 
        transparent 4px, 
        rgba(255,255,255,0.1) 4px, 
        rgba(255,255,255,0.1) 5px);
}

.daw-mixer {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
}

.daw-fader {
    width: 24px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(108,99,255,0.3) 100%);
    border-radius: 4px;
    position: relative;
}

.daw-fader::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -4px;
    width: 32px;
    height: 8px;
    background: var(--text-main);
    border-radius: 2px;
}

.daw-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

/* ============== FEATURES SECTION ============== */
.features-section {
    padding: 120px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(108, 99, 255, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: var(--radius);
    margin-bottom: 20px;
}

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

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============== SHOWCASE SECTION ============== */
.showcase-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(108, 99, 255, 0.03) 50%, transparent 100%);
}

.showcase-scroll {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showcase-item-reverse {
    direction: rtl;
}

.showcase-item-reverse .showcase-text {
    direction: ltr;
}

.showcase-text h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.showcase-image {
    position: relative;
}

.showcase-placeholder {
    aspect-ratio: 16/10;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

/* Piano Roll Mock */
.piano-roll-mock {
    display: flex;
    height: 100%;
}

.piano-key {
    width: 40px;
    background: linear-gradient(180deg, #1a1f35 0%, #0d1117 100%);
    border-right: 1px solid var(--glass-border);
}

.piano-notes {
    flex: 1;
    position: relative;
    background: #0d1117;
}

.note {
    position: absolute;
    width: 20px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #A78BFA);
    border-radius: 4px;
    top: 30%;
}

/* Mixer Mock */
.mixer-mock {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    height: 100%;
    padding: 30px;
    background: linear-gradient(180deg, #0d1117 0%, #1a1f35 100%);
}

.mixer-channel {
    width: 40px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
}

.fader {
    position: absolute;
    bottom: 30%;
    left: -6px;
    width: 52px;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

/* Arrange Mock */
.arrange-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    height: 100%;
    background: #0d1117;
}

.arrange-track {
    height: 40px;
    background: rgba(108, 99, 255, 0.15);
    border-radius: 4px;
    position: relative;
}

.arrange-track:first-child {
    background: linear-gradient(90deg, rgba(108, 99, 255, 0.3) 0%, rgba(108, 99, 255, 0.1) 100%);
}

.arrange-track:nth-child(2) {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
}

.arrange-track:last-child {
    background: linear-gradient(90deg, rgba(108, 99, 255, 0.2) 30%, transparent 70%);
}

/* ============== VISUAL SECTION ============== */
.visual-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.waveform-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.waveform-bg canvas {
    width: 100%;
    height: 100%;
}

.visual-title {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.visual-subtitle {
    position: relative;
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============== STATS SECTION ============== */
.stats-section {
    padding: 80px 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-card {
    padding: 32px;
    background: transparent;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(108, 99, 255, 0.05);
}

.stat-icon-glow {
    font-size: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.5));
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============== TESTIMONIALS SECTION ============== */
.testimonials-section {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 99, 255, 0.3);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============== CTA SECTION ============== */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 212, 255, 0.05));
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-section h2 {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section > .container > p {
    position: relative;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
}

.cta-feature span {
    color: var(--success);
    font-weight: 700;
}

.cta-note {
    font-size: 14px !important;
    color: var(--text-dim) !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
}

/* ============== CONTACT PAGE ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: var(--radius);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary);
}

/* ============== DOWNLOAD PAGE ============== */
.download-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
}

.download-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.download-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-text {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 17px;
}

.download-specs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    font-size: 28px;
}

.spec-item strong {
    font-size: 14px;
    color: var(--text-main);
}

.spec-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============== BLOG PAGE ============== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h2 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-link:hover {
    color: var(--secondary);
    margin-left: 4px;
}

/* ============== LEGAL PAGES ============== */
.legal-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
}

.legal-date {
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

/* ============== CARD COMPONENT ============== */
.card {
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
}

/* ============== SECTION TAG ============== */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============== SECTION HEADER ============== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.legal-section li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.legal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ============== FOOTER ============== */
.footer {
    position: relative;
    padding: 80px 0 30px;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(108, 99, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 8px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============== PAGE HEADER ============== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% -20%, rgba(108, 99, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    position: relative;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============== FORMS ============== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text-main);
    backdrop-filter: var(--glass-blur);
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.08);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

/* ============== ALERTS ============== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 15px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* ============== UTILITIES ============== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 48px auto 0;
    }
    
    .showcase-item,
    .showcase-item-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-item-reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============== MOBILE MENU ============== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    body:not(.mobile-open) .nav-links {
        display: none;
    }
    
    body.mobile-open .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(3, 5, 8, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
    }
}

/* ============== PREMIUM ENHANCEMENTS ($100K LOOK) ============== */

/* Hero Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Enhanced DAW Mockup */
.daw-mockup {
    position: relative;
    background: linear-gradient(145deg, #0a0e14 0%, #0d1117 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(108, 99, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.daw-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.5), transparent);
}

.daw-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.daw-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.daw-dots span:first-child { background: #ff5f57; }
.daw-dots span:nth-child(2) { background: #febc2e; }
.daw-dots span:nth-child(3) { background: #28c840; }

.daw-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.daw-menu {
    display: flex;
    gap: 4px;
}

.daw-menu span {
    width: 16px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.daw-content {
    display: flex;
    height: 280px;
    background: #050810;
}

.daw-sidebar {
    width: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 8px;
}

.daw-tools {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daw-tool {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s;
}

.daw-tool.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.4);
}

.daw-main {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.daw-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    height: 60px;
}

.daw-track-header {
    width: 100px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.track-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.track-controls {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.track-controls::before,
.track-controls::after {
    content: '';
    width: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.daw-track-wave {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 16px;
    gap: 4px;
}

.wave-bar {
    width: 8px;
    height: 100%;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px;
    opacity: 0.8;
}

.wave-bar:nth-child(1) { height: 60%; }
.wave-bar:nth-child(2) { height: 80%; }
.wave-bar:nth-child(3) { height: 45%; }
.wave-bar:nth-child(4) { height: 90%; }
.wave-bar:nth-child(5) { height: 55%; }

.daw-mixer {
    width: 120px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-around;
    padding: 12px 8px;
}

.daw-fader {
    width: 20px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fader-track {
    width: 6px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.fader-handle {
    position: absolute;
    width: 24px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    top: 30%;
}

.daw-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(108, 99, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.daw-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(108, 99, 255, 0.03), transparent);
    pointer-events: none;
}

/* Enhanced Buttons */
.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-animated:hover::before {
    left: 100%;
}

.btn-icon {
    margin-right: 8px;
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Section Tag Enhancement */
.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Glass Card Enhancement */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.1);
    transform: translateY(-4px);
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Text Gradient Enhancement */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Selection Style */
::selection {
    background: var(--primary);
    color: white;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .cta-section {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============== ULTRA PREMIUM HERO ($100K) ============== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 99, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 90% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse 40% 25% at 10% 80%, rgba(108, 99, 255, 0.05) 0%, transparent 40%),
        var(--bg-dark);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    animation: orb-float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Badge Premium */
.hero-badge-wrapper {
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--secondary);
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--secondary); }
    50% { transform: scale(1.2); opacity: 0.7; box-shadow: 0 0 20px var(--secondary); }
}

/* Hero Title Premium */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-word {
    display: inline-block;
    margin-right: 12px;
}

.title-word:last-child {
    margin-right: 0;
}

/* Hero Subtitle Premium */
.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 520px;
    line-height: 1.7;
}

.subtitle-accent {
    color: var(--primary);
    font-weight: 600;
}

.subtitle-rest {
    color: var(--text-muted);
}

/* Hero Buttons Premium */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-premium {
    position: relative;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary), #A78BFA);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #A78BFA, var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(108, 99, 255, 0.4),
        0 0 60px rgba(108, 99, 255, 0.2);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-icon-wrapper {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s;
    pointer-events: none;
}

.btn-premium:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

.btn-premium-outline {
    padding: 18px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-premium-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

/* Hero Features Premium */
.hero-features {
    display: flex;
    align-items: center;
    gap: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
}

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

.hero-feature-content {
    display: flex;
    flex-direction: column;
}

.hero-feature-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.hero-feature-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-feature-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Hero Visual Premium DAW */
.hero-visual {
    position: relative;
}

.daw-mockup-container {
    position: relative;
}

.daw-frame {
    background: linear-gradient(165deg, #0d1219 0%, #080c12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(108, 99, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.daw-title-bar {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.daw-window-controls {
    display: flex;
    gap: 8px;
}

.daw-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.daw-control.close { background: #ff5f57; }
.daw-control.minimize { background: #febc2e; }
.daw-control.maximize { background: #28c840; }

.daw-title-text {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.daw-title-menu {
    display: flex;
    gap: 4px;
}

.daw-title-menu span {
    width: 16px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.daw-main-area {
    display: flex;
    height: 320px;
}

.daw-sidebar {
    width: 56px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 14px 10px;
}

.daw-tools {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daw-tool-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.daw-tool-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
}

.daw-tool-btn.active {
    background: var(--primary);
}

.daw-tool-btn.active svg {
    color: white;
}

.daw-arrangement {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.daw-timeline-header {
    display: flex;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.daw-time-marker {
    flex: 1;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.daw-tracks {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.daw-track-obj {
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.daw-track-header-bar {
    width: 100px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-color {
    width: 4px;
    height: 24px;
    border-radius: 2px;
}

.track-name-bar {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-bpm {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    margin-left: auto;
}

.daw-track-clip {
    flex: 1;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.clip-region {
    position: absolute;
    top: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--primary), rgba(108, 99, 255, 0.5));
    border-radius: 6px;
    opacity: 0.8;
}

.daw-inspector {
    width: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.inspector-header {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inspector-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.inspector-knob {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.inspector-fader {
    width: 6px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
}

.inspector-fader::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 10px;
    background: linear-gradient(to bottom, var(--primary), #A78BFA);
    border-radius: 2px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.daw-transport {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.transport-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.transport-btn svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.transport-btn.play svg {
    color: white;
}

.transport-btn.record {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.transport-btn.record svg {
    color: #ef4444;
}

.transport-time {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
}

.daw-reflection {
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 90%;
    height: 40%;
    background: linear-gradient(to top, rgba(108, 99, 255, 0.04), transparent);
    filter: blur(20px);
    pointer-events: none;
}

/* Scroll Indicator Premium */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-move 2s ease-in-out infinite;
}

@keyframes scroll-move {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 700px;
        margin: 50px auto 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-feature-divider {
        display: none;
    }
    
    .daw-main-area {
        height: 250px;
    }
    
    .daw-track-header-bar {
        width: 70px;
    }
    
    .daw-inspector {
        display: none;
    }
}

/* ============== NEW MODERN STYLES ============== */

/* Animated gradient background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

/* Grid pattern overlay */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation-delay: -3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Glass card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Glow button */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow span {
    position: relative;
    z-index: 1;
}

/* Animated border */
.border-animate {
    position: relative;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.border-animate::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: borderGradient 4s ease infinite;
    opacity: 0.5;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Text reveal animation */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.6s ease forwards;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children animations */
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* Pulse glow */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    animation: fadeIn 1s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* Enhanced navbar */
.navbar {
    background: rgba(6, 8, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    background: rgba(6, 8, 16, 0.95);
    box-shadow: var(--shadow);
}

/* Modern input */
input, textarea, select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-main);
    padding: 14px 18px;
    font-size: 15px;
    transition: all var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* Modern card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

/* Premium badge */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

.badge-premium::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Enhanced footer */
.footer {
    background: linear-gradient(180deg, transparent, rgba(6, 8, 16, 0.9));
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

/* CTA section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Feature highlight */
.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-highlight:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.feature-highlight-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    flex-shrink: 0;
}

.feature-highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Blog card modern */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(255,255,255,0.1)' d='M200 0 L400 200 L200 400 L0 200 Z'/%3E%3C/svg%3E");
    background-size: 100px;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Modern form */
.form-modern .form-group {
    margin-bottom: 24px;
}

.form-modern label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-modern input,
.form-modern textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    color: var(--text-main);
    font-size: 15px;
    transition: all var(--transition);
}

.form-modern input:focus,
.form-modern textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    outline: none;
}

.form-modern .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}
