/* Brand Colors */
:root {
    --bd-purple: #4c0bce;
    --bd-violet: #712cf9;
    --bd-accent: #ffe484;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bd-accent-rgb: 255, 228, 132;
    --bd-pink-rgb: 214, 51, 132;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Gradient Background - Matching Homepage */
.gradient-bg {
    min-height: 100vh;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 1) 85%),
        radial-gradient(ellipse at top left, rgba(var(--bd-violet-rgb), 0.5), transparent 50%),
        radial-gradient(ellipse at top right, rgba(var(--bd-accent-rgb), 0.5), transparent 50%),
        radial-gradient(ellipse at center right, rgba(var(--bd-violet-rgb), 0.5), transparent 50%),
        radial-gradient(ellipse at center left, rgba(var(--bd-pink-rgb), 0.5), transparent 50%);
    background-color: var(--bd-violet);
    padding: 2rem 1rem;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Branding */
.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease-in-out;
}

.brand-name:hover {
    transform: rotate(-2deg) scale(1.05);
}

.tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 228, 132, 0.9);
    color: var(--bd-violet);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bd-violet), var(--bd-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bd-violet);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Signup Card */
.signup-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.signup-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bd-violet);
    margin-bottom: 0.75rem;
}

.signup-subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: var(--bd-violet);
    box-shadow: 0 0 0 0.25rem rgba(var(--bd-violet-rgb), 0.25);
    outline: 0;
}

/* Signup Button */
.btn-signup {
    background: linear-gradient(135deg, var(--bd-violet), var(--bd-purple));
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-signup:active {
    transform: translateY(0);
}

/* Footer - Matching KindHabitLabs Site */
footer {
    background-color: #f8f9fa !important;
}

footer a {
    transition: color 0.2s ease-in-out;
}

footer a:hover {
    color: var(--bd-violet) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .signup-card {
        padding: 2rem 1.5rem;
    }

    .signup-title {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .signup-card {
        padding: 1.5rem 1rem;
    }
}
