/* Hero Page Styles */

:root {
    --primary-color: #6366f1;
    --primary-light: #818cf8;
    --accent-color: #ec4899;
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --card-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --card-shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    background-color: #ffffff;
}

.hero-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.hero-nav {
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--primary-color);
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-ghost {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-ghost:hover {
    background-color: #f1f5f9;
}

/* Hero Main */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    height: 1rem;
    width: 1rem;
}

/* Heading */
.hero-heading {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* CTA Button */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.google-icon {
    height: 1.125rem;
    width: 1.125rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding-top: 4rem;
    max-width: 64rem;
    margin: 0 auto;
}

.feature-card {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s;
    text-align: left;
}

.feature-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 4.5rem;
    }
}
