/* Pulse Website - CSS Stylesheet */
/* Modern dark theme for AI Music Visualizer */

:root {
    --primary: #00f5d4;
    --primary-dark: #00c4a7;
    --secondary: #7b2cbf;
    --accent: #f72585;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --gradient-primary: linear-gradient(135deg, #00f5d4 0%, #7b2cbf 50%, #f72585 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0,245,212,0.3) 0%, rgba(123,44,191,0.3) 100%);
    --shadow-glow: 0 0 40px rgba(0, 245, 212, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    border: 1px solid rgba(0, 245, 212, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 8s ease-out infinite;
}

.pulse-ring.delay-1 { animation-delay: 2.6s; }
.pulse-ring.delay-2 { animation-delay: 5.2s; }

@keyframes pulseExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { text-shadow: 0 0 10px var(--primary); }
    50% { text-shadow: 0 0 25px var(--primary), 0 0 40px var(--primary); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.version {
    font-size: 0.7rem;
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
    margin-left: 0.3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 245, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 245, 212, 0.1);
}

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

.btn-icon {
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
}

.gradient-text {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visualizer-demo {
    position: relative;
    width: 400px;
    height: 400px;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.waveform .bar {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: waveAnimation 1s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes waveAnimation {
    0%, 100% { height: 20px; }
    50% { height: calc(40px + 80px * var(--delay)); }
}

.spectrum-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(0, 245, 212, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: circleRotate 10s linear infinite;
}

.spectrum-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

@keyframes circleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Section Styles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Features Preview */
.features-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,245,212,0.02) 100%);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 245, 212, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

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

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.showcase-item {
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.showcase-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-weight: 500;
    text-align: center;
}

.showcase-visual {
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
}

.showcase-visual.particles {
    background: radial-gradient(circle at 30% 30%, var(--primary) 1px, transparent 1px),
                radial-gradient(circle at 70% 60%, var(--secondary) 1px, transparent 1px),
                radial-gradient(circle at 50% 80%, var(--accent) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleMove 3s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 10px 10px; }
}

.showcase-visual.spectrum {
    background: linear-gradient(to bottom, 
        var(--primary) 0%, var(--primary) 20%,
        var(--secondary) 20%, var(--secondary) 50%,
        var(--accent) 50%, var(--accent) 70%,
        transparent 70%);
    animation: spectrumPulse 1s ease-in-out infinite;
}

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

.showcase-visual.fractal {
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    animation: fractalRotate 5s linear infinite;
}

@keyframes fractalRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.showcase-visual.waveform-vis {
    background: repeating-linear-gradient(90deg, 
        transparent 0px, transparent 8px, 
        var(--primary) 8px, var(--primary) 10px);
    animation: waveMove 0.5s linear infinite;
}

@keyframes waveMove {
    from { background-position: 0 0; }
    to { background-position: 20px 0; }
}

/* Page Header */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,245,212,0.05) 0%, transparent 100%);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* Features Full Page */
.features-full {
    padding: 4rem 0 6rem;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card-large {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card-large:hover {
    border-color: rgba(0, 245, 212, 0.2);
    background: var(--bg-card-hover);
}

.feature-icon-large {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--primary);
}

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

.feature-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
}

.tech-specs {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.tech-specs h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.spec-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Download Page */
.download-section {
    padding: 4rem 0 6rem;
}

.download-card {
    display: flex;
    gap: 4rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 4rem;
}

.download-info {
    flex: 1;
}

.download-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.download-features {
    list-style: none;
    margin-bottom: 2rem;
}

.download-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.download-btn {
    margin-bottom: 1rem;
}

.download-size {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.app-preview {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/10;
    background: #0d0d12;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.preview-bar {
    height: 30px;
    background: #1a1a22;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.preview-bar::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.preview-bar::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.preview-content {
    padding: 20px;
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-viz {
    width: 80%;
    height: 60%;
    background: linear-gradient(90deg, 
        var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 4px;
    animation: previewPulse 2s ease-in-out infinite;
}

@keyframes previewPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

.requirements {
    margin-bottom: 4rem;
}

.requirements h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.requirement-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.req-label {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.req-value {
    color: var(--text-secondary);
}

.alt-downloads h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alt-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.alt-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.alt-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.alt-icon {
    font-size: 1.5rem;
}

/* Support Page */
.support-section {
    padding: 4rem 0 6rem;
}

.faq-section {
    margin-bottom: 5rem;
}

.faq-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 245, 212, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Legal Pages (Privacy, Terms, Refund) */
.legal-section {
    padding: 2rem 0 6rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-highlight {
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.privacy-highlight p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.legal-block h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block ul {
    list-style: none;
    margin: 1rem 0;
}

.legal-block ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.legal-block ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-block ul li strong {
    color: var(--text-primary);
}

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

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

.highlight-text {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.never-list {
    background: rgba(247, 37, 133, 0.1);
    border: 1px solid rgba(247, 37, 133, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.never-list p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.never-list ul li::before {
    content: none;
}

.never-list ul li {
    padding-left: 0;
}

.security-list li::before {
    content: none;
}

.security-list li {
    padding-left: 0;
}

.disclaimer {
    font-style: italic;
    color: var(--text-muted) !important;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Data Tables */
.data-table {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 1.5rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 245, 212, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.table-row span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.table-row.two-col {
    grid-template-columns: 1fr 1.5fr;
}

.table-header:has(+ .table-row.two-col),
.data-table:has(.table-row.two-col) .table-header {
    grid-template-columns: 1fr 1.5fr;
}

.contact-emails {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-emails p {
    margin: 0.5rem 0;
}

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

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

/* Warning/Notice Boxes */
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box p {
    color: var(--text-primary) !important;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

.chargeback-warning {
    background: rgba(247, 37, 133, 0.1);
    border-color: rgba(247, 37, 133, 0.3);
    text-align: center;
}

/* Refund Highlight Box */
.refund-highlight {
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.refund-highlight .highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.refund-highlight h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.refund-highlight p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Philosophy Box */
.philosophy-box {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.philosophy-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.philosophy-box p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.copyright-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive for Steps */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .refund-highlight {
        padding: 1.5rem;
    }

    .refund-highlight h2 {
        font-size: 1.4rem;
    }
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
    }

    .table-header span:not(:first-child),
    .table-row span:not(:first-child) {
        font-size: 0.85rem;
    }

    .table-row span:first-child {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 0.5rem;
    }

    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .gradient-text {
        font-size: 3.5rem;
    }

    .visualizer-demo {
        width: 300px;
        height: 300px;
    }

    .spectrum-circle {
        width: 250px;
        height: 250px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        max-height: 300px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        padding: 1rem;
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .gradient-text {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .features-grid-large {
        grid-template-columns: 1fr;
    }
}
