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

/* Elegant typography system - matching app aesthetic */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Courier New', monospace;
    
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.25rem;    /* 20px */
    --text-xl: 1.75rem;    /* 28px */
    --text-2xl: 2.1rem;    /* 34px - reduced for better hierarchy */
    --text-3xl: 3.5rem;    /* 56px */
    --text-4xl: 4.5rem;    /* 72px */
    
    --weight-thin: 200;
    --weight-light: 300;
    --weight-normal: 400;
    
    --color-primary: #ffd700;
    --color-turquoise: #40E0D0;
    --color-purple: #9333ea;
    --color-accent: #40E0D0;
    --color-white: #ffffff;
    --color-gray: #b0b0b0;
    --color-dark-gray: #666666;
    --color-black: #000000;
    --color-bg: #000000;
    
    /* Spacing system - 8pt grid */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 2rem;     /* 32px */
    --space-lg: 3rem;     /* 48px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Consistent transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--weight-light);  /* Lighter default weight */
    font-size: var(--text-base);
    line-height: 1.6;  /* Slightly more spacing for elegance */
    color: var(--color-white);
    background: var(--color-bg);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;  /* Subtle letter spacing */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: var(--space-lg) 0 var(--space-md);
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo h2 {
    font-size: var(--text-xl);
    font-weight: var(--weight-thin);
    color: var(--color-white);
    letter-spacing: 0.04em;
}

.quantum-dot {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Main content */
main {
    padding: var(--space-xl) 0;
    flex: 1;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
}

/* Logo container for Talisman Music */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-md);
    overflow: visible;
    transform: translateZ(0);
    will-change: transform;
}

.talisman-hero-logo {
    width: 180px;
    height: 180px;
    filter: brightness(1.4) drop-shadow(0 0 40px rgba(147, 51, 234, 0.8)) drop-shadow(0 0 80px rgba(147, 51, 234, 0.5));
    transition: filter 0.6s ease-out;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: filter;
}

.talisman-hero-logo:hover {
    filter: brightness(1.6) drop-shadow(0 0 60px rgba(147, 51, 234, 1)) drop-shadow(0 0 120px rgba(147, 51, 234, 0.7));
}

@keyframes subtleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.talisman-text {
    background: linear-gradient(45deg, #9333ea, #c084fc, #e879f9, #f0abfc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    font-weight: var(--weight-thin);  /* Ultra elegant */
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5));
    letter-spacing: 0.08em;  /* More spacing for elegance */
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-thin);
    margin-bottom: var(--space-md);
    color: var(--color-white);
    line-height: 1.3;
    letter-spacing: 0.02em;  /* Positive spacing for elegance */
    overflow: visible;
}

/* Bitcoin logo */
.bitcoin-logo {
    height: 3em;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.5));
    transition: transform 0.3s ease;
    position: relative;
}

.logo-line {
    text-align: center;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    overflow: visible;
    position: relative;
}

.qbit-line {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-size: var(--text-3xl);
    font-weight: var(--weight-ultralight);
    letter-spacing: 0.03em;
}

.btc-symbol {
    color: #ff8c00;  /* Deep orange */
    font-weight: var(--weight-medium);
    display: inline-block;
    position: relative;
    font-size: 1.1em;
    margin: 0 -0.05em;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6));
    transition: all 0.3s ease;
}

.btc-symbol:hover {
    filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.8));
    transform: scale(1.1);
}

.qbit-line span:not(.btc-symbol) {
    background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtleShimmer 3s ease-in-out infinite;
}

.btc-line {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.btc {
    font-size: var(--text-2xl);
    font-weight: var(--weight-light);
    color: var(--color-primary);
}

.tagline-line {
    text-align: center;
    line-height: 1.2;
    opacity: 1;
    font-size: var(--text-2xl);
    margin-top: 2rem;
    font-weight: var(--weight-thin);
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btc-text {
    color: var(--color-primary);
    font-weight: var(--weight-light);
}

.industry-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
    font-weight: var(--weight-light);
    letter-spacing: 0.02em;
    text-transform: none;
}

.remastered {
    background: linear-gradient(90deg, #9333ea, #c084fc, #e879f9, #f0abfc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    font-weight: var(--weight-thin);
    font-size: var(--text-2xl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.6));
    display: inline-block;
    margin-top: 0.5rem;
}

@keyframes musicPulse {
    0%, 100% { 
        opacity: 0.9;
        filter: blur(0px);
    }
    50% { 
        opacity: 1;
        filter: blur(0.1px) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
}

/* Intro text */
.intro-text {
    margin-top: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-line {
    font-size: var(--text-base);  /* Bigger for readability */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);  /* Less gray, more readable */
    font-weight: var(--weight-light);  /* Elegant light weight */
    letter-spacing: 0.03em;
    text-align: center;
    margin: 0;
}

.intro-line:nth-child(1) { animation-delay: 0.3s; }
.intro-line:nth-child(2) { animation-delay: 0.5s; }
.intro-line:nth-child(3) { animation-delay: 0.7s; }
.intro-line:nth-child(4) { animation-delay: 0.9s; }

/* Learn more toggle */
.learn-more-toggle {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-gray);
    text-decoration: none;
    font-size: var(--text-xs);
    font-weight: var(--weight-light);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.learn-more-toggle:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

/* Manifesto link */
.manifesto-link {
    margin-top: var(--space-lg);
}

.read-manifesto {
    display: inline-block;
    color: var(--color-turquoise);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--weight-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(64, 224, 208, 0.4);
    background: rgba(64, 224, 208, 0.05);
    transition: var(--transition);
}

.read-manifesto:hover {
    background: rgba(64, 224, 208, 0.15);
    border-color: rgba(64, 224, 208, 0.7);
    color: #5FFBF1;
    transform: scale(1.02);
}

/* Learn more panel */
.learn-more-panel {
    max-width: 900px;  /* Much wider for better reading */
    margin: var(--space-lg) auto 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;  /* Sharp */
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
}

.learn-more-panel.active {
    max-height: none;  /* No limit to prevent cutoff */
    opacity: 1;
    padding: var(--space-xl) var(--space-2xl);  /* More horizontal padding for readability */
}

.learn-more-panel h3 {
    font-size: clamp(1.1rem, 3.5vw, var(--text-xl));  /* Responsive size */
    font-weight: var(--weight-thin);  /* Elegant thin weight */
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;  /* Slightly tighter */
    text-align: left;  /* Left-aligned for manifesto feel */
    text-transform: uppercase;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);  /* Subtle underline */
    padding-bottom: 1rem;
    white-space: nowrap;  /* Force single line */
}

.learn-more-panel p {
    font-size: var(--text-base);  /* Improved readability */
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);  /* Consistent bright white */
    margin-bottom: 1.5rem;
    font-weight: var(--weight-light);  /* Elegant light weight */
    text-align: left;  /* Start with left to prevent flash */
    letter-spacing: 0.02em;  /* Subtle spacing */
    transition: text-align 0.3s ease;
}

.learn-more-panel.active p {
    text-align: justify;  /* Apply justify only when active */
    text-justify: inter-word;  /* Better word spacing */
}

/* Manifesto sections */
.manifesto-section {
    margin: 3rem 0;
}

.section-heading {
    font-size: var(--text-lg);  /* Much bigger */
    font-weight: var(--weight-thin);  /* Elegant thin weight */
    color: rgba(255, 255, 255, 0.95);  /* Brighter white */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    opacity: 1;
    text-align: left;  /* Left-aligned */
}

/* Pull quote */
.pull-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 2px solid rgba(147, 51, 234, 0.4);
    background: rgba(147, 51, 234, 0.03);
    font-size: var(--text-lg);
    font-weight: var(--weight-normal);  /* More readable weight */
    color: var(--color-white);
    letter-spacing: 0.04em;
    line-height: 1.7;
    text-align: left;  /* Keep pull quotes left-aligned for emphasis */
}

/* Emphasis statement */
.emphasis-statement {
    font-size: var(--text-lg);
    font-weight: var(--weight-thin);  /* Elegant emphasis */
    color: var(--color-white);
    margin: 2rem 0;
    text-align: center;
    letter-spacing: 0.06em;
}

/* Reassurance */
.reassurance {
    font-style: italic;
    color: rgba(147, 51, 234, 0.9);  /* Purple for emphasis */
    font-size: var(--text-base);
    margin-top: 1.5rem;
    text-align: center;  /* Center the reassurance */
}

/* Time machine reveal */
.time-machine-reveal {
    margin: 4rem 0;
    padding: 3rem 0;
    text-align: center;
}

.time-machine-reveal p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-white);
    font-weight: var(--weight-light);
    letter-spacing: 0.05em;
    margin: 2rem 0;
}

.divider {
    color: rgba(147, 51, 234, 0.4);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
}

/* Open source badge */
.open-source-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--color-white);
    font-weight: var(--weight-medium);
    letter-spacing: 0.05em;
    font-size: var(--text-sm);
    text-align: center;  /* Keep badge centered */
}

/* Revenue comparison bars */
.revenue-comparison {
    margin: 3rem 0;
    padding: 2rem 0;
}

.comparison-item {
    margin-bottom: 2.5rem;
}

.comparison-item h5 {
    font-size: var(--text-xs);
    font-weight: var(--weight-thin);
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.revenue-bar {
    display: flex;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.bar-segment {
    position: relative;
    transition: all 0.3s ease;
}

.bar-segment.artists {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.6), rgba(147, 51, 234, 0.8));
}

.bar-segment.platform,
.bar-segment.costs {
    background: rgba(255, 255, 255, 0.1);
}

/* Labels below bars */
.bar-labels {
    display: flex;
    width: 100%;
    margin-top: 0.5rem;
}

.label-item {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-light);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Highlight artist labels */
.label-item:first-child {
    color: rgba(147, 51, 234, 0.9);
}

/* Hover effect */
.revenue-bar:hover .bar-segment.artists {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.7), rgba(147, 51, 234, 0.9));
}

.comparison-note {
    margin-top: 2rem;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    text-align: center !important;
    font-weight: var(--weight-thin);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* First paragraph styling removed for consistency */
.learn-more-panel .first-section p {
    color: rgba(255, 255, 255, 0.9);  /* Same as other paragraphs */
    font-weight: var(--weight-normal);
}

.newsletter-focus {
    color: rgba(147, 51, 234, 0.9);
    text-decoration: none;
    font-weight: var(--weight-medium);
    transition: all 0.3s ease;
}

.newsletter-focus:hover {
    color: rgba(147, 51, 234, 1);
    text-decoration: underline;
}

/* Social links styling */
.social-link {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-platform {
    color: var(--color-gray);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--weight-normal);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-platform:hover {
    color: var(--color-white);
    opacity: 1;
}

.social-divider {
    color: var(--color-dark-gray);
    opacity: 0.5;
    font-size: var(--text-sm);
}

.technical-note {
    font-size: var(--text-xs) !important;
    color: rgba(255, 255, 255, 0.6) !important;  /* Consistent with other muted text */
    font-style: italic;
    margin-top: 2rem !important;
    opacity: 1;  /* Remove opacity to prevent double dimming */
}

/* Manifesto seal - logo at the end */
.manifesto-seal {
    margin-top: 3rem;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.manifesto-seal:hover {
    opacity: 1;
}

.seal-logo {
    width: 60px;  /* Small seal size */
    height: 60px;
    object-fit: contain;
    margin: 0 auto 0.5rem;
    filter: grayscale(0%) brightness(0.9);  /* Slightly dimmed */
}

.seal-text {
    font-size: var(--text-xs) !important;
    font-weight: var(--weight-thin);  /* Elegant thin */
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    margin: 0 !important;
    text-align: center !important;  /* Override justify */
}

@keyframes expandDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

.intro-line.strong {
    font-weight: var(--weight-medium);
    color: var(--color-white);
    font-size: var(--text-lg);  /* Bigger for emphasis */
    margin-top: 0.5rem;
}

.intro-line.punchline {
    color: rgba(147, 51, 234, 0.9);
    font-style: italic;
    margin-top: 1rem;
    font-size: var(--text-sm);
}

.time-reference {
    color: rgba(147, 51, 234, 1);
    font-style: normal;
    font-weight: var(--weight-medium);
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message */
.success-message {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
}

.success-message h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-ultralight);
    color: var(--color-white);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.success-message p {
    font-size: var(--text-base);
    color: var(--color-gray);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Contributor section */
.contributor-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.contributor-section p {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.contribute-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: var(--weight-light);  /* Elegant light weight */
    color: var(--color-white);
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contribute-link:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.6);
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5));
    transform: translateY(-2px);
}

@keyframes subtleShimmer {
    0%, 100% { background-position: 200% 50%; }
    50% { background-position: -200% 50%; }
}

@keyframes floatPulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes slowSpin {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}


.bitcoin-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.7)) brightness(1.1);
}

/* Shimmer overlay */
.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    height: 80px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(0, 212, 255, 0.2),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmerMove 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0;
    z-index: 10;
}

@keyframes shimmerMove {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.tagline {
    font-size: var(--text-lg);
    color: var(--color-gray);
    margin-bottom: 3rem;
    font-weight: var(--weight-light);
}

/* CTA Section - No border */
.cta-section {
    padding: var(--space-md);
    margin-top: var(--space-md);
    background: transparent;
    position: relative;
}

.cta-section h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-ultralight);
    margin-bottom: 2rem;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Form */
.signup-form {
    margin-bottom: 0.25rem;
}

.form-group {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    min-width: 0; /* Allow shrinking on mobile */
    padding: 1.25rem 1.5rem;  /* More internal padding */
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: var(--weight-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;  /* Sharp corners */
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);  /* Subtle depth */
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);  /* Even more visible placeholder */
}

.cta-button {
    padding: 1rem 2rem;
    font-size: var(--text-sm);
    font-weight: var(--weight-light);
    font-family: var(--font-primary);
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.6);
    border-left: none;
    border-radius: 0;
    color: var(--color-turquoise);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: subtlePulse 3s ease-in-out infinite;
}

.cta-button:hover {
    background: rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.9);
    color: #5FFBF1;
    transform: scale(1.02);
    animation: none;  /* Stop pulse on hover */
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(64, 224, 208, 0);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(64, 224, 208, 0.2);
    }
}

/* Artist checkbox */
.artist-checkbox {
    margin-top: 0.75rem;
    text-align: center;
}

.artist-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-gray);
    transition: color 0.3s ease;
    font-weight: var(--weight-light);
    letter-spacing: 0.03em;
}

.artist-checkbox label:hover {
    color: var(--color-white);
}

.artist-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    appearance: none;
    border: 1px solid var(--color-gray);
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.artist-checkbox input[type="checkbox"]:checked {
    background: linear-gradient(90deg, #a0a0a0, #ffffff, #a0a0a0);
    background-size: 200% 100%;
    animation: subtleShimmer 3s ease-in-out infinite;
    border-color: #e0e0e0;
}

.artist-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.form-status {
    margin-top: 0rem;
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: var(--weight-medium);
    opacity: 0;
    transition: opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-status.success {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-black);
    opacity: 1;
    max-height: 100px;
}

.form-status.error {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    opacity: 1;
    max-height: 100px;
}

.privacy-note {
    background: linear-gradient(90deg, #808080, #a0a0a0, #808080);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtleShimmer 6s ease-in-out infinite;
    font-size: var(--text-xs);
    margin-top: var(--space-xs);
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0.8;
    font-weight: var(--weight-light);
    letter-spacing: 0.03em;
}

.talisman-text-link {
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-text-fill-color: inherit;
}

.talisman-text-link:hover {
    -webkit-text-fill-color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    padding: 3rem 0 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    min-height: 120px;
}

.talisman-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.talisman-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.talisman-logo:hover {
    transform: translateY(-2px);
}

.talisman-logo img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5)) drop-shadow(0 0 40px rgba(147, 51, 234, 0.3));
    opacity: 0.8;
    will-change: opacity, filter;
}

.talisman-logo:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.7)) drop-shadow(0 0 60px rgba(147, 51, 234, 0.4));
}

.kaspa-corner {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}

.kaspa-logo-small {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.kaspa-logo-small:hover {
    transform: scale(1.1);
}

.kaspa-logo-small img {
    transition: opacity 0.3s ease;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(64, 224, 208, 0.3));
    opacity: 0.3;
    will-change: opacity;
}

.kaspa-logo-small:hover img {
    opacity: 0.6;
}

.copyright {
    color: var(--color-dark-gray);
    font-size: var(--text-xs);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        min-height: auto;
    }
    
    .hero h2 {
        font-size: var(--text-2xl);
    }
    
    .qbit-line {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
        font-weight: var(--weight-light);
        letter-spacing: 0.05em;
    }
    
    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        font-weight: var(--weight-light);
        line-height: 1.6;
    }
    
    .intro-line {
        font-weight: var(--weight-light) !important;
    }
    
    .superpowered {
        font-size: 1.5rem;
        font-weight: var(--weight-light);
        letter-spacing: 0.08em;
        margin-top: 1.5rem;
    }
    
    .talisman-hero-logo {
        width: 160px;
        height: 160px;
    }
    
    .cta-section h3 {
        font-size: var(--text-lg);
    }
    
    .form-group {
        flex-direction: row;
        align-items: stretch;
    }
    
    .form-group input {
        border-right: none;
        font-size: 16px !important;
    }
    
    .cta-button {
        border-left: none;
        width: auto;
        justify-content: center;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        width: 100%;
    }
    
    header {
        padding: 0;  /* Remove all header padding on mobile */
        display: none;  /* Or hide it completely if empty */
    }
    
    main {
        padding-top: var(--space-sm);  /* Much less top padding */
    }
    
    .hero {
        padding: 0;
    }
    
    .hero h2 {
        font-size: var(--text-2xl);
        margin-bottom: 0.75rem;
    }
    
    /* Clean mobile layout */
    .logo-container {
        margin-top: var(--space-sm);  /* A bit more breathing room */
        margin-bottom: var(--space-md);  /* More space below logo */
    }
    
    .qbit-line {
        font-size: 2.25rem;
        font-weight: var(--weight-light);
        letter-spacing: 0.04em;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .talisman-text {
        font-weight: var(--weight-light) !important;
    }
    
    .intro-text {
        font-size: 0.95rem;
        font-weight: var(--weight-light);
        opacity: 1;
        line-height: 1.5;
        margin: 0.75rem 0;
    }
    
    .intro-line {
        font-weight: var(--weight-light) !important;
        font-size: 0.95rem !important;
        margin: 0.25rem 0;
    }
    
    .superpowered {
        font-size: 1.1rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
        font-weight: var(--weight-light);
        letter-spacing: 0.06em;
    }
    
    .tagline-line {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .industry-text {
        font-size: 0.9rem;
    }
    
    .remastered {
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }
    
    .talisman-hero-logo {
        width: 100px;
        height: 100px;
    }
    
    /* Clean mobile form */
    .form-group {
        flex-direction: row;
        gap: 0;
        width: 100%;
        max-width: none;
    }
    
    .form-group input {
        flex: 1;
        font-size: 16px !important;
        font-weight: var(--weight-light) !important;
        padding: 1rem 1.25rem !important;
        min-height: 50px;
        border-radius: 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-right: none;
    }
    
    .cta-button {
        width: auto;
        padding: 1rem 1.75rem !important;
        font-size: 1.25rem !important;
        font-weight: var(--weight-light) !important;
        min-height: 50px;
        border-radius: 0;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-left: none;
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Readable text sizes */
    .privacy-note {
        font-size: 0.8rem !important;
        font-weight: var(--weight-light) !important;
        line-height: 1.4 !important;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    .read-manifesto, .social-platform {
        font-size: 1rem !important;
        font-weight: var(--weight-light) !important;
        padding: 0.75rem 1.25rem;
        display: inline-block;
    }
    
    .artist-checkbox label {
        font-size: 1rem !important;
        font-weight: var(--weight-light) !important;
        padding: 0.5rem 0;
    }
    
    /* Better mobile spacing */
    .cta-section {
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .signup-form {
        margin-bottom: 0.25rem;
    }
    
    .success-message {
        padding: 1.5rem;
    }
    
    .artist-checkbox {
        margin-top: 0.25rem;
        margin-bottom: 0rem;
    }
    
    .manifesto-link {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .social-link {
        margin-top: 1rem;
    }
    
    /* Manifesto on mobile */
    .learn-more-panel.active {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .learn-more-panel p {
        font-size: 1rem;
        line-height: 1.7;
        font-weight: var(--weight-light);
    }
    
    .manifesto-section h4 {
        font-size: 1.25rem;
        font-weight: var(--weight-normal);
        margin-bottom: 1rem;
    }
    
    .pull-quote {
        font-size: 1.1rem;
        padding: 1.5rem 1rem;
        font-weight: var(--weight-light);
    }
}

