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

.urgency-banner {
    background: linear-gradient(90deg, #f59e0b, #dc2626);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-bonus {
    background: #ecfdf5;
    border: 2px dashed #10b981;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    font-weight: 600;
    color: #065f46;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.6s ease;
    text-align: center;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

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

h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

h1 .bloodweb-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a5568;
    margin-left: -20px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

h1 .title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

h1 .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

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

h1 svg {
    width: 48px;
    height: 48px;
    fill: url(#linkGradient);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.subtitle {
    font-size: 1.35rem;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    text-align: left;
}

.feature {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: currentColor;
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature:nth-child(4) .feature-icon { animation-delay: 0.6s; }

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
}        .feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.beta-badge {
    display: inline-block;
    background: #ffffff;
    color: #6366f1 !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3), inset 0 0 0 2px #6366f1;
    animation: betaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.beta-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: betaShine 3s infinite;
}

@keyframes betaPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3), inset 0 0 0 2px #6366f1;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5), inset 0 0 0 2px #6366f1;
        transform: scale(1.05);
    }
}

@keyframes betaShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }
    
    .container {
        padding: 32px 20px;
    }
    
    h1 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
    
    .subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px 0;
    }
    
    .feature {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .container {
        padding: 40px 25px;
        margin: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }
    
    .btn {
        width: 100%;
        padding: 20px 32px;
        font-size: 1.125rem;
    }
    
    .beta-badge {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
    }
    
    .urgency-banner {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
}

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

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

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
        transform: translateY(-2px);
    }
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 35px 0;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.social-proof:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
}

.social-proof-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.social-proof svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
    flex-shrink: 0;
}

.social-proof-text {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05rem;
    text-align: center;
}

@media (max-width: 768px) {
    .social-proof {
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px;
    }
    
    .social-proof-text {
        font-size: 0.95rem;
    }
}

.benefit-list li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
}

/* Subtitle styling */
.subtitle-primary {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.subtitle-secondary {
    margin-bottom: 25px;
    font-weight: 500;
}

.subtitle-secondary strong {
    color: #667eea;
    text-decoration: underline;
    text-decoration-color: rgba(102, 126, 234, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Pain point section */
.pain-point {
    margin: 50px 0;
    padding: 32px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
    border: 2px solid #ef4444;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
}

.pain-point h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #991b1b;
    margin-bottom: 12px;
}

.pain-point p {
    font-size: 1.15rem;
    color: #7f1d1d;
    line-height: 1.7;
    margin: 0;
}

.pain-point-strikethrough {
    text-decoration: line-through;
}

.pain-point-emphasis {
    color: #dc2626;
}

/* Benefits section heading */
.benefits-heading {
    font-size: 2rem;
    font-weight: 800;
    margin: 50px 0 30px;
    color: #1f2937;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Benefit list items styling */
.benefit-item {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    list-style: none;
}

.benefit-item-purple {
    border-left: 4px solid #667eea;
}

.benefit-item-purple strong {
    color: #667eea;
}

.benefit-item-violet {
    border-left: 4px solid #764ba2;
}

.benefit-item-violet strong {
    color: #764ba2;
}

.benefit-item::before {
    content: "✓";
    position: absolute;
    left: 5%;
    color: #10b981;
    font-weight: 800;
    font-size: 1.4rem;
}

.benefit-item {
    position: relative;
    padding-left: 35px;
}

/* CTA styling */
.cta-info {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #6b7280;
}

.btn-primary-cta {
    font-size: 1.25rem;
    padding: 22px 48px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
}

.btn-secondary-cta {
    font-size: 1.1rem;
}

/* Real talk warning box */
.real-talk-box {
    margin-top: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    border: 3px solid #f59e0b;
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.real-talk-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.real-talk-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.real-talk-text {
    font-size: 1.05rem;
    color: #78350f;
    line-height: 1.7;
    position: relative;
    font-weight: 500;
}

.real-talk-text strong {
    color: #92400e;
}

/* Urgency banner enhancement */
.urgency-banner-enhanced {
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}
