@import url("../colors.3edbdcd941e2.css");

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fafafa;
        }

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

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e5e5;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        

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

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .login-btn {
            background: transparent;
            border: 1px solid #e5e5e5;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s;
        }

        .login-btn:hover {
            border: 1px solid transparent;
            background: var(--accent-gradient);
            color: white;
        }

        .signup-btn {
            background: var(--accent-gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .signup-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(230, 126, 92, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fafafa 0%, #fff7ed 100%);
            padding: 5rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-text .highlight {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
        }

        /* Keep H2 subtitle visually identical to previous paragraph */
        .hero-text h2.subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .cta-button {
            background: var(--accent-gradient);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 126, 92, 0.3);
        }

        .hero-images {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .preview-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .preview-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .preview-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 1rem;
            font-size: 0.9rem;
        }

        .platform-badges {
            text-align: center;
            margin-top: 3rem;
        }

        .platform-badges p {
            color: #666;
            margin-bottom: 1rem;
        }

        .platform-badges .badges {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
        }

        .platform-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .platform-badge:hover {
            opacity: 1;
        }

        .platform-badge-logo {
            height: 40px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .platform-badge:hover .platform-badge-logo {
            filter: grayscale(0%);
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            opacity: 0.6;
            flex-wrap: wrap;
        }

        .badges span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Core Principles Section */
        .principles {
            padding: 5rem 0;
            background: white;
        }

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

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-header .highlight {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }

        .principle-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .principle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: bold;
        }

        .card-icon.blue { background: #3b82f6; }
        .card-icon.purple { background: #8b5cf6; }
        .card-icon.green { background: #10b981; }
        .card-icon.orange { background: var(--accent-gradient); }

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

        .principle-card .subtitle {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .principle-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .checkmark {
            color: #10b981;
            font-weight: bold;
            margin-top: 2px;
        }

        .bottom-line {
            border-left: 4px solid;
            border-image: var(--accent-gradient) 1;
            background: var(--light-orange);
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }

        .bottom-line-label {
            font-size: 0.75rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .bottom-line p {
            font-style: italic;
            color: #666;
            margin: 0;
        }

        /* App Showcase Section */
        .showcase {
            padding: 5rem 0;
            background: #fafafa;
        }

        .showcase-features {
            display: grid;
            gap: 5rem;
        }

        .feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .feature:nth-child(even) .feature-content {
            order: 2;
        }

        .feature:nth-child(even) .feature-image {
            order: 1;
        }

        .feature-number {
            width: 48px;
            height: 48px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .feature-highlights {
            list-style: none;
        }

        .feature-highlights li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .arrow {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin-top: 2px;
        }

        .feature-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* SEO Keywords & Generators Section */
        .seo-keywords {
            padding: 5rem 0;
            background: white;
        }

        .seo-keywords .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .seo-keywords .feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .seo-keywords .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.12);
        }

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

        .seo-keywords .feature-card p {
            color: #666;
            margin: 0;
        }

        .seo-keywords .seo-text {
            max-width: 900px;
            margin: 2rem auto 0;
            color: #666;
            text-align: center;
        }

        .seo-keywords .seo-text h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Compact platform logos inside SEO section */
        .platform-badges.small { margin-top: 1rem; }
        .platform-badges.small .badges { gap: 1.5rem; }
        .platform-badges.small .platform-badge-logo {
            height: 28px;
            max-width: 100px;
        }
        .platform-badges .more-logos {
            font-weight: 600;
            color: #666;
        }

        /* Context compare layout */
        .dual-caption {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }

        .sub-block {
            background: #fff;
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .title-line {
            margin: 0.25rem 0 0;
            color: #333;
        }

        .title-line.strong {
            font-weight: 600;
        }

        .note {
            color: #666;
            margin-bottom: 0.25rem;
        }

        .diff-explainer, .extra-example {
            margin-top: 1.25rem;
        }

        @media (min-width: 768px) {
            .dual-caption {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 3rem;
        }

        .faq-category h4 {
            font-size: 1.25rem;
            font-weight: 600;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .faq-answer ul {
            margin-left: 1rem;
            margin-bottom: 1rem;
        }

        .faq-answer li {
            color: #666;
            margin-bottom: 0.5rem;
        }

        .faq-answer strong {
            color: #333;
        }

        .faq-answer a {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
            background: #fafafa;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .testimonial-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .testimonial-content {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-stats {
            font-size: 0.9rem;
            color: #666;
        }

        .testimonial-stats a {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .testimonial-stats a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .final-cta {
            padding: 5rem 0;
            background: var(--accent-gradient);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button.white {
            background: white;
            color: #E67E5C;
        }

        .cta-button.white:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3, .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-section h3 {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
        }

        .footer-section p {
            color: #9ca3af;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-actions {
                gap: 0.5rem;
            }

            .signup-btn, .login-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .principles-grid {
                grid-template-columns: 1fr;
            }

            .feature {
                grid-template-columns: 1fr;
            }

            .seo-keywords .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature:nth-child(even) .feature-content,
            .feature:nth-child(even) .feature-image {
                order: unset;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .final-cta h2 {
                font-size: 2rem;
            }

            .platform-badges .badges {
            gap: 2rem;
            }

            .platform-badge-logo {
                height: 30px;
                max-width: 100px;
            }
        }
