:root {
    --background-color: #0B0F1A;
    --card-background: #12182B;
    --card-border: rgba(255, 255, 255, 0.05);
    --primary-color: #7C5CFF; /* Purple/Blue Accent */
    --primary-hover: #6441F0;
    --text-color: #FFFFFF;
    --text-secondary: #A3A8C3;
    --success-color: #10B981;
    --glow-color: rgba(124, 92, 255, 0.4);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, #1a2236 0%, #0B0F1A 70%);
}

.app-container {
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-icon {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.progress-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.progress-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #A78BFA);
    width: 0%;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px var(--glow-color);
}

.progress-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 8px;
    min-height: 1.2em;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Main Content */
.funnel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step {
    display: none;
    width: 100%;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Cards & Layout */
.content-box {
    background: var(--card-background);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wide-box {
    text-align: left;
    padding: 30px;
}

/* Icons Styles */
.icon-badge-large {
    width: 80px;
    height: 80px;
    background: rgba(124, 92, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(124, 92, 255, 0.2);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.1);
}

.hero-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.step-icon {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.question-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

/* Typography */
.headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #A3A8C3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.headline-small {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    text-align: left;
    line-height: 1.3;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--glow-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 92, 255, 0.6);
}

.btn-primary:hover::after {
    left: 100%;
}

.option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-btn:hover {
    background: rgba(124, 92, 255, 0.1);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.option-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--primary-color);
}

.option-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Slider */
.slider-section {
    padding: 20px 0;
}

.slider-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.slider-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.8;
}

.slider-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: baseline;
}

.per-month {
    font-size: 1rem;
    opacity: 0.5;
    margin-left: 5px;
    font-weight: 500;
}

.slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-color);
    border: 2px solid #fff;
    transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.slider-note {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.note-icon {
    width: 16px;
    height: 16px;
}

/* Loading */
.loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.2);
}

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

.loading-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Results */
.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-badge {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.badge-icon {
    color: var(--success-color);
    width: 20px;
    height: 20px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.summary-icon {
    color: var(--primary-color);
    opacity: 0.8;
    margin-top: 2px;
}

.summary-icon svg {
    width: 18px;
    height: 18px;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.simulation-card {
    background: linear-gradient(145deg, rgba(124, 92, 255, 0.1) 0%, rgba(18, 24, 43, 0.8) 100%);
    border: 1px solid rgba(124, 92, 255, 0.3);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.simulation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.sim-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sim-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

.highlight-goal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.subscribers-needed {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-scenario {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.main-sub-count {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(124, 92, 255, 0.4);
}

.main-sub-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-icon {
    width: 16px;
    height: 16px;
}

.timeline-visual {
    position: relative;
    margin: 30px 0;
    padding-left: 20px;
}

.timeline-visual::before {
    content: '';
    position: absolute;
    left: 19px; /* Adjusted for icon center */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
}

.timeline-icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #12182B;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 10px rgba(124, 92, 255, 0.2);
}

.timeline-icon-box svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.timeline-time {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Proof */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.proof-item {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.proof-placeholder {
    height: 200px;
    background: #1A2035;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    font-family: monospace;
}

.proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px 15px 10px;
}

.proof-caption {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    font-style: italic;
}

/* Offer */
.offer-box {
    text-align: center;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(124, 92, 255, 0.15);
}

.offer-header {
    margin-bottom: 30px;
}

.offer-tag {
    background: rgba(124, 92, 255, 0.2);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    border: 1px solid rgba(124, 92, 255, 0.3);
}

.offer-benefits {
    text-align: left;
    margin: 30px auto;
    display: inline-block;
    color: var(--text-secondary);
    list-style: none;
}

.offer-benefits li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    color: var(--success-color);
    width: 18px;
    height: 18px;
}

.price-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.price-sub {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.btn-cta-final {
    background: var(--success-color);
    color: #fff;
    border: none;
    padding: 22px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cta-final:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.secure-checkout-text {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.7;
}

@media (min-width: 640px) {
    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .app-container {
        justify-content: center;
    }
}

/* New Micro-copy Styles */
.input-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 20px;
    opacity: 0.7;
    font-style: italic;
}

.slider-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 5px;
    opacity: 0.6;
}

.result-interpretation {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Pattern Step */
.pattern-list {
    text-align: left;
    margin: 20px 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.pattern-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pattern-list li strong {
    color: #fff;
}

.pattern-check {
    color: var(--success-color);
    width: 16px;
    height: 16px;
}

/* Filter Step */
.filter-box {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.05) 0%, var(--card-background) 100%);
}

.red-flag-list {
    text-align: left;
    margin: 25px 0;
    list-style: none;
}

.red-flag-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
}

.red-flag-icon {
    color: #EF4444; /* Red */
    width: 20px;
    height: 20px;
}

/* Offer Updates */
.guarantee-box {
    margin-top: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(16, 185, 129, 0.3);
    font-size: 0.85rem;
    font-size: 0.85rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.final-phrase {
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    font-style: italic;
}
