:root {
    /* High Contrast Minimalist White/Black Palette */
    --bg-dark: #ffffff;            /* Body background is now white */
    --bg-panel: #ffffff;           /* Panel is white */
    --bg-card: #f9fafb;            /* Card background is off-white */
    --text-main: #06070a;          /* Clean black text */
    --text-muted: #4b5563;         /* Medium-dark gray for muted text */
    --accent-pink: #E87A5D;        /* The peachy orange accent */
    --accent-pink-rgb: 232, 122, 93;
    --accent-purple: #111827;      /* Primary detail color */
    --accent-purple-rgb: 17, 24, 39;
    --accent-white: #ffffff;
    --border-strong: rgba(0, 0, 0, 0.12); /* Clean dark 1px border */
    
    --highlight-bg: rgba(232, 122, 93, 0.08);
    --highlight-fg: #E87A5D;
    
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.02);
    
    --font-heading: 'Work Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

section {
    scroll-margin-top: 140px;
}

/* Ambient Cyber Static Noise */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015; /* Slightly reduced opacity for light mode readability */
    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');
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--highlight-fg);
    display: inline-block;
    background: var(--highlight-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 0px;
    border: 1px solid rgba(var(--accent-pink-rgb), 0.15);
    box-shadow: 0 0 15px rgba(var(--accent-pink-rgb), 0.05);
}

/* Marquee / Ticker */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #E87A5D;
    color: #000000;
    border-bottom: 2px solid #000000;
    border-top: 2px solid #000000;
    padding: 0.8rem 0;
    position: relative;
    z-index: 900;
    margin-top: 102px;
}

.marquee-content {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 120s linear infinite;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-content span {
    padding-right: 80px;
}

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

/* Flat Rectangular Navbar - Solid Black */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 2rem;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) !important; /* Force logo to solid white */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 0.4rem 0.8rem;
}

.nav-links a:hover:not(.btn-buy-nav) {
    color: #ffffff;
    text-shadow: none;
}

.btn-buy-nav {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0px;
    padding: 0.4rem 1.2rem !important;
    color: #000000 !important;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
}

.btn-buy-nav:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-1px);
}

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

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #ffffff; /* White hamburger menu spans for black header */
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-strong);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.close-sidebar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-link:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 2rem 6rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    margin-top: 4rem;
    text-align: left;
}

.hero-split-container .hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    font-family: var(--font-body);
    line-height: 1.7;
}

.hero-visuals {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.plugin-mockup {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    background-color: rgba(18, 20, 28, 0.4);
    box-shadow: var(--shadow-large);
    transition: transform 0.5s ease;
}

.plugin-mockup:hover {
    transform: translateY(-5px);
}

.next-photo-btn {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    background: rgba(13, 15, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 0px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.next-photo-btn:hover {
    background: var(--accent-pink);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-pink);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
    width: 100%;
}

/* Premium Buttons */
.btn-primary {
    background: #06070a;
    color: #ffffff;
    border: 1px solid #06070a;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #06070a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background: #E87A5D;
    color: #ffffff;
    border-color: #E87A5D;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #06070a;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: #06070a;
    border: 1px solid #06070a;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #06070a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: #06070a;
    color: #ffffff;
    border-color: #06070a;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #E87A5D;
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--border-strong);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--accent-pink-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--accent-pink-rgb), 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

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

/* Listen / Player Section */
.listen {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, rgba(6, 7, 10, 0) 70%);
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border-strong);
}

.listen-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.listen-info h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    text-align: center;
}

.listen-info p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Futuristic hardware-inspired audio player */
.audio-player {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 2.5rem;
    box-shadow: var(--shadow-large);
    width: 100%;
    max-width: 620px;
    backdrop-filter: blur(20px);
}

.track-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem;
    border-radius: 0px;
    border: 1px solid var(--border-strong);
}

.track-btn {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.track-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-pink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.track-btn:hover:not(.active) {
    color: var(--text-main);
}

.track-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.9;
}

.waveform-visualizer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin-bottom: 2rem;
    gap: 3px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 0px;
    border: 1px solid var(--border-strong);
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    height: 10%;
    border-radius: 0px;
    transition: height 0.08s ease, background-color 0.3s ease;
}

.waveform-visualizer.playing.processed .bar {
    background: linear-gradient(to top, var(--accent-pink), var(--accent-purple));
}

.waveform-visualizer.playing.clean .bar {
    background: var(--text-main);
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border: none;
    color: var(--accent-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(var(--accent-pink-rgb), 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--accent-pink-rgb), 0.5);
}

.bypass-toggle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.bypass-toggle .label {
    color: var(--text-muted);
    transition: color 0.3s;
}

.bypass-toggle .active-label {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.3);
}

/* Custom Sleek Slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    border-radius: 0px;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}

input:checked + .slider {
    background-color: rgba(var(--accent-pink-rgb), 0.1);
    border-color: rgba(var(--accent-pink-rgb), 0.3);
}

input:checked + .slider:before {
    transform: translateX(24px);
    background-color: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
}

/* DSP Signal Flow Diagram Redesign */
.tech-info {
    border-top: 1px solid var(--border-strong) !important;
}

.flow-badge {
    border: 1px solid var(--border-strong) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-main) !important;
    border-radius: 0px;
    padding: 0.8rem 2rem !important;
    box-shadow: none !important;
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
}

.flow-card {
    border: 1px solid var(--border-strong) !important;
    background: var(--bg-card) !important;
    border-radius: 0px;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-medium) !important;
}

.flow-card-wide {
    box-shadow: var(--shadow-large) !important;
}

.flow-step-label {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple)) !important;
    border-radius: 0px;
    border: none !important;
    padding: 0.2rem 1rem !important;
    color: var(--accent-white) !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.7rem !important;
}

.flow-card h3, .flow-card h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    text-transform: uppercase;
}

.flow-card p {
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--text-muted) !important;
    opacity: 0.5;
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.pricing-card {
    position: relative;
    z-index: 10;
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 4rem 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(20px);
    transition: border-color 0.3s;
}

.pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.pricing-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 1.5rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tech-specs {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.tech-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-strong);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.secure-checkout {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Section */
footer {
    background: #ffffff;
    padding: 5rem 2rem;
    border-top: 1px solid #000000;
    text-align: center;
    color: #4b5563;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    display: block;
    filter: brightness(0) !important; /* Force logo to solid black */
}

.footer-content p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000000;
}

/* Auth UI / Navigation Groups */
.auth-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .auth-group {
    margin-left: 1.5rem;
}

.btn-text {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: #ffffff;
}

.user-email {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    font-weight: 600;
    transition: border-color 0.2s;
}

.user-email:hover {
    border-color: #ffffff;
}

/* Glassmorphic Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 7, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 3.5rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-large);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-strong);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.tab-btn.active {
    color: var(--accent-pink);
    border-bottom: 2px solid var(--accent-pink);
}

.tab-btn:not(.active):hover {
    color: var(--text-main);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-pink);
}

.auth-submit {
    margin-top: 1rem;
}

.auth-error {
    color: #ef4444;
    font-size: 0.85rem;
    text-align: center;
}

.auth-success {
    color: #10b981;
    font-size: 0.85rem;
    text-align: center;
}

/* Cookie consent banner adjustments */
#cookieConsentBanner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 720px;
    background: var(--bg-panel) !important;
    border: 1px solid var(--border-strong) !important;
    box-shadow: var(--shadow-large) !important;
    border-radius: 0px;
    padding: 2rem;
    z-index: 10000;
    opacity: 0;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

#cookieConsentBanner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

.cookie-banner-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent-pink);
    margin: 0 0 0.5rem 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--text-main);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.8rem;
}

.cookie-btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-dark);
    min-width: 100%;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-strong);
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 4px;
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-strong);
    transition: all 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Media Switcher (Image vs Video) */
.media-switcher {
    display: flex;
    gap: 0;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-strong);
    background: rgba(10, 11, 14, 0.95);
    padding: 2px;
    width: fit-content;
    z-index: 10;
    border-radius: 0px;
}

.media-btn {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0px;
}

.media-btn.active {
    background: var(--text-main);
    color: var(--bg-dark);
}

.media-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

/* Card-level media switcher minor sizing */
.card-image-wrapper .media-switcher {
    border-width: 1px;
    box-shadow: none;
}

.card-image-wrapper .media-btn {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
}

/* Floating CTA button for mobile */
.mobile-floating-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 800;
    display: none;
}

.mobile-floating-cta button {
    border-radius: 0px !important;
    box-shadow: 4px 4px 0px #E87A5D !important;
    border: 1px solid #000000 !important;
    background: #06070a !important;
    color: #ffffff !important;
}

.mobile-floating-cta button:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

/* Media Queries for Responsive Layouts */
@media (max-width: 1024px) {
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-split-container .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-right: 0;
    }
    
    .next-photo-btn {
        right: 0rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1.5rem 2.5rem !important;
    }
    
    .hero-split-container {
        margin-top: 1rem !important;
        gap: 1.5rem !important;
    }

    .features, .listen, .pricing {
        padding: 3.5rem 1.5rem !important;
    }

    .tech-info {
        padding: 3.5rem 1.5rem 1.5rem 1.5rem !important;
    }

    .section-header {
        margin-bottom: 2rem !important;
    }

    .flow-badge {
        margin-bottom: 1.5rem !important;
    }

    .buy-pricing-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .buy-pricing-card {
        padding: 2rem 1.25rem !important;
    }

    footer {
        padding: 3rem 1.5rem !important;
    }

    .navbar {
        top: 0;
        padding: 0.8rem 1.5rem;
        border-radius: 0px;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .marquee-container {
        margin-top: 74px !important;
    }
    
    .nav-links, .navbar .auth-group {
        display: none; /* Hidden on tablet/mobile: sidebar takes over */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2, .listen-info h2 {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .audio-player {
        padding: 1.5rem;
    }
    
    .flow-branches {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-badge {
        font-size: 0.8rem !important;
        padding: 0.6rem 1.5rem !important;
    }
    
    .flow-card, .flow-card-wide {
        padding: 2.2rem 1.2rem 1.5rem 1.2rem !important;
    }

    .flow-step-label, .flow-step-label-wide {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.5rem !important;
        white-space: nowrap !important;
        top: -12px !important;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .mobile-floating-cta {
        display: block;
    }
    
    .buy-hero-image {
        display: none; /* Hide secondary image on mobile in buy page */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .track-selector {
        flex-direction: column;
        border-radius: 0px;
        padding: 0.5rem;
    }
    
    .track-btn {
        padding: 0.5rem;
    }
    
    .bypass-toggle {
        font-size: 0.75rem;
        gap: 0.8rem;
    }
    
    .switch {
        width: 44px;
        height: 22px;
    }
    
    .slider:before {
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
    }
    
    input:checked + .slider:before {
        transform: translateX(18px);
    }

    .hero {
        padding: 0.8rem 1rem 1.5rem !important;
    }

    .hero-split-container {
        margin-top: 0.8rem !important;
    }

    .features, .listen, .pricing, .tech-info {
        padding: 2.5rem 1rem !important;
    }

    .flow-card, .flow-card-wide {
        padding: 2rem 1rem 1.25rem 1rem !important;
    }

    .flow-step-label, .flow-step-label-wide {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.4rem !important;
        white-space: nowrap !important;
        top: -10px !important;
    }

    .buy-pricing-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .buy-pricing-card {
        padding: 1.5rem 1rem !important;
    }

    footer {
        padding: 2.5rem 1rem !important;
    }
}

/* High Contrast White Modular System */
.feature-card, 
.pricing-card, 
.audio-player, 
.flow-card, 
.flow-card-wide,
.modal-content {
    background: #ffffff !important;
    color: #06070a !important;
    border: 1px solid #000000 !important; /* solid black border */
    box-shadow: 6px 6px 0px #E87A5D !important; /* flat peachy-orange offset shadow */
}

/* Typography inside white components */
.feature-card h3, .feature-card p,
.pricing-card h2, .pricing-card p, .pricing-card li, .pricing-card span,
.audio-player h2, .audio-player p, .audio-player .track-name, .audio-player .label,
.flow-card h3, .flow-card h4, .flow-card p,
.modal-content h2, .modal-content label,
.cookie-banner-text h4, .cookie-banner-text p {
    color: #06070a !important;
}

.pricing-card .pricing-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.pricing-card .tech-specs li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15) !important;
    color: #374151 !important;
}

.pricing-card .currency {
    color: #4b5563 !important;
}

/* Buttons inside white components */
.pricing-card .btn-primary,
.modal-content .btn-primary {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-primary:hover,
.modal-content .btn-primary:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    border-color: #E87A5D !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-secondary,
.modal-content .btn-secondary {
    background: transparent !important;
    color: #06070a !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-secondary:hover,
.modal-content .btn-secondary:hover {
    background: #06070a !important;
    color: #ffffff !important;
    border-color: #06070a !important;
    box-shadow: 4px 4px 0px #E87A5D !important;
}

/* Form inputs inside white components */
.pricing-card input, 
.modal-content input {
    background: #ffffff !important;
    border: 1px solid #06070a !important;
    color: #06070a !important;
}

.pricing-card input:focus, 
.modal-content input:focus {
    border-color: #E87A5D !important;
    outline: none;
}

/* Audio Player components inside white player */
.audio-player .track-selector {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.audio-player .track-btn {
    color: #4b5563 !important;
}

.audio-player .track-btn.active {
    background: #06070a !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.audio-player .track-btn:hover:not(.active) {
    color: #06070a !important;
}

.audio-player .waveform-visualizer {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.audio-player .bar {
    background: rgba(0, 0, 0, 0.12) !important;
}

.audio-player .waveform-visualizer.playing.processed .bar {
    background: #E87A5D !important; /* Orange bars for processed */
}

.audio-player .waveform-visualizer.playing.clean .bar {
    background: #06070a !important; /* Black bars for clean */
}

.audio-player .play-btn {
    background: #06070a !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15) !important;
}

.audio-player .play-btn:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px #06070a !important;
    transform: scale(1.05);
}

.audio-player .slider {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.audio-player .slider:before {
    background-color: #4b5563 !important;
}

.audio-player input:checked + .slider {
    background-color: rgba(232, 122, 93, 0.08) !important;
    border-color: #E87A5D !important;
}

.audio-player input:checked + .slider:before {
    background-color: #E87A5D !important;
}

/* Flow branches adjustments */
.flow-badge {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    box-shadow: 4px 4px 0px #E87A5D !important;
}

.flow-step-label {
    background: #E87A5D !important;
    color: #000000 !important;
    font-weight: 800 !important;
    border: 1px solid #000000 !important;
}

/* Modals extra contrast */
.modal-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
}

.modal-content .tab-btn {
    color: #4b5563 !important;
}

.modal-content .tab-btn.active {
    color: #06070a !important;
    border-bottom: 2px solid #06070a !important;
}

.modal-content .modal-close {
    color: #4b5563 !important;
}

.modal-content .modal-close:hover {
    color: #06070a !important;
}

/* Dropdowns peachy orange hover option */
.dropdown-content {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
}

.dropdown-content a {
    color: #06070a !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.dropdown-content a:hover {
    background-color: #E87A5D !important;
    color: #000000 !important;
}

/* Buy Page centered layout and wide box */
.buy-pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    width: 100%;
}

.buy-hero-image {
    display: none !important; /* Hide mockup image on the side */
}

.buy-pricing-card {
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
}

.buy-pricing-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .buy-pricing-card {
        max-width: 1000px;
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1.5rem 3.5rem;
        text-align: left;
        padding: 4rem;
    }
    
    .buy-pricing-card .buy-pricing-title {
        grid-column: 1 / span 2;
        grid-row: 1;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .buy-pricing-card .pricing-header {
        grid-column: 1;
        grid-row: 2 / span 4;
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .buy-pricing-card .card-image-wrapper {
        margin: 1.5rem auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .buy-pricing-card .pricing-header .price {
        justify-content: center;
        align-items: center !important;
        width: 100%;
    }
    
    .buy-pricing-card .tech-specs {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
    }
    
    .buy-pricing-card .coupon-container {
        grid-column: 2;
        grid-row: 3;
        margin-bottom: 0;
    }
    
    .buy-pricing-card .checkout-btn {
        grid-column: 2;
        grid-row: 4;
        margin-bottom: 0;
    }
    
    .buy-pricing-card .secure-checkout {
        grid-column: 2;
        grid-row: 5;
        text-align: center;
    }
}

/* Media switcher (Image/Video) overrides */
.media-switcher {
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    padding: 0 !important;
}

.media-btn {
    background: transparent !important;
    color: #06070a !important;
    border: none !important;
    border-right: 1px solid #000000 !important;
}

.media-btn:last-child {
    border-right: none !important;
}

.media-btn.active {
    background: #06070a !important;
    color: #ffffff !important;
}

.media-btn:not(.active):hover {
    background: #E87A5D !important;
    color: #000000 !important;
}

/* Mockup Image overrides for high-contrast */
.plugin-mockup {
    border: 3px solid #000000 !important;
    box-shadow: 6px 6px 0px #E87A5D !important;
    background-color: #ffffff !important;
}

/* Checkout Page terminal pane and button overrides */
.payment-form-pane {
    background: #ffffff !important;
    color: #06070a !important;
    border: 1px solid #000000 !important;
    box-shadow: 6px 6px 0px #E87A5D !important;
}

#paymentSubmitBtn {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

#paymentSubmitBtn:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    border-color: #E87A5D !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

/* Fullscreen Image Magnify Overlay */
.image-magnify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 7, 10, 0.95) !important;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-magnify-overlay.active {
    opacity: 1;
}

.image-magnify-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid #ffffff;
    box-shadow: 12px 12px 0px #E87A5D;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-magnify-overlay.active img {
    transform: scale(1);
}
