/*
Theme Name: Creator Vitals
Theme URI: https://creatorvitals.com
Author: Windrush Labs
Author URI: https://windrushlabs.com
Description: Coming soon landing page for Creator Vitals, an AI-powered inbox and ticketing system for content creators.
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creatorvitals
Tags: full-site-editing, block-patterns, block-styles
*/

/* Remove gap between header and main content */
.wp-site-blocks > main {
    margin-block-start: 0;
}

/* Remove gaps between adjacent full-width sections */
.wp-block-group.alignfull + .wp-block-group.alignfull {
    margin-top: 0;
}

/* Equal height cards in columns */
.wp-block-columns > .wp-block-column {
    display: flex;
    flex-direction: column;
}
.wp-block-columns > .wp-block-column > .wp-block-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Align header buttons with navigation */
header .wp-block-buttons,
header .wp-block-button {
    margin: 0;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #D946EF 0%, #8B5CF6 40%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Coming soon pill badge */
.coming-soon-badge {
    padding: 6px 20px;
    border: 1px solid rgba(192, 38, 211, 0.7);
    border-radius: 100px;
    background: rgba(192, 38, 211, 0.1);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Feature card */
.feature-card {
    position: relative;
}

/* Step number styling */
.step-number {
    background: linear-gradient(135deg, #D946EF 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
}

/* Gradient divider line */
.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D946EF 30%, #06B6D4 70%, transparent 100%);
    border: none;
    margin: 0 auto;
    max-width: 600px;
}
