/* CrewChat.ai Website Styles - Based on App Design */

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0c0c0b;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Splash Screen Style */
.hero {
    min-height: 100vh;
    background: #0c0c0b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Brand Container - Matching SplashScreen.js */
.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

/* Logo Images */
.brand-logo {
    width: 100px;
    height: 35px;
    margin-right: 16px;
}

.footer-logo-img {
    width: 60px;
    height: 21px;
    margin-right: 12px;
}

/* Brand Text - Matching SplashScreen.js styles */
.brand-text-container {
    text-align: left;
}

.brand-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.brand-white {
    color: #fff;
}

.brand-grey {
    color: #8e8e93;
}

.brand-subtitle {
    font-size: 16px;
    color: #8e8e93;
    font-weight: 400;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
}

/* Hero Download Section */
.hero-download {
    margin-top: 40px;
}

.hero-download-text {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    cursor: pointer;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-text {
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFD700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.hero-description {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-primary {
    background: #007AFF;
    color: #fff;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.cta-primary:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Hero Demo Chat - Based on ConversationStyles.js */
.hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-chat {
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.demo-scroll-container {
    animation: demoScroll 15s linear infinite;
}

.demo-conversation {
    margin-bottom: 40px;
    padding-bottom: 20px;
}

@keyframes demoScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-80%);
    }
}

/* Chat Messages */
.chat-message {
    margin-bottom: 16px;
}

.chat-message.user-message {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-message.ai-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}

.message-bubble {
    padding: 12px;
    border-radius: 20px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}

.user-message .message-bubble {
    background: #007AFF;
    color: #fff;
    border-top-right-radius: 4px;
}

.ai-message .message-bubble {
    background: #2c2c2e;
    color: #fff;
    border-top-left-radius: 4px;
    font-size: 13px;
}

.persona-info {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    margin-left: 2px;
}

.persona-emoji {
    font-size: 14px;
    margin-right: 6px;
}

.persona-name {
    font-size: 12px;
    color: #bbb;
    font-weight: 600;
}

.reactions {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    margin-right: 8px;
}

.reaction {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 2px 6px;
    font-size: 14px;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Demo Section */
.demo-section {
    background: #0c0c0b;
    text-align: center;
}

.demo-description {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 40px;
}

.demo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.cta-buttons-demo {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #FFD700;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Features Section */
.features {
    background: #0c0c0b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    background: #0c0c0b;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.use-case-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.use-case-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-title {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.use-case-description {
    font-size: 13px;
    color: #ddd;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

/* Legacy styles for remaining emoji cards */
.use-case-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.use-case-text {
    font-size: 14px;
    color: #f6f6f6;
    font-weight: 500;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background: #0c0c0b;
}

.testimonials-scroll-container {
    height: 500px;
    overflow: hidden;
    margin-top: 48px;
    position: relative;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
}

.testimonials-scrolling {
    animation: testimonialsScroll 25s linear infinite;
}

@keyframes testimonialsScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-66.66%);
    }
}

.testimonial-card {
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    max-width: 100%;
}

.testimonials-scroll-container .testimonial-card:hover {
    background: rgba(25, 25, 25, 0.9);
}

.testimonial-text {
    font-size: 16px;
    color: #f6f6f6;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: #bbb;
    font-weight: 600;
    text-align: right;
    font-style: normal;
}

/* Download Section */
.download {
    background: #0c0c0b;
    text-align: center;
}

.download-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.download-subtitle {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.download-btn {
    display: inline-block;
    width: 160px;
    height: 54px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.download-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.download-btn:hover {
    transform: scale(1.05);
}

/* Coming Soon Styling */
.download-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.download-btn.coming-soon {
    cursor: default;
    opacity: 0.7;
}

.download-btn.coming-soon:hover {
    transform: none;
}

.download-btn.coming-soon img {
    filter: grayscale(30%);
}

.coming-soon-text {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.download-btn-fallback {
    background: #007AFF;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.download-note {
    font-size: 16px;
    color: #bbb;
    font-style: italic;
}

/* Science Section */
.science {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0c0c0b 0%, #1a1a1a 100%);
}

.science-intro {
    font-size: 20px;
    color: #ddd;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 30px;
    line-height: 1.8;
}

.science-description {
    font-size: 18px;
    color: #aaa;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.science-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.principle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.principle-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
}

.principle-researcher {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 16px;
}

.principle-description {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}

.science-conclusion {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.conclusion-text {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 12px;
}

.conclusion-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    line-height: 1.4;
}

/* Blog Styles */
.blog-header {
    background: #0c0c0b;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-img {
    width: 60px;
    height: 21px;
}

.header-brand-text {
    font-size: 20px;
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #FFD700;
}

.blog-hero {
    padding: 80px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, #0c0c0b 0%, #1a1a1a 100%);
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.blog-hero-subtitle {
    font-size: 20px;
    color: #aaa;
}

.blog-posts {
    padding: 60px 20px 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #888;
}

.blog-author {
    color: #FFD700;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #FFD700;
}

.blog-card-excerpt {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #fff;
}

/* Blog Article Styles */
.blog-article {
    padding: 60px 20px 100px;
}

.article-container {
    max-width: 800px;
}

.article-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 16px;
    color: #888;
}

.article-author {
    color: #FFD700;
    font-weight: 600;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.article-intro {
    font-size: 22px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #FFD700;
    border-radius: 4px;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content em {
    color: #888;
    font-style: italic;
}

.article-content strong {
    color: #fff;
    font-weight: 600;
}

.article-content a {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #FFF;
}

.article-content ul {
    margin: 16px 0 32px 24px;
    list-style: disc;
}

.article-content li {
    margin-bottom: 12px;
    color: #ddd;
}

.article-content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 60px 0;
}

.article-cta {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    text-align: center;
}

.article-cta h3 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 24px;
}

.article-cta .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #FFD700;
    color: #0c0c0b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.article-cta .cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.article-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.article-back a {
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.article-back a:hover {
    color: #fff;
}

/* Footer */
.footer {
    background: #0c0c0b;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: #8e8e93;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: #8e8e93;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        gap: 30px;
    }

    .brand-container {
        flex-direction: column;
        gap: 12px;
    }

    .brand-text {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-download-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons,
    .cta-buttons-demo {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .science-principles {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .conclusion-highlight {
        font-size: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

@media (max-width: 480px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }
}
/* Privacy Page Specific Styles */
.effective-date {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.effective-date p {
    margin: 0;
    color: #FFD700;
    font-weight: 600;
}

.effective-date strong {
    color: #fff;
}
