/* =========================================
   1. FONTS & VARIABLES
========================================= */
@font-face { font-family: 'HeliosExt'; src: url('fonts/HeliosExt.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'HeliosExt'; src: url('fonts/HeliosExt-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'HeliosExt'; src: url('fonts/HeliosExt-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'HeliosExt'; src: url('fonts/HeliosExt-Bold-Italic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-grey: #cccccc;
    --purple-top: #5424bb;
    --brand-gradient: linear-gradient(90deg, #000000, #5424bb, #c59dff);
    --font-main: "HeliosExt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================
   2. BASE STYLES & LAYOUT
========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important; 
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative; 
    overflow-x: hidden; 
}

.page-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* --- ANIMATED BACKGROUNDS --- */
body::before {
    content: ""; position: absolute; top: -10%; left: 0; width: 100%; height: 75vh;
    background-image: radial-gradient(ellipse at 30% 40%, var(--purple-top) 0%, transparent 55%),
                      radial-gradient(ellipse at 70% 60%, #c59dff 0%, transparent 50%),
                      radial-gradient(circle at 50% 30%, #2b135c 0%, transparent 60%);
    background-size: 100% 100%; filter: blur(80px); opacity: 0.65; z-index: -1;
    animation: panAbstract 15s linear infinite;
}

body::after {
    content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9999; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.text-gold {
    background: linear-gradient(-45deg, #d4ae0c 20%, #ffe67a 40%, #feeb96 50%, #ffe67a 60%, #d4ae0c 80%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block; font-weight: 700; animation: goldShine 5s linear infinite;
}

/* =========================================
   3. HERO & TYPOGRAPHY
========================================= */
.hero {
    padding: 60px 20px 40px; text-align: center; min-height: 50vh; 
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.top-subtitle { font-size: clamp(0.8rem, 2vw, 1rem); letter-spacing: 0.5px; margin-bottom: 30px; color: #e0e0e0; }
.hero h1 { font-size: clamp(3.5rem, 8vw, 5.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; will-change: transform; transform-style: preserve-3d; }
.hero-desc { font-size: clamp(1rem, 2.5vw, 1.25rem); margin-bottom: 40px; color: #f1f1f1; }

.section-title { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 400; margin: 80px 20px 40px; padding-bottom: 10px; text-align: left; }
.section-title strong { font-weight: 700; }
.section-title em { font-style: italic; font-weight: 700; }

.hover-word { position: relative; display: inline-block; }
.hover-word::after {
    content: ''; position: absolute; width: 100%; height: 2px; bottom: -1px; left: 0; background-color: var(--text-white); 
    transform: scaleX(0); transform-origin: right; transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1); 
}
.hover-word:hover::after { transform: scaleX(1); transform-origin: left; }
.text-gold.hover-word::after { background: linear-gradient(90deg, #ffe67a 0%, #d4ae0c 100%); }

/* --- CTA BUTTON (ORIGINAL GLOWING DESIGN) --- */
.cta-container { display: flex; justify-content: center; }
.cta-container.right-align { justify-content: flex-end; margin-top: 15px; }

.cta-button {
    position: relative; display: inline-flex; align-items: center;
    background: linear-gradient(90deg, #000000 40%, #2b135c 100%) padding-box,
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 1px solid transparent; border-radius: 50px;
    padding: 5px 5px 5px 25px; color: white; text-decoration: none; overflow: hidden; 
    animation: borderShine 4s linear infinite;
}

.cta-button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 20px rgba(84, 36, 187, 0.4); 
}

.cta-text { font-size: 0.85rem; letter-spacing: 1.5px; margin-right: 20px; position: relative; z-index: 2; }
.cta-text span { font-weight: 700; font-style: italic; text-decoration: underline; }

.cta-icon {
    background: linear-gradient(135deg, #111111 0%, #351a6b 100%) padding-box,
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 1px solid transparent; border-radius: 50%;
    width: 36px; height: 36px; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2;
}
.cta-icon svg { width: 18px; height: 18px; fill: #ffffff; }

/* --- UNIVERSAL HOVER GLOW LAYER --- */
.cta-button::before, .feature-card::before, .comparison-wrapper::before, .calculator-wrapper::before, .arsenal-card::before, .audio-builder-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(197, 157, 255, 0.15), transparent 100%);
    opacity: 0; transition: opacity 0.3s ease; z-index: 1; pointer-events: none; 
}
.cta-button:hover::before, .feature-card:hover::before, .comparison-wrapper:hover::before, .calculator-wrapper:hover::before, .arsenal-card:hover::before, .audio-builder-card:hover::before { opacity: 1; }

.feature-card, .cta-button, .comparison-wrapper, .calculator-wrapper, .arsenal-card, .audio-builder-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease; will-change: transform; 
}

/* =========================================
   4. FEATURES GRID
========================================= */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;
    padding: 0 20px; position: relative; z-index: 2;
}
.feature-card {
    position: relative; 
    background: radial-gradient(ellipse at top, #1a0a3a 0%, #050505 80%) padding-box,
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 1px solid transparent; border-radius: 100px; 
    padding: 30px 40px; text-align: center; overflow: hidden; animation: borderShine 6s linear infinite;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(84, 36, 187, 0.2); }
.feature-card h3 { position: relative; z-index: 2; font-size: 1.1rem; margin-bottom: 12px; font-weight: 700; letter-spacing: 0.5px; }
.feature-card p { position: relative; z-index: 2; font-size: 0.85rem; color: var(--text-grey); line-height: 1.6; }

/* =========================================
   5. CINEMATIC ARSENAL (2-COLUMN GRID)
========================================= */
.blur-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; position: relative; padding: 25px; box-sizing: border-box;
}
.arsenal-card {
    background: linear-gradient(135deg, #1a0a3a 0%, #050505 100%) padding-box, 
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 2px solid transparent; border-radius: 60px; 
    padding: 45px 40px; display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 1; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(197, 157, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform, filter, opacity; animation: borderShine 6s linear infinite;
}
.arsenal-card h3 { color: #c59dff; font-size: 1.4rem; margin-bottom: 0 !important; font-weight: 800; }
.arsenal-card p { color: #aaaaaa; font-size: 0.95rem; line-height: 1.6; }
.card-header { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 15px; }
.arsenal-icon { width: 24px; height: 24px; filter: drop-shadow(0 0 3px rgba(197, 157, 255, 0.4)); transition: transform 0.4s ease, filter 0.4s ease; flex-shrink: 0; }
.blur-grid:hover .arsenal-card { filter: blur(4px); opacity: 0.4; transform: scale(0.95); }
.blur-grid .arsenal-card:hover {
    filter: blur(0px); opacity: 1; transform: scale(1.08) translateY(-10px); z-index: 10;
    box-shadow: 0 25px 50px rgba(84, 36, 187, 0.5), inset 0 2px 2px rgba(197, 157, 255, 0.6); animation: borderShine 3s linear infinite;
}
.blur-grid .arsenal-card:hover .arsenal-icon { transform: scale(1.15) rotate(-5deg); filter: drop-shadow(0 0 8px rgba(197, 157, 255, 0.9)); }

/* =========================================
   6. THE LISTEN ZONE & AUDIO DASHBOARD
========================================= */
.samples-section { position: relative; z-index: 1; }
.samples-section::before {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 600px; background: radial-gradient(ellipse at center, rgba(84, 36, 187, 0.4) 0%, rgba(197, 157, 255, 0.1) 40%, transparent 70%);
    filter: blur(80px); z-index: -1; pointer-events: none;
}

.genre-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.genre-tab {
    background: #0a0a0a; border: 1px solid rgba(197, 157, 255, 0.2); border-radius: 40px;
    padding: 12px 30px; color: #aaaaaa; font-family: var(--font-main); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
}
.genre-tab:hover { background: #111111; color: #ffffff; }

.tab-content { display: none; opacity: 0; transform: translateY(10px); padding: 40px 20px; max-width: 1000px; margin: 0 auto; }
.tab-content.active { display: block; animation: tabFadeIn 0.4s ease forwards; }

.audio-builder-card {
    background: radial-gradient(ellipse at top, #1a0a3a 0%, #050505 80%) padding-box,
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; 
    border: 2px solid transparent; 
    border-radius: 40px; 
    padding: 40px; display: flex; flex-direction: column; gap: 35px; margin: 0 auto; width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative; overflow: hidden; 
    animation: borderShine 6s linear infinite; 
}

/* Inner Player UI */
.custom-player-ui {
    position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; width: 100%;
    background: #050505; border: 1px solid rgba(197, 157, 255, 0.15); border-radius: 60px; 
    padding: 10px 30px 10px 10px; box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.8);
}

.circle-play-btn {
    width: 60px; height: 60px; border-radius: 50%; 
    background: linear-gradient(135deg, #111111 0%, #351a6b 100%);
    border: 1px solid rgba(197, 157, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center; cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease; flex-shrink: 0;
}
.circle-play-btn:hover { 
    transform: scale(1.1); 
    border-color: #c59dff;
}
.circle-play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; transition: margin 0.2s ease;}
.player-timeline { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.time-displays { display: flex; justify-content: space-between; font-size: 0.75rem; color: #aaaaaa; font-weight: 700; letter-spacing: 1px; font-family: monospace; }

/* Perfect DAW Waveform Alignment */
.track-wrapper { position: relative; height: 40px; width: 100%; display: flex; align-items: center; }
.track-gray-line { position: absolute; width: 100%; height: 2px; background: #444444; top: 50%; transform: translateY(-50%); border-radius: 2px; z-index: 1; pointer-events: none; }
.track-waveform {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    clip-path: polygon(0 0, var(--progress) 0, var(--progress) 100%, 0 100%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M3,15v10 M9,8v24 M15,13v14 M21,4v32 M27,11v18 M33,18v4 M39,6v28 M45,14v12 M51,9v22 M57,2v36 M63,12v16 M69,5v30 M75,16v8 M81,7v26 M87,14v12 M93,3v34 M99,10v20 M105,15v10 M111,8v24 M117,17v6' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") left center repeat-x;
    z-index: 2; pointer-events: none;
}
.waveform-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; margin: 0; padding: 0; box-sizing: border-box; background: transparent; -webkit-appearance: none; outline: none; cursor: pointer; }
.waveform-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 16px; height: 16px; background: #ffffff; border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 4px rgba(197, 157, 255, 0.5); cursor: grab; transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.waveform-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.3); box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 8px rgba(197, 157, 255, 0.8); }

/* Builder Options (Unselected Pills) */
.builder-options { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; width: 100%; }
.mix-toggle input { display: none; }
.mix-pill {
    background: #0a0a0a; 
    border: 1px solid rgba(197, 157, 255, 0.15); border-radius: 50px; padding: 12px 28px;
    color: #aaaaaa; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; transition: all 0.4s ease; user-select: none;
}
.mix-toggle:hover .mix-pill { background: #111111; border-color: rgba(197, 157, 255, 0.3); color: #ffffff; transform: translateY(-2px); }

/* Audio Error State */
.error-shake {
    animation: hardwareReject 0.4s cubic-bezier(.36,.07,.19,.97) both; border-color: #ff4d4d !important;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.4) !important; background: linear-gradient(135deg, #cc0000 0%, #660000 100%) !important;
}

/* =========================================
   7. QUOTE CALCULATOR BUILDER
========================================= */
.calculator-wrapper {
    position: relative; margin: 0 20px 80px; 
    background: radial-gradient(ellipse at top, #1a0a3a 0%, #050505 80%) padding-box, 
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 2px solid transparent; border-radius: 40px;
    padding: 50px 30px; text-align: center; overflow: hidden; animation: borderShine 6s linear infinite; z-index: 2;
}
.calc-top-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 10px; }
.input-group label { display: block; font-size: 1rem; font-weight: 700; color: #cccccc; margin-bottom: 15px; letter-spacing: 0.5px; }
.calc-input {
    background: #0a0a0a; border: 1px solid rgba(197, 157, 255, 0.2); border-radius: 15px;
    padding: 15px 30px; font-size: 2rem; font-weight: 700; font-family: var(--font-main); color: var(--text-white);
    text-align: center; width: 100%; max-width: 350px; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.calc-input:focus { border-color: #c59dff; box-shadow: 0 0 20px rgba(197, 157, 255, 0.2); }
.calc-input::-webkit-outer-spin-button, .calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input[type=number] { -moz-appearance: textfield; }
.rate-display { text-align: right; min-width: 140px; }
.rate-value { font-size: 1.8rem; font-weight: 800; }
.rate-value span { font-size: 0.9rem; color: #aaaaaa; }

.calc-options-flex { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 15px; margin-bottom: 30px; width: 100%; }
.calc-toggle { display: none; }
.calc-card { flex: 1; cursor: pointer; min-width: 0; display: flex; transition: all 0.4s ease; }

/* Unselected Pricing Cards */
.calc-card-content {
    background: #0a0a0a; 
    border: 1px solid rgba(197, 157, 255, 0.15); 
    border-radius: 50px; 
    padding: 12px 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    width: 100%; height: 100%; box-sizing: border-box; transition: all 0.3s ease;
}
.calc-opt-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.calc-opt-title { color: #ffffff; font-weight: 800; font-size: 0.85rem; white-space: nowrap; }
.calc-opt-price { color: #c59dff; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }

.bg-dependent { display: none; opacity: 0; }
.bg-dependent.show { display: block; animation: popInCard 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.narrator-input {
    width: 32px; height: 22px; background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(197, 157, 255, 0.4); border-radius: 4px;
    color: #ffffff; font-size: 12px; font-weight: 800; text-align: center; padding: 0; outline: none;
    opacity: 0; pointer-events: none; transform: translateX(10px); transition: all 0.3s ease;
}
.narrator-input::-webkit-outer-spin-button, .narrator-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-toggle:checked ~ .calc-card-content .narrator-input { opacity: 1; pointer-events: auto; transform: translateX(0); }

.calc-bottom-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(197, 157, 255, 0.2); padding-top: 25px; margin-top: 10px; }
.result-group { display: flex; flex-direction: column; align-items: center; }
.result-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 5px; }
.calc-price { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 10px; background-clip: text; -webkit-background-clip: text; }
.gst-note { position: absolute; bottom: 25px; right: 35px; font-size: 0.7rem; color: #666666; font-style: italic; z-index: 2; letter-spacing: 0.5px; }
.asterisk { font-size: 0.2em; vertical-align: super; margin-left: 2px; opacity: 1; }
.centered-btn { width: auto !important; justify-content: center !important; gap: 12px; padding-left: 20px !important; padding-right: 8px !important; margin-top: 0 !important; }

/* =========================================
   8. UNIFIED "ACTIVE" STATE 
   (Matches Original CTA Aesthetic)
========================================= */
.genre-tab.active, 
.mix-toggle input:checked + .mix-pill,
.calc-toggle:checked + .calc-card-content {
    background: linear-gradient(90deg, #000000 40%, #2b135c 100%) padding-box,
                linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; 
    border: 1px solid transparent; 
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(84, 36, 187, 0.4);
    animation: borderShine 4s linear infinite;
    transform: translateY(-3px);
}

/* =========================================
   9. FOOTER
========================================= */
.site-footer {
    border-top: 2px solid transparent; 
    border-image: linear-gradient(90deg, #111111 0%, #5424bb 20%, #c59dff 50%, #5424bb 80%, #111111 100%) 1;
    background: linear-gradient(135deg, #2b135c 0%, #05020a 100%); 
    padding: 60px 20px 30px; 
    margin-top: 0; 
    position: relative; 
    z-index: 2; 
}
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 50px; max-width: 1000px; margin: 0 auto 60px auto; }
.footer-logo { width: 80px; height: auto; margin-bottom: 10px; }
.brand-name { font-size: 1.4rem; font-weight: 400; }
.footer-links h3, .footer-about h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 0.5px; }
.mt-4 { margin-top: 25px; }
.footer-links a { display: inline-block; color: var(--text-white); text-decoration: underline; text-underline-offset: 4px; font-size: 0.95rem; margin-bottom: 8px; transition: color 0.2s ease; }
.footer-links a:hover { color: #c59dff; }
.link-list { display: flex; flex-direction: column; }
.social-link { display: flex; justify-content: space-between; align-items: center; width: 130px; }
.social-link svg { width: 8px; height: 8px; color: var(--text-white); }
.social-link:hover svg { color: #c59dff; }
.footer-about p { font-size: 0.95rem; line-height: 1.6; color: #e0e0e0; }
.footer-bottom { font-size: 0.9rem; color: var(--text-white); text-align: center; max-width: 1000px; margin: 0 auto; }

/* =========================================
   10. MODALS & FORMS
========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 9999999; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
    position: relative; width: 90%; max-width: 480px; overflow-y: visible;
    background: linear-gradient(#050505, #050505) padding-box, linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 2px solid transparent; border-radius: 30px;
    padding: 40px 35px; animation: borderShine 6s linear infinite; transform: translateY(20px) scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform; transform-style: preserve-3d;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-close-btn {
    position: absolute; top: -15px; right: -15px; width: 40px; height: 40px;
    background: linear-gradient(135deg, #1a0a3a 0%, #050505 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(197, 157, 255, 0.3); border: 1px solid rgba(197, 157, 255, 0.2); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; cursor: pointer; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; z-index: 10;
}
.modal-close-btn:hover { transform: scale(1.15) rotate(90deg); box-shadow: 0 6px 15px rgba(197, 157, 255, 0.5), inset 0 1px 1px rgba(197, 157, 255, 0.5); }
.modal-close-btn svg { width: 16px; height: 16px; fill: #ffffff; }
.modal-header { text-align: center; margin-bottom: 35px; }
.modal-header h3 { font-size: 2rem; margin-bottom: 12px; font-weight: 700; color: #ffffff; line-height: 1.1; }
.modal-header p { font-size: 0.95rem; color: #aaaaaa; line-height: 1.6; padding: 0 10px; }
.modal-form { max-height: 55vh; overflow-y: auto; padding-right: 10px; display: flex; flex-direction: column; gap: 24px; width: 100%; }
.modal-form::-webkit-scrollbar { width: 4px; }
.modal-form::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 10px; }
.modal-form::-webkit-scrollbar-thumb { background: #c59dff; border-radius: 10px; }
.form-row { display: flex; gap: 20px; width: 100%; }
.form-row .input-group { width: 100%; }
.modal-form .input-group { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
.modal-form label { font-size: 0.8rem; color: #c59dff; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0; }
.modal-form input, .modal-form textarea, .modal-form select {
    width: 100%; box-sizing: border-box; background: #0a0a0a !important; border: 1px solid rgba(197, 157, 255, 0.2); border-radius: 12px; padding: 16px 20px; 
    color: #ffffff !important; font-family: var(--font-main); font-size: 1rem; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.modal-form input::placeholder, .modal-form textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { border-color: #c59dff; box-shadow: 0 0 20px rgba(197, 157, 255, 0.15); background: #111111 !important; }
.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-form select { appearance: none; -webkit-appearance: none; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23c59dff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') !important; background-repeat: no-repeat !important; background-position: right 15px center !important; background-size: 18px !important; cursor: pointer; }
.modal-form select option { background: #050505; color: #ffffff; padding: 10px; }
.submit-btn { width: 100%; box-sizing: border-box; justify-content: space-between; margin-top: 15px; padding: 10px 25px; }
.submit-btn .cta-text { margin-right: 0; font-size: 0.95rem; }
body.modal-open { overflow: hidden; }

/* =========================================
   11. GLOBAL UI (CURSOR, PRELOADER, CART)
========================================= */
.cursor-dot { 
    width: 6px; height: 6px; background-color: #ffffff; position: fixed; top: 0; left: 0; 
    transform: translate(-50%, -50%); border-radius: 50%; z-index: 99999999; pointer-events: none; transition: opacity 0.2s ease-out; 
}
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(197, 157, 255, 0.5); position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); border-radius: 50%; z-index: 99999998; pointer-events: none;
    transition: width 0.2s ease-out, height 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, opacity 0.2s ease-out;
}
.cursor-outline.hovering { width: 70px; height: 70px; background-color: rgba(197, 157, 255, 0.1); border-color: rgba(197, 157, 255, 0.9); }

#preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--bg-black); display: flex; justify-content: center; align-items: center; z-index: 9999999; transition: opacity 0.6s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.6s; }
.preloader-logo { width: 100px; height: auto; will-change: transform, filter; transform: translateZ(0); backface-visibility: hidden; -webkit-font-smoothing: antialiased; animation: preloaderPulse 1.5s infinite alternate ease-in-out; }
#preloader.fade-out { opacity: 0; visibility: hidden; }

.floating-cart {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
    background: linear-gradient(135deg, #1a0a3a 0%, #050505 100%) padding-box, linear-gradient(-45deg, #000000 15%, #5424bb 40%, #c59dff 50%, #5424bb 60%, #000000 85%) border-box;
    background-size: 100% 100%, 200% 100%; border: 2px solid transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 99998; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(197, 157, 255, 0.3);
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, box-shadow 0.3s ease; animation: borderShine 6s linear infinite;
}
.floating-cart.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.floating-cart:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(197, 157, 255, 0.4), inset 0 1px 1px rgba(197, 157, 255, 0.5); }
.floating-cart svg { width: 28px; height: 28px; transition: transform 0.3s ease; }
.floating-cart:hover svg { transform: rotate(-10deg) scale(1.1); }

.aura { position: fixed; border-radius: 50%; filter: blur(150px); z-index: -1; pointer-events: none; animation: auraBreathe 8s infinite alternate ease-in-out; }
.aura-left { width: 500px; height: 500px; background: rgba(53, 26, 107, 0.6); top: 10%; left: -200px; }
.aura-right { width: 600px; height: 600px; background: rgba(197, 157, 255, 0.2); bottom: -10%; right: -200px; animation-delay: -4s; }
.side-frame { position: fixed; top: 50%; transform: translateY(-50%); z-index: 100; pointer-events: none; color: rgba(255, 255, 255, 0.15); font-size: 0.75rem; letter-spacing: 6px; font-weight: 500; text-transform: uppercase; writing-mode: vertical-rl; }
.frame-left { left: 30px; transform: translateY(-50%) rotate(180deg); }
.frame-right { right: 30px; }

/* =========================================
   12. ANIMATIONS & RESPONSIVE
========================================= */
@keyframes borderShine { to { background-position: 0% 0%, 200% center; } }
@keyframes goldShine { to { background-position: 200% center; } }
@keyframes panAbstract { 0% { background-position: 0% 0%, 0% 0%, 0% 0%; } 100% { background-position: -100% 0%, -200% 0%, -100% 0%; } }
@keyframes auraBreathe { 0% { transform: scale(1) translate(0, 0); opacity: 0.5; } 100% { transform: scale(1.2) translate(30px, -30px); opacity: 0.8; } }
@keyframes preloaderPulse { 0% { transform: scale(0.8) translateZ(0); opacity: 0.7; filter: drop-shadow(0 0 10px rgba(197, 157, 255, 0.2)); } 100% { transform: scale(1.0) translateZ(0); opacity: 1; filter: drop-shadow(0 0 25px rgba(197, 157, 255, 0.8)); } }
@keyframes tabFadeIn { to { opacity: 1; transform: translateY(0); } }
@keyframes popInCard { 0% { opacity: 0; transform: scale(0.85) translateY(10px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes hardwareReject { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
    .side-frame { display: none; }
    .aura { filter: blur(100px); opacity: 0.3; }
}

@media (max-width: 900px) {
    .calc-options-flex { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
    .calc-card { flex: 0 0 160px; scroll-snap-align: start; }
}

@media (max-width: 768px) {
    section { padding: 60px 20px !important; }
    h1 { font-size: 2.5rem !important; line-height: 1.1; }
    h2.section-title { font-size: 2rem !important; }
    .features-grid { display: flex; flex-direction: column; gap: 20px; }
    .blur-grid { grid-template-columns: 1fr; padding: 15px; }
    .gst-note { bottom: 15px; right: 20px; font-size: 0.6rem; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .floating-cta { top: 20px; right: 20px; transform: translateY(-20px) scale(0.85); }
    .floating-cta.show { transform: translateY(0) scale(0.85); }
    .cursor-dot, .cursor-outline { display: none; }
    body, a, button, input, .sample-row { cursor: auto !important; }
    .calc-top-row, .calc-bottom-row { flex-direction: column; align-items: flex-start; gap: 15px; }
    .rate-display { text-align: left; }
    #calc-order-btn { width: 100% !important; }
    .feature-card, .cta-button, .comparison-wrapper, .calculator-wrapper, .arsenal-card { transform: none !important; transition: none !important; }
}

@media (max-width: 600px) {
    .audio-builder-card { padding: 30px 20px; }
    .custom-player-ui { padding: 8px 20px 8px 8px; }
    .mix-pill { padding: 12px 20px; width: 100%; text-align: center; }
    .genre-tabs { flex-wrap: wrap; }
    .genre-tab { flex: 1; text-align: center; padding: 12px 10px; }
    .form-row { flex-direction: column; gap: 24px; }
}

/* =========================================
   13. BOTTOM ANNOUNCEMENT BAR
========================================= */
.announcement-bar {
    position: relative; 
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #0a0a0a 0%, #1a0a3a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(197, 157, 255, 0.15);
    border-bottom: 1px solid rgba(197, 157, 255, 0.15);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2; 
}

.announcement-bar::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 100%;
    background: linear-gradient(270deg, #0a0a0a 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.announcement-icon-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 20px;
    background: linear-gradient(90deg, #050505 60%, transparent 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.announcement-icon-wrapper svg {
    width: 18px;
    height: 18px;
    animation: pulseMegaphone 2.5s infinite ease-in-out;
}

@keyframes pulseMegaphone {
    0% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 2px rgba(197,157,255,0.4)); }
    10% { transform: scale(1.15) rotate(-15deg); filter: drop-shadow(0 0 8px rgba(197,157,255,1)); }
    20% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 2px rgba(197,157,255,0.4)); }
    100% { transform: scale(1) rotate(0deg); }
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-left: 50px; 
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #cccccc;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-right: 60px; 
}

.marquee-content span strong {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 768px) {
    .marquee-content span { font-size: 0.7rem; }
    .announcement-icon-wrapper { padding: 0 15px; }
}