/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Electrolize', sans-serif;
    background-color: #000000;
    color: #E6E6E6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: rgba(57, 255, 20, 0.25);
    color: #E6E6E6;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    background: #39FF14;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    font-family: 'Electrolize', sans-serif;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    position: absolute;
    top: 6px;
    left: 6px;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Performance optimizations and reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scanlines,
    .audio-showcase::before,
    .alpha-label,
    .pricing-card,
    .pricing-card::before {
        animation: none !important;
    }
    
    #hero-canvas {
        opacity: 0.3 !important;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

/* All major animations disabled for performance */

/* Reduce animations on mobile and less powerful devices */
@media (max-width: 768px), (hover: none) {
    #hero-canvas {
        opacity: 1;
    }
    
    .scanlines {
        animation-duration: 20s;
        opacity: 0.3;
    }
    
    .audio-showcase::before,
    .pricing-card::before {
        animation-duration: 10s;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
    color: #39FF14;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #9aa39a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #E6E6E6;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Electrolize', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background-color: #1a1a1a;
    border-color: #39FF14;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.btn-primary {
    background-color: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    border-color: rgba(57, 255, 20, 0.5);
}

.btn-primary:hover {
    background-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: #39FF14;
    border-color: rgba(57, 255, 20, 0.5);
}

.btn-outline:hover {
    background-color: rgba(57, 255, 20, 0.1);
    border-color: #39FF14;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Scanlines background effect - completely disabled for performance */
.scanlines {
    display: none;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 12px; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 100%);
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
    color: #39FF14;
    font-size: 1.55rem;
    text-decoration: none;
}

.logo-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.alpha-label {
    background-color: transparent;
    color: #ff4444;
    border: 1px solid #ff4444;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.4rem;
    font-weight: bold;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    letter-spacing: 0.05em;
    cursor: help;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
    /* animation: alphaGlow 2s ease-in-out infinite; */
}

@keyframes alphaGlow {
    0%, 100% { 
        box-shadow: 0 0 2px rgba(255, 68, 68, 0.4);
        opacity: 0.9;
    }
    50% { 
        box-shadow: 0 0 4px rgba(255, 68, 68, 0.6);
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #E6E6E6;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #39FF14;
}

.nav-link.active {
    color: #39FF14;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.pricing-link {
    display: inline-block;
    position: relative;
    /* No padding - keep natural text height so it aligns with other nav links */
}

.pricing-strikethrough {
    text-decoration: line-through;
    text-decoration-color: #E6E6E6;
    text-decoration-thickness: 1px;
}

.pricing-free-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: #39FF14;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%; /* Position directly below the text, extending beyond link height */
    margin-top: 0.05rem; /* Small gap between strikethrough and FREE */
    white-space: nowrap;
    animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.85;
        text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
    }
}

/* Main content */
.main {
    padding-top: 80px;
}

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

.hero .container {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Three.js canvas background */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b9b0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-philosophy {
    font-size: 1.1rem;
    color: #9aa39a;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-philosophy strong {
    color: #39FF14;
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem auto 0;
    max-width: 600px;
}

/* Audio Showcase */
.audio-showcase {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 2rem 0 2.5rem 0;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.audio-showcase::before {
    display: none;
}

@keyframes shimmerBorder {
    0%, 100% { 
        background-position: -300% 0;
        opacity: 0.6;
    }
    50% { 
        background-position: 300% 0;
        opacity: 1;
    }
}

.showcase-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.showcase-title {
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #39FF14;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}



.showcase-note {
    color: #b8c4b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    font-style: italic;
    margin: 1rem 0;
    opacity: 0.95;
}

.audio-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.audio-player {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
}

.audio-player:hover {
    border-color: rgba(57, 255, 20, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.1);
}

.player-info {
    margin-bottom: 0.4rem;
}

.track-title {
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #39FF14;
    margin-bottom: 0.2rem;
}

/* Hide native controls – we render a fully custom UI */
.audio-control {
    display: none !important;
}

/* Custom audio controls styling */
/* (kept for safety if UA ignores display: none) */
.audio-control::-webkit-media-controls-panel { background-color: #000000; border-radius: 6px; }

.audio-control::-webkit-media-controls-play-button,
.audio-control::-webkit-media-controls-pause-button {
    background-color: transparent;
    border: 2px solid #39FF14;
    border-radius: 2px;
    color: #39FF14;
    filter: none;
    box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.5);
    transition: all 0.2s ease;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.audio-control::-webkit-media-controls-play-button:hover,
.audio-control::-webkit-media-controls-pause-button:hover {
    background-color: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3), inset 0 0 0 1px #39FF14;
    border-color: #39FF14;
}

.audio-control::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.audio-control::-webkit-media-controls-current-time-display,
.audio-control::-webkit-media-controls-time-remaining-display {
    color: #39FF14;
    font-family: 'JetBrains Mono', monospace;
}

/*
   Ensure native controls render with light icons on a dark background across browsers.
   Rely on the browser's dark color-scheme for icons and minimal accent tweaks, then
   de-emphasize heavy custom styling that could hide icons in some environments.
*/
.audio-control {
    color-scheme: dark;
    accent-color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

/* Keep enclosure dark while letting the UA choose icon colors for dark mode */
.audio-control::-webkit-media-controls-enclosure {
    background-color: #0a0a0a;
    border-radius: 6px;
}

/* Relax aggressive styling so icons are not suppressed on some engines */
.audio-control::-webkit-media-controls-play-button,
.audio-control::-webkit-media-controls-pause-button { border: none; box-shadow: none; background: transparent; filter: none !important; }

.audio-control::-webkit-media-controls-mute-button,
.audio-control::-webkit-media-controls-volume-slider,
.audio-control::-webkit-media-controls-timeline { filter: none !important; }

/* ------------------ Custom Audio UI ------------------ */
.custom-audio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    transition: border-color 0.2s ease;
    min-height: 34px;
}

.custom-audio:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.ca-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    background: transparent;
    color: #39FF14;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
    align-self: center;
}

.ca-btn:hover { 
    background: rgba(57, 255, 20, 0.1);
    border-color: #39FF14;
}
.ca-btn:active { transform: scale(0.95); }
.ca-btn svg { width: 14px; height: 14px; fill: #39FF14; }

.ca-time {
    min-width: 90px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #39FF14;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.9;
    line-height: 1;
    align-self: center;
}

.ca-seek {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    flex: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    align-self: center;
}

.ca-seek:focus { outline: none; }

/* WebKit slider */
.ca-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #39FF14;
    border: none;
    box-shadow: 0 0 8px rgba(57,255,20,0.5);
    cursor: pointer;
    margin-top: -4px;
}

.ca-seek::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(90deg, #39FF14 var(--ca-progress, 0%), #1a1a1a var(--ca-progress, 0%));
    border-radius: 2px;
    border: none;
}

/* Firefox */
.ca-seek::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #39FF14;
    border: none;
    box-shadow: 0 0 8px rgba(57,255,20,0.5);
    cursor: pointer;
}
.ca-seek::-moz-range-track {
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
}

/* Container spacing alignment in cards */
.audio-control-container .custom-audio,
.audio-player .custom-audio { margin-top: 0.15rem; }

.showcase-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    text-align: center;
}

.badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.badge-text {
    color: #39FF14;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features section */
.features {
    padding: 3rem 0;
    background-color: rgba(10, 10, 10, 0.3);
}

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

.feature-card {
    background-color: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(57, 255, 20, 0.3);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: 12px;
    z-index: -1;
}

@keyframes featurePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.1); }
    50% { box-shadow: 0 0 35px rgba(57, 255, 20, 0.2); }
}

@keyframes featureBorderGlow {
    0%, 100% { background-position: 0% 0%; opacity: 0.5; }
    50% { background-position: 100% 100%; opacity: 0.8; }
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #39FF14;
}

.feature-description {
    color: #9aa39a;
    line-height: 1.6;
}

/* Coming Soon Feature */
.feature-card.coming-soon {
    opacity: 0.8;
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #39FF14, #7dff6b);
    color: #000000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Demo section */
.demo {
    padding: 3rem 0 6rem 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.demo-item {
    background-color: rgba(10, 10, 10, 0.25);
    border: 2px solid rgba(57, 255, 20, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.demo-item:hover {
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
}

.demo-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #39FF14;
}

.demo-prompt {
    color: #9aa39a;
    font-style: italic;
    margin-bottom: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.audio-control-container {
    margin-top: auto;
    margin-bottom: 0.15rem;
}

.audio-placeholder {
    position: relative;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.waveform {
    display: flex;
    align-items: end;
    gap: 2px;
    flex: 1;
    height: 40px;
}

.wave-bar {
    background-color: #39FF14;
    width: 3px;
    border-radius: 1px;
    transition: height 0.3s ease;
    opacity: 0.7;
}

.play-button {
    color: #39FF14;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button:hover {
    color: #7dff6b;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}


/* CTA section */
.cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #9aa39a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.pricing-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* Ensure centering works consistently */
    text-align: center;
    width: 100%;
}

.pricing-card {
    background-color: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* animation: pricingPulse 4s ease-in-out infinite; */
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    /* Fallback styles in case animations are stripped */
    margin: 0 auto;
}

.pricing-card::before {
    display: none;
}

/* Hover effects disabled for performance */

@keyframes pricingPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(57, 255, 20, 0.1); }
    50% { box-shadow: 0 0 50px rgba(57, 255, 20, 0.2); }
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 0%; opacity: 0.5; }
    50% { background-position: 100% 100%; opacity: 0.8; }
}

.pricing-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.9rem;
    color: #39FF14;
    margin-bottom: 0.5rem;
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: #39FF14;
    font-family: 'JetBrains Mono', monospace;
}

.price-amount {
    font-size: 3rem;
    color: #39FF14;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
}

.price-period {
    font-size: 1rem;
    color: #9aa39a;
    font-family: 'JetBrains Mono', monospace;
}

.pricing-features {
    margin-bottom: 1.5rem;
    text-align: left;
    display: inline-block;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.feature-icon {
    font-size: 1rem;
    color: #39FF14;
    font-weight: bold;
    min-width: 1rem;
    text-align: center;
}

.feature-text {
    color: #E6E6E6;
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-note {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    text-align: left;
}

.alpha-notice {
    color: #E6E6E6;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.alpha-notice strong {
    color: #ff4444;
    font-weight: bold;
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-card {
        max-width: 400px;
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-title {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #9aa39a;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #39FF14;
    background-color: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.footer-made-in {
    color: #9aa39a;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-copyright {
    color: #666666;
    font-size: 0.85rem;
}

.footer-link {
    color: #9aa39a;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #39FF14;
}

.pixelated-heart {
    color: #ff1744;
    font-family: 'Black Ops One', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #39FF14;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Medium screens - tighter navigation */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-brand {
        font-size: 1.55rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
    }
}

/* Responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        position: relative;
    }
    
    .footer-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-left {
        flex: 0 0 auto;
    }
    
    .footer-right {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links .btn {
        margin-top: 1rem;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .hero .container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .demo-item {
        padding: 0.75rem;
        min-height: 100px;
    }
    
    .demo-prompt {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-left {
        order: 1;
        align-items: center;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        order: 3;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content {
        max-width: 90%;
        margin: 2rem auto 0;
    }
    
    .audio-showcase {
        padding: 1rem;
        margin: 1.5rem 0 1.5rem 0;
        min-width: unset;
        max-width: none;
        width: 100%;
    }
    
    .audio-players {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .audio-player {
        min-height: 75px;
        padding: 0.7rem;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .showcase-subtitle {
        font-size: 0.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .track-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-content {
        max-width: 85%;
        margin: 1.5rem auto 0;
    }
    
    .hero-philosophy {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Company Page Styles */
.company-hero {
    min-height: 50vh;
    padding: 8rem 0 4rem;
}

.company-content {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.content-block {
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B8B8B8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: #E6E6E6;
    font-weight: 500;
}

.cta-block {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(57, 255, 20, 0.3);
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #39FF14;
    border: 2px solid #39FF14;
}

.btn-secondary:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: #4DFF28;
    color: #4DFF28;
}

@media (max-width: 768px) {
    .company-hero {
        min-height: 40vh;
        padding: 6rem 0 3rem;
    }
    
    .company-content {
        padding: 2rem 0;
    }
    
    .content-block {
        margin-bottom: 3rem;
    }
    
    .content-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}
