/* Intake Website Styles */

:root {
    --base: #f9f9f9;
    --white: #ffffff;
    --contrast: #111111;
    --gray: #666666;
    --gray-light: #999999;
    --border: #e5e5e5;

    /* App accent colors */
    --indigo: #5856D6;
    --indigo-light: #7674E0;
    --mint: #00C7BE;
    --orange: #FF9500;
    --pink: #FF2D55;
    --purple: #AF52DE;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Cardo', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--base);
    color: var(--contrast);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(249, 249, 249, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--contrast);
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    animation: fadeUp 0.6s ease;
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(88, 86, 214, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--contrast);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.2);
}

.btn-primary img {
    width: 20px;
    height: 20px;
}

/* Features Section */
.features {
    padding: 4rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.features-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-icon.mint { background: rgba(0, 199, 190, 0.15); }
.feature-icon.orange { background: rgba(255, 149, 0, 0.15); }
.feature-icon.pink { background: rgba(255, 45, 85, 0.15); }
.feature-icon.indigo { background: rgba(88, 86, 214, 0.15); }
.feature-icon.purple { background: rgba(175, 82, 222, 0.15); }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Highlight Section */
.highlight {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.05) 0%, rgba(0, 199, 190, 0.05) 100%);
}

.highlight-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.highlight h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.highlight p {
    color: var(--gray);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--contrast);
    font-weight: 600;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--indigo);
}

.footer-copyright {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Page Header (for secondary pages) */
.page-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Content Pages */
.page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--indigo);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: var(--indigo);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Support Page Specific */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-card h2 {
    color: var(--contrast);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: var(--indigo);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-email,
.btn-email:visited {
    color: #ffffff !important;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.3);
}

.support-topics h2 {
    color: var(--contrast);
    text-align: center;
    margin-bottom: 1.5rem;
}

.topics-list {
    list-style: none;
    padding: 0;
}

.topics-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.topics-list li:last-child {
    border-bottom: none;
}

.topic-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.topic-text {
    color: var(--gray);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .features {
        padding: 3rem 1.5rem 5rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
