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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Icon styles - consistent CSS icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
    color: currentColor;
}

/* Medium icons for features */
.feature-icon.icon {
    width: 32px;
    height: 32px;
}

.feature-icon.icon::before,
.feature-icon.icon::after {
    transform: scale(1.6);
}

/* Microphone icon */
.icon-microphone::before {
    content: '';
    width: 8px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 4px 4px 0 0;
    position: absolute;
    top: 2px;
}

.icon-microphone::after {
    content: '';
    width: 2px;
    height: 6px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

/* Music/Audio icon */
.icon-music::before {
    content: '';
    width: 4px;
    height: 12px;
    background: currentColor;
    position: absolute;
    right: 4px;
    top: 2px;
    border-radius: 2px;
}

.icon-music::after {
    content: '';
    width: 8px;
    height: 6px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    bottom: 2px;
}

/* Lightning/Speed icon */
.icon-lightning::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    left: 2px;
    top: 2px;
}

.icon-lightning::after {
    content: '';
    width: 0;
    height: 0;
    border-right: 6px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    right: 2px;
    bottom: 2px;
}

/* Folder icon */
.icon-folder::before {
    content: '';
    width: 16px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
    position: absolute;
    bottom: 2px;
}

.icon-folder::after {
    content: '';
    width: 8px;
    height: 2px;
    background: currentColor;
    position: absolute;
    top: 4px;
    left: 2px;
    border-radius: 1px 1px 0 0;
}

/* Cloud icon */
.icon-cloud::before {
    content: '';
    width: 14px;
    height: 8px;
    background: currentColor;
    border-radius: 4px;
    position: absolute;
    bottom: 4px;
}

.icon-cloud::after {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 4px;
}

/* Chart/Analytics icon */
.icon-chart::before {
    content: '';
    width: 4px;
    height: 8px;
    background: currentColor;
    position: absolute;
    left: 2px;
    bottom: 4px;
    border-radius: 1px;
}

.icon-chart::after {
    content: '';
    width: 4px;
    height: 12px;
    background: currentColor;
    position: absolute;
    right: 2px;
    bottom: 4px;
    border-radius: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e1e5e9;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

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

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: 2px solid;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #000;
    color: white !important;
    border-color: #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #e1e5e9;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #333;
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 16px;
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    max-width: 500px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

/* 3D Marquee Styles */
.marquee-3d {
    width: 800px;
    height: 1000px;
    perspective: 2000px;
    overflow: hidden;
    border-radius: 16px;
}

.marquee-container {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg);
}

.marquee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    height: 100%;
    position: relative;
}

.marquee-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-column[data-direction="up"] {
    animation-name: marqueeUp;
}

.marquee-column[data-direction="down"] {
    animation-name: marqueeDown;
    animation-duration: 15s;
}

.marquee-item {
    min-height: 160px;
    position: relative;
}

.feature-preview {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Specific feature preview styling */
.microphone-preview { background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%); }
.waveform-preview { background: linear-gradient(135deg, #4ecdc4 0%, #6bd4c7 100%); }
.noise-preview { background: linear-gradient(135deg, #45b7d1 0%, #64c5d4 100%); }
.music-preview { background: linear-gradient(135deg, #f093fb 0%, #f5a7fb 100%); }
.process-preview { background: linear-gradient(135deg, #feca57 0%, #ffd968 100%); }
.cloud-preview { background: linear-gradient(135deg, #a8e6cf 0%, #b8ebd5 100%); }
.edit-preview { background: linear-gradient(135deg, #ff9a9e 0%, #ffb3b6 100%); }
.quality-preview { background: linear-gradient(135deg, #d299c2 0%, #dba8c5 100%); }
.time-preview { background: linear-gradient(135deg, #fdcb6e 0%, #fdd57a 100%); }
.export-preview { background: linear-gradient(135deg, #6c5ce7 0%, #8b7ced 100%); }
.ai-preview { background: linear-gradient(135deg, #fd79a8 0%, #fd8fb3 100%); }
.studio-preview { background: linear-gradient(135deg, #00b894 0%, #1dd1a1 100%); }

@keyframes marqueeUp {
    0% { transform: translateY(100px); }
    100% { transform: translateY(-100px); }
}

@keyframes marqueeDown {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100px); }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Hero image styles removed - no longer needed */

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

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

.feature-card {
    padding: 32px;
    background: #fafafa;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #333;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Modern Pricing Section - shadcn style */
.pricing-modern {
    padding: 100px 0;
    background: hsl(0 0% 98%);
}

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

.pricing-header-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: hsl(0 0% 9%);
    letter-spacing: -0.025em;
}

.pricing-subtitle {
    font-size: 20px;
    color: hsl(0 0% 45%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card-modern {
    background: hsl(0 0% 100%);
    border: 1px solid hsl(0 0% 90%);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.pricing-card-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.featured-plan {
    border: 2px solid hsl(0 0% 9%);
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.featured-plan:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(0 0% 9%);
    color: hsl(0 0% 98%);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

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

.plan-info {
    margin-bottom: 24px;
}

.plan-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: hsl(0 0% 9%);
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.plan-description {
    font-size: 14px;
    color: hsl(0 0% 45%);
    margin: 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: hsl(0 0% 45%);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: hsl(0 0% 9%);
    letter-spacing: -0.05em;
}

.period {
    font-size: 16px;
    color: hsl(0 0% 45%);
    font-weight: 500;
}

.custom-price {
    font-size: 32px;
    font-weight: 700;
    color: hsl(0 0% 9%);
}

.pricing-card-content {
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: hsl(0 0% 20%);
    line-height: 1.5;
}

.feature-check {
    flex-shrink: 0;
    margin-top: 2px;
    color: hsl(142 71% 45%);
}

.pricing-card-footer {
    margin-top: auto;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid hsl(0 0% 90%);
    background: hsl(0 0% 100%);
    color: hsl(0 0% 9%);
}

.btn-outline:hover {
    border-color: hsl(0 0% 9%);
    background: hsl(0 0% 98%);
    color: hsl(0 0% 9%);
    text-decoration: none;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 64px;
    width: auto;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a:not(.btn-primary):not(.btn-secondary) {
        display: none;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 16px;
    }
    
    .marquee-3d {
        width: 600px;
        height: 600px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-plan {
        transform: none;
    }
    
    .pricing-card-modern {
        padding: 24px;
    }
    
    .pricing-header-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}