:root {
    --bg: #0a0a0a;
    --card: #161616;
    --accent: #6366f1;
    --text: #ffffff;
    --subtext: #a1a1aa;
    --red: #ef4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg); 
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.squeeze-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    gap: 60px;
}

/* Header & Typography */
.logo { font-weight: 900; font-size: 1.5rem; margin-bottom: 30px; }
.logo span { color: var(--accent); }
.badge { 
    display: inline-block; padding: 6px 14px; background: rgba(99, 102, 241, 0.1); 
    border: 1px solid var(--accent); color: var(--accent); 
    border-radius: 4px; font-size: 0.75rem; font-weight: 700; margin-bottom: 20px;
}
h1 { font-size: 4rem; line-height: 1; margin-bottom: 24px; letter-spacing: -2.5px; }
h1 span { color: var(--accent); }
.content-side p { font-size: 1.25rem; color: var(--subtext); margin-bottom: 40px; line-height: 1.5; }

.benefit-list { list-style: none; }
.benefit-list li { margin-bottom: 15px; font-size: 1.1rem; color: #e4e4e7; display: flex; align-items: center; gap: 10px; }
.check { color: var(--accent); font-weight: 900; }

/* Conversion Card */
.glass-card { 
    background: var(--card); 
    padding: 50px; border-radius: 28px; 
    border: 1px solid #262626; 
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
}

/* Progress Bar */
.progress-container { margin-bottom: 20px; }
.progress-text { font-size: 0.8rem; margin-bottom: 8px; color: var(--subtext); }
.progress-bar { background: #262626; height: 6px; border-radius: 10px; overflow: hidden; }
.progress-fill { 
    width: 90%; background: var(--accent); height: 100%; 
    animation: loading 2s ease-out;
}

/* Timer */
.timer-box { 
    background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2); 
    padding: 12px; border-radius: 8px; margin-bottom: 25px; 
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--red); font-weight: 700;
}
#countdown { background: var(--red); color: #fff; padding: 2px 8px; border-radius: 4px; font-family: monospace; }

/* Input & Button */
.input-group input {
    width: 100%; padding: 18px; background: #000; border: 1px solid #262626;
    border-radius: 10px; color: #fff; font-size: 1rem; margin-bottom: 15px; outline: none;
}
.btn-submit {
    width: 100%; padding: 20px; background: var(--accent); color: #fff;
    border: none; border-radius: 10px; font-weight: 800; font-size: 1.1rem;
    cursor: pointer; transition: 0.3s;
    animation: pulse-glow 2.5s infinite;
}

/* Animations */
@keyframes loading { from { width: 0%; } to { width: 90%; } }
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* Toast */
.live-toast {
    position: fixed; bottom: -100px; left: 30px; background: #1a1a1a;
    border: 1px solid #333; padding: 12px 25px; border-radius: 50px;
    display: flex; align-items: center; gap: 12px; transition: 0.5s; z-index: 999;
}
.live-toast.show { bottom: 30px; }

/* Responsive */
@media (max-width: 992px) {
    .squeeze-container { grid-template-columns: 1fr; padding: 20px; text-align: center; }
    h1 { font-size: 2.8rem; }
    .benefit-list { display: inline-block; text-align: left; }
}