/* ============================================
   THE 7-DAY SOVEREIGNTY PROTOCOL
   Complete Redesign - Optimized for Conversion
   ============================================ */

:root {
    --bg-black: #050505;
    --text-color: #E0E0E0;
    --terminal-green: #00FF41;
    --alert-red: #FF3333;
    --pure-white: #FFFFFF;
    --dark-grey: #1a1a1a;
    
    --font-headline: 'Oswald', sans-serif;
    --font-body: 'Courier Prime', 'Space Mono', monospace;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--terminal-green);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--terminal-green) #050505;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: #E0E0E0; /* Matte off-white */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-weight: 300; /* Lighter body text */
}

/* Flashlight Effect */
body {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 255, 65, 0.03),
        transparent 80%
    ), #050505;
}

/* Headlines get heavy weight and glow */
h1, h2, h3 {
    font-weight: 700;
}

/* CRT Monitor Effects - Optimized */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 9997;
}

/* Noise Texture - Simplified */
@keyframes noise {
    0%, 100% { opacity: 0.02; }
    50% { opacity: 0.04; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ============================================
   BATTERY SCROLL INDICATOR
   ============================================ */
.battery-scroll {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 30px;
}

.battery-scroll-body {
    width: 100%;
    height: 200px;
    border: 3px solid var(--terminal-green);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.battery-scroll-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--terminal-green), var(--alert-red));
    transition: height 0.1s linear, background 0.3s ease;
}

.battery-scroll-tip {
    width: 60%;
    height: 8px;
    background: var(--terminal-green);
    margin: 0 auto;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* ============================================
   MATRIX RAIN
   ============================================ */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

/* ============================================
   SYSTEM LOGS
   ============================================ */
.system-logs {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-height: 150px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(0, 255, 65, 0.7);
    overflow: hidden;
    z-index: 998;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.logs-scroll {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: scroll-logs 1s linear;
}

.log-entry {
    white-space: nowrap;
    opacity: 0;
    animation: fade-in-log 0.3s ease forwards;
}

@keyframes fade-in-log {
    to { opacity: 1; }
}

@keyframes scroll-logs {
    from { transform: translateY(20px); }
    to { transform: translateY(0); }
}

/* ============================================
   HEADER BAR
   ============================================ */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-bottom: 1px solid var(--terminal-green);
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--terminal-green);
    letter-spacing: 1px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.pre-header {
    font-family: var(--font-body);
    font-size: clamp(11px, 2vw, 14px);
    color: var(--terminal-green);
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.4); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 65, 0.6); }
}

.hero-section h1 {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 65, 0.4),
            0 0 40px rgba(0, 255, 65, 0.3),
            0 0 60px rgba(0, 255, 65, 0.2),
            0 0 80px rgba(0, 255, 65, 0.1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 65, 0.6),
            0 0 60px rgba(0, 255, 65, 0.5),
            0 0 90px rgba(0, 255, 65, 0.3),
            0 0 120px rgba(0, 255, 65, 0.2);
    }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text:hover {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.sub-headline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Emphasis */
strong {
    font-weight: 700;
    color: var(--pure-white);
}

/* CTA Button */
.cta-button {
    font-family: var(--font-headline);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--pure-white);
    background: var(--alert-red);
    border: none;
    padding: 20px 60px;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4);
}

.cta-button:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6);
}

.cta-button.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 51, 51, 0.7);
    }
}

.cta-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--bg-black);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-side h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pure-white);
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 65ch; /* Cap line length */
    font-weight: 300;
}

.error-list {
    margin: 40px 0;
    max-width: 70ch; /* Cap line length */
}

.error-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.error-item .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.error-content {
    font-size: 16px;
    line-height: 1.6;
    color: #E0E0E0;
    font-weight: 300;
}

/* Redacted Words */
.redacted {
    background: #000;
    color: transparent;
    padding: 2px 8px;
    cursor: crosshair;
    position: relative;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.redacted:hover,
.redacted.revealed {
    background: transparent;
    color: var(--alert-red);
    border-color: var(--alert-red);
    animation: glitch-reveal 0.3s ease;
}

@keyframes glitch-reveal {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.result-text {
    margin-top: 40px;
    padding: 24px;
    border-left: 4px solid var(--alert-red);
    background: rgba(255, 51, 51, 0.05);
    font-size: 18px;
    line-height: 1.6;
    color: var(--alert-red);
    max-width: 70ch;
    font-weight: 400;
}

/* Battery Icon */
.battery-icon {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.battery-body {
    width: 100%;
    height: 200px;
    border: 4px solid var(--alert-red);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 51, 51, 0.05);
}

.battery-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--alert-red), transparent);
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.battery-tip {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 60px;
    background: var(--alert-red);
    border-radius: 0 4px 4px 0;
}

.crack-line {
    position: absolute;
    background: var(--alert-red);
    width: 3px;
    height: 100px;
}

.crack-1 {
    top: 30px;
    left: 40%;
    transform: rotate(25deg);
}

.crack-2 {
    top: 50px;
    left: 50%;
    transform: rotate(-15deg);
}

.crack-3 {
    top: 70px;
    left: 60%;
    transform: rotate(35deg);
}

.battery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--alert-red);
    letter-spacing: 4px;
}

/* ============================================
   OFFER SECTION (VALUE STACK)
   ============================================ */
.offer-section {
    background: var(--dark-grey);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.offer-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Continuous Receipt Container */
.receipt-container {
    max-width: 900px;
    margin: 0 auto;
    background: 
        url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E'),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 255, 65, 0.03) 100%);
    border: 2px solid var(--terminal-green);
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 65, 0.1),
        0 0 20px rgba(0, 255, 65, 0.2);
    position: relative;
}

.receipt-header-banner {
    background: var(--terminal-green);
    color: #000;
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--terminal-green);
}

/* Receipt Item Names - Courier */
.receipt-row span:first-child {
    font-family: 'Courier Prime', monospace;
    flex-shrink: 0;
}

/* Receipt Prices - Oswald */
.receipt-row span:last-child {
    font-family: var(--font-headline);
    flex-shrink: 0;
    color: var(--terminal-green);
    font-weight: 700;
    text-align: right;
}

.total-value-header {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 0;
    color: var(--text-color);
}

.strikethrough-red {
    color: var(--alert-red);
    position: relative;
    display: inline-block;
}

/* Animated strikethrough */
.total-value-header.strikethrough-active .strikethrough-red::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    height: 3px;
    background: var(--alert-red);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
    animation: strike-through 0.5s ease forwards;
}

@keyframes strike-through {
    to {
        transform: translateY(-50%) scaleX(1);
    }
}

.stack-list {
    margin: 0;
    padding: 0;
}

.stack-item {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    border-left: none;
    padding: 24px 30px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Last stack item with zigzag border */
.stack-item-last {
    border-bottom: none;
    position: relative;
}

.stack-item-last::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: 
        linear-gradient(135deg, var(--terminal-green) 25%, transparent 25%),
        linear-gradient(225deg, var(--terminal-green) 25%, transparent 25%);
    background-position: 0 0, 8px 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
}

.stack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.stack-item:hover::before {
    left: 100%;
}

.stack-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-color: var(--terminal-green);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        -4px 0 20px rgba(0, 255, 65, 0.3),
        0 0 40px rgba(0, 255, 65, 0.1);
}

/* Mobile tap state */
.stack-item.tapped {
    background: rgba(0, 255, 65, 0.15) !important;
    transform: scale(0.98);
}

/* Lock Icon Unlock Animation */
.lock-icon {
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.stack-item:hover .lock-icon {
    transform: scale(1.2) rotate(-10deg);
}

.stack-item:hover .lock-icon::after {
    content: '🔓';
    position: absolute;
    animation: unlock-flash 0.3s ease;
}

@keyframes unlock-flash {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1); }
}

.stack-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stack-header .lock-icon {
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.3));
}

.stack-item:hover .lock-icon {
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.8));
}

.stack-header .title {
    font-family: var(--font-headline);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--terminal-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
}

.stack-item:hover .stack-header .title {
    color: var(--pure-white);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    letter-spacing: 1px;
}

.stack-value {
    color: var(--alert-red);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.stack-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 15px;
}

/* Price Anchor - Receipt Style (Continuous) */
.price-anchor {
    margin: 0;
    padding: 30px;
    border: none;
    border-top: 2px dashed var(--terminal-green);
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: none;
    position: relative;
}

.price-anchor::before {
    content: 'CLASSIFIED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--alert-red);
    color: var(--pure-white);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(0deg);
}

.receipt-items {
    margin: 20px 0;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #E0E0E0;
}

.receipt-row span {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.receipt-row .dots {
    flex-grow: 1;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(0, 255, 65, 0.3) 0,
        rgba(0, 255, 65, 0.3) 3px,
        transparent 3px,
        transparent 8px
    );
    margin: 0 8px;
}

.receipt-divider {
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--terminal-green) 0,
        var(--terminal-green) 10px,
        transparent 10px,
        transparent 20px
    );
    margin: 20px 0;
}

.price-line {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.new-price {
    color: var(--terminal-green);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 40px rgba(0, 255, 65, 0.4);
    animation: price-pulse 2s ease-in-out infinite;
    transform: scale(0);
    visibility: hidden;
}

@keyframes price-pulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 65, 0.6),
            0 0 40px rgba(0, 255, 65, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 65, 0.8),
            0 0 60px rgba(0, 255, 65, 0.6);
    }
}

.price-line.final {
    margin-bottom: 0;
    margin-top: 10px;
}

.receipt-footer {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--alert-red);
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 51, 51, 0.3);
    letter-spacing: 2px;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
    background: var(--bg-black);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.filter-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* VS Lightning Bolt Divider */
.filter-grid::before {
    content: 'VS';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-headline);
    font-size: 56px;
    font-weight: 700;
    color: var(--pure-white);
    background: #000;
    padding: 20px 24px;
    border: 3px solid var(--terminal-green);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.6),
        0 0 60px rgba(0, 255, 65, 0.3);
    z-index: 10;
    text-shadow: 
        0 0 20px rgba(0, 255, 65, 0.8),
        0 0 40px rgba(0, 255, 65, 0.5);
    border-radius: 4px;
}

.filter-column {
    padding: 40px 32px;
    border: 2px solid;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Consumer Column - DEAD SYSTEM */
.filter-column.not-for-you {
    border-color: rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.03);
    opacity: 0.6;
    filter: grayscale(20%) brightness(0.8);
    box-shadow: inset 0 0 30px rgba(255, 0, 0, 0.05);
}

/* Sovereign Column - ACTIVE SYSTEM */
.filter-column.for-you {
    border: 3px solid var(--terminal-green);
    background: rgba(0, 255, 65, 0.05);
    opacity: 1;
    filter: brightness(1.1);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.3),
        inset 0 0 50px rgba(0, 255, 65, 0.08);
    position: relative;
}

.filter-column.for-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terminal-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.filter-column h3 {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-column.for-you h3 {
    color: var(--terminal-green);
}

.filter-column.not-for-you h3 {
    color: var(--alert-red);
}

.filter-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.filter-item .icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Dead icons for consumers */
.filter-column.not-for-you .filter-item .icon {
    opacity: 0.4;
    filter: grayscale(100%);
}

/* Active icons for sovereigns */
.filter-column.for-you .filter-item .icon {
    filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.6));
}

.filter-item .text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

/* ============================================
   REASON SECTION (LETTER)
   ============================================ */
.reason-section {
    background: var(--dark-grey);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.letter-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 40px;
}

.letter-header {
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: var(--terminal-green);
}

.letter-header p {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

.letter-body p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-color);
}

.letter-body .final-line {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--terminal-green);
    font-weight: 700;
}

/* ============================================
   GAP SECTION (COMPARISON)
   ============================================ */
.gap-section {
    background: var(--bg-black);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gap-column {
    padding: 32px;
    border: 2px solid;
    position: relative;
}

/* Small Battery Icons */
.battery-icon-small {
    width: 40px;
    height: 20px;
    border: 2px solid;
    border-radius: 3px;
    position: relative;
    margin: 0 auto 20px;
    display: block;
}

.battery-icon-small::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 10px;
    background: inherit;
    border-radius: 0 2px 2px 0;
}

.battery-icon-small.drained {
    border-color: var(--alert-red);
    background: rgba(255, 51, 51, 0.2);
}

.battery-icon-small.drained::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--alert-red);
}

.battery-icon-small.drained::after {
    background: var(--alert-red);
}

.battery-icon-small.full {
    border-color: var(--terminal-green);
    background: var(--terminal-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.battery-icon-small.full::after {
    background: var(--terminal-green);
}

.gap-column.consumers {
    border-color: var(--alert-red);
    background: rgba(255, 51, 51, 0.02);
}

.gap-column.graduates {
    border-color: var(--terminal-green);
    background: rgba(0, 255, 65, 0.02);
}

.gap-column h3 {
    font-family: var(--font-headline);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gap-column.consumers h3 {
    color: var(--alert-red);
}

.gap-column.graduates h3 {
    color: var(--terminal-green);
}

.gap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.gap-item .icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.gap-item p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: var(--dark-grey);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    text-align: center;
}

.final-cta-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--pure-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-sub-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-timer {
    margin: 40px auto;
    padding: 30px;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(255, 51, 51, 0.5);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 30px rgba(255, 51, 51, 0.1),
        0 0 20px rgba(255, 51, 51, 0.2);
}

.timer-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--alert-red);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 18px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 4px;
    min-width: 70px;
}

.timer-value {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--alert-red);
    font-weight: 700;
    line-height: 1;
    text-shadow: 
        0 0 10px rgba(255, 51, 51, 0.6),
        0 0 20px rgba(255, 51, 51, 0.4);
}

.timer-unit {
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(255, 51, 51, 0.7);
    letter-spacing: 1px;
    margin-top: 5px;
}

.timer-separator {
    font-size: 2rem;
    color: var(--alert-red);
    font-weight: 700;
    animation: blink-separator 1s step-end infinite;
}

@keyframes blink-separator {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

#signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input {
    width: 100%;
    padding: 20px 20px 20px 0;
    font-family: var(--font-body);
    font-size: 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
    color: var(--terminal-green);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.form-row input:focus {
    outline: none;
    border-bottom-color: var(--terminal-green);
    box-shadow: 0 2px 0 0 rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.03);
}

/* Blinking Cursor Effect */
.form-row input:focus::after {
    content: '█';
    color: var(--terminal-green);
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Custom cursor blinking in input - using data attribute */
.form-row {
    position: relative;
}

.form-row.focused::after {
    content: '█';
    position: absolute;
    right: 10px;
    bottom: 25px;
    color: var(--terminal-green);
    font-size: 18px;
    animation: blink-cursor 1s step-end infinite;
    pointer-events: none;
}

.form-row input::placeholder {
    color: rgba(224, 224, 224, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#honeypot {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

.cta-button.final {
    width: 100%;
    margin-top: 10px;
    font-size: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: var(--terminal-green); /* Solid green */
    color: #000; /* Black text */
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.cta-button.final:hover {
    background: #00ff41;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.9);
    transform: translateY(-2px);
}

.fingerprint-icon {
    display: none;
}

@keyframes scan-fingerprint {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: brightness(1.5);
    }
}

/* Crosshair Cursor on Button Hover */
.cta-button.final:hover {
    cursor: crosshair;
}

.form-microcopy {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(224, 224, 224, 0.6);
    text-align: center;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.form-message {
    margin-top: 24px;
    padding: 20px;
    border-radius: 4px;
    font-size: 16px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--terminal-green);
    color: var(--terminal-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid var(--alert-red);
    color: var(--alert-red);
    display: block;
}

/* ============================================
   EXIT INTENT MODAL
   ============================================ */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-modal.active {
    display: flex;
    opacity: 1;
}

.exit-modal-content {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid var(--alert-red);
    padding: 50px;
    max-width: 600px;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(255, 51, 51, 0.5),
        inset 0 0 50px rgba(255, 51, 51, 0.1);
    animation: modal-glitch 0.3s ease;
}

@keyframes modal-glitch {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-3px, -3px); }
}

.exit-warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse-warning 1s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.exit-headline {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--alert-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.exit-body {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.exit-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.exit-resume {
    font-family: var(--font-headline);
    font-size: 18px;
    padding: 20px 40px;
    background: var(--terminal-green);
    color: #000;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.exit-resume:hover {
    background: #00ff41;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8);
    transform: scale(1.05);
}

.exit-abort {
    font-family: var(--font-headline);
    font-size: 18px;
    padding: 20px 40px;
    background: transparent;
    color: rgba(224, 224, 224, 0.5);
    border: 2px solid rgba(224, 224, 224, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.exit-abort:hover {
    color: var(--text-color);
    border-color: var(--text-color);
}

/* ============================================
   SUCCESS WORMHOLE
   ============================================ */
.wormhole-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    flex-direction: column;
}

.wormhole-overlay.active {
    display: flex;
    opacity: 1;
}

.wormhole-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10002;
}

.wormhole-text {
    opacity: 0;
    transform: scale(0.8);
}

.wormhole-overlay.active .wormhole-text {
    animation: wormhole-text-appear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.wormhole-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--terminal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8);
}

.wormhole-message {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--terminal-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.wormhole-submessage {
    font-family: 'Courier Prime', monospace;
    font-size: 16px;
    color: var(--off-white);
    letter-spacing: 1px;
}

.wormhole-overlay.collapsing .wormhole-text {
    animation: wormhole-text-disappear 0.6s ease forwards;
}

@keyframes wormhole-text-appear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes wormhole-text-disappear {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.wormhole-line {
    width: 100%;
    height: 2px;
    background: var(--terminal-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
    transform: scaleX(0);
    position: absolute;
    top: 50%;
}

.wormhole-overlay.collapsing .wormhole-line {
    animation: collapse-wormhole 1.5s cubic-bezier(0.87, 0, 0.13, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes collapse-wormhole {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(1) scaleY(0);
        opacity: 0;
    }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
section {
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Hero section always visible */
.hero-section {
    opacity: 1;
    transform: translateY(0);
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UNSTABLE ATMOSPHERE - BORDER FLICKER
   ============================================ */
@keyframes border-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.filter-column.for-you,
.form-row input:focus,
.receipt-container {
    animation: border-flicker 0.05s ease-in-out;
    animation-play-state: paused;
}

.flicker-active .filter-column.for-you,
.flicker-active .form-row input:focus,
.flicker-active .receipt-container {
    animation-play-state: running;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000000;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.footer p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--terminal-green);
    letter-spacing: 1px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.98) 100%);
    padding: 20px 16px;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.9);
    border-top: 2px solid var(--terminal-green);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta button {
    width: 100%;
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: var(--terminal-green);
    border: none;
    padding: 18px;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--pure-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   MOBILE TOUCH RIPPLE
   ============================================ */
.touch-ripple {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.4), transparent);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
    z-index: 9999;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    /* Larger tap targets */
    .stack-item {
        min-height: 44px;
        padding: 28px 30px;
    }
    
    .timer-block {
        min-height: 44px;
        padding: 15px 18px;
    }
    
    .filter-item {
        min-height: 44px;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        font-size: 9px;
        gap: 10px;
    }
    
    .system-logs {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
    }
    
    .sub-headline {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.5;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-side {
        order: 2;
    }
    
    .text-side {
        order: 1;
    }
    
    .text-side h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .filter-grid,
    .gap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Hide VS divider on mobile */
    .filter-grid::before {
        display: none;
    }
    
    .sticky-cta {
        display: block;
    }
}

/* Extra-small devices: keep battery but make it subtle */
@media (max-width: 480px) {
    .battery-scroll {
        width: 4px;
        right: 6px;
        opacity: 0.6;
    }

    .battery-scroll-body {
        border-width: 1px;
    }
}

/* Form error visuals */
.form-row input.input-error {
    border-color: var(--alert-red);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

#signup-form.shake {
    animation: shake-form 0.35s ease;
}

@keyframes shake-form {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .header-content span:nth-child(2) {
        display: none;
    }
    
    .hero-section h1 {
        font-size: clamp(1.75rem, 12vw, 2.5rem);
        margin-bottom: 30px;
    }
    
    .pre-header {
        font-size: 10px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        width: 100%;
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .stack-item,
    .filter-column,
    .gap-column {
        padding: 20px;
    }
    
    .stack-header .title {
        font-size: 1rem;
    }
    
    .letter-box {
        padding: 24px;
    }
    
    .receipt-row {
        font-size: 12px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    /* Countdown timer mobile */
    .countdown-timer {
        padding: 20px;
        margin: 30px auto;
    }
    
    .timer-display {
        gap: 5px;
    }
    
    .timer-block {
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .timer-value {
        font-size: 1.5rem;
    }
    
    .timer-unit {
        font-size: 8px;
    }
    
    .timer-separator {
        font-size: 1.2rem;
    }
}