/* Tool Landing Page Styles */

/* Hero */
.tool-hero {
    background: linear-gradient(
        rgba(20, 29, 55, 0.90),
        rgba(20, 29, 55, 0.90)
    ), url('TpT-StoreBanner.png');
    background-size: cover;
    background-position: center;
    color: var(--soft-cream);
    padding: 8rem 0 6rem;
    text-align: center;
}

.tool-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-badge-hero {
    display: inline-block;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    background: linear-gradient(45deg, #6b7280, #9ca3af);
}

.tool-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.4pt;
    color: var(--soft-cream);
}

/* Disabled CTA button */
.cta-button-disabled {
    display: inline-block;
    background: #6b7280;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Features Section */
.tool-features {
    padding: 6rem 0;
    background: white;
}

.tool-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foiled-navy);
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--soft-cream);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(236, 93, 130, 0.15);
    border-color: var(--bright-pink);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--foiled-navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Proof Section */
.tool-proof {
    padding: 6rem 0;
    background: var(--soft-cream);
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proof-text h2 {
    font-size: 2rem;
    color: var(--foiled-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.4pt;
    line-height: 1.2;
}

.proof-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.proof-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.proof-stat {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.proof-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.tool-cta {
    padding: 6rem 0;
    background: var(--foiled-navy);
    text-align: center;
}

.tool-cta h2 {
    font-size: 2.5rem;
    color: var(--soft-cream);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.4pt;
}

.tool-cta .cta-tagline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--bright-pink), var(--vibrant-orange), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--soft-cream);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tool-hero h1 {
        font-size: 2rem;
    }

    .tool-hero {
        padding: 5rem 0 4rem;
    }

    .proof-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .proof-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .proof-stat {
        flex: 1;
        min-width: 120px;
    }

    .proof-number {
        font-size: 1.8rem;
    }
}
