:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --pink-600: #db2777;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--purple-50), white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: white;
    box-shadow: 0 2px 4px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gray-700);
}

.button {
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.button.large {
    padding: 12px 24px;
    font-size: 18px;
}

/* Updated Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 80px 0;
    align-items: center;
    background: var(--purple-50);
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.button.outline {
    background: transparent;
    border: 2px solid var(--purple-600);
    color: var(--purple-600);
}

.button.outline:hover {
    background: var(--purple-50);
}

.social-proof {
    display: flex;
    gap: 32px;
    align-items: center;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating span {
    color: #fbbf24;
    font-size: 20px;
}

.rating p, .users p {
    font-size: 14px;
    color: var(--gray-600);
}

.avatar-stack {
    display: flex;
    margin-bottom: 4px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    overflow: hidden;
    background: var(--purple-100);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.avatar:hover img {
    transform: scale(1.1);
}

.avatar:first-child {
    margin-left: 0;
    z-index: 3;
}

.avatar:nth-child(2) {
    z-index: 2;
}

.avatar:nth-child(3) {
    z-index: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card {
    padding: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.learn-more {
    display: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Updated Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
}

.footer-brand p {
    color: var(--gray-600);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
} 

/* Update the button color in nav - make it more specific */
.nav-links .button {
    color: white !important; /* Ensure text is white */
}

/* You might also want to add hover state to maintain white text */
.nav-links .button:hover {
    color: white !important;
}

/* Update the hero image styling */
.hero-image {
    max-height: 450px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--gray-200);
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .hero-image {
        max-height: 300px;
        margin: 20px 0;
        display: block;
    }
    
    .hero-image img {
        height: 300px;
    }
}

/* Error and loading states */
.error-message {
    color: #dc2626;
    background: #fee2e2;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: none;
}

.loading {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 16px;
} 

/* Auth pages styling */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
    display: flex;
    flex-direction: column;
    padding: 0;
}

.auth-page header {
    padding: 20px 0;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 460px;
    transition: transform 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-4px);
}

.auth-card h1 {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(to right, var(--purple-600), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.auth-subtitle {
    color: var(--gray-600);
    margin-bottom: 32px;
    text-align: center;
}

.auth-form .form-group {
    margin-bottom: 24px;
}

.auth-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
}

.auth-form input:focus {
    border-color: var(--purple-600);
    outline: none;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.input-hint {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 6px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    background: white;
}

.checkbox-label:hover {
    border-color: var(--purple-600);
    background: var(--purple-50);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--purple-600);
}

.checkbox-text {
    font-weight: 500;
}

.auth-form button {
    margin-top: 8px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--gray-600);
    font-size: 15px;
}

.auth-footer a {
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Error and loading states in auth forms */
.auth-form .error-message {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.auth-form .loading {
    text-align: center;
    color: var(--gray-600);
    margin: 12px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
    }
    
    .auth-card h1 {
        font-size: 28px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
} 